SlideShare a Scribd company logo
1 of 44
Download to read offline
Hook, Line, and Sinker:
Reeling in ArcGIS
Webhooks
Dan
Minney
FME Form
Tech Support Specialist
Sanae
Mendoza
FME Flow
Tech Support Specialist
Matt
Meeboer
FME Flow
Tech Support Specialist
Welcome to Livestorm.
A few ways to engage with us during the webinar:
Audio issues? Click this for 4 simple
troubleshooting steps.
Agenda
1 An Introduction to Safe & FME
2 An Introduction to Webhooks
3 Flash Demo
4 A demonstration of Survey123 Webhooks
5 A demonstration of Field Maps Webhooks
6 Resources & conclusion
7 Q&A
Agenda
1
Introduction to
Safe & FME
29+
27K+
128
190
20K+
years of solving data
challenges
FME Community
members
countries with
FME customers
organizations worldwide
global partners with
FME services
29+
29K+
128
140+
25K+
years of solving data
challenges
FME Community
members
countries with
FME customers
organizations worldwide
global partners with
FME services
FME Form
(was FME Desktop)
FME Flow
(was FME Server)
FME Flow Hosted
(was FME Cloud)
FME Enterprise Integration Platform
What Esri Web Apps are
you currently using?
2
Introduction to
Webhooks
Enrich, manipulate and
sync your ArcGIS Online
data in near real-time,
so you can do more
with your data.
Using webhooks, FME Flow
can run an automation within
moments of an event
occurring in ArcGIS Online.
Flash
Demo
Webhooks are a lightweight integration tool for systems and users. Allowing us to
exchange and transform data in real-time.
● Automate workflows between applications
● Respond to events in real-time
● Synchronize data across all systems
● Build simple, secure, easy to maintain integrations
● Enrich, transform, and deliver data
Why use Webhooks?
Webhooks vs. REST API
● Webhooks communicate over the web
via HTTP, like a REST API.
● Webhooks can watch for specific
events, then sent event information to a
URL.
● REST API requires us to poll an
application for new data.
● Webhooks deliver that data, as soon as
it is available.
A Webhook Trigger provides a URL
The URL is given to another application
Whenever an event happens in
that application….
….the automation receives a
message
Working with JSON
JSON (JavaScript Object Notation) is a
common format for exchanging information
between applications.
Example webhook message:
{
"surveyInfo": {
"formItemId": "752764383a374belksjdflj234e42216a”…
"eventType": "addData",
"feature": {
"attributes": {
"Name": "FME Lizard",
"Tree_Found": "norway_maple"..}}
FME Workbench
ArcGIS Online & ArcGIS Portal can send webhook message to FME Flow when
specified “events” occur. Webhooks can monitor for activity on items, users,
groups or administrative updates*.
Webhooks in ArcGIS
*Webhook configuration and availability may vary depending on the type of
event, application, or platform.
4
Survey123
Webhooks
One Image and Copy
ArcGIS Survey123 is a platform for creating,
sharing, and analyzing surveys. This allows for
the easy collection of data via the web or a
mobile device.
Survey123
Sync data
submitted through
the Survey123 App
to SQL Server &
Tableau
Goal Block Key
Survey123 Webhooks & FME Flow
Result
No direct way to
connect Survey123
to our data
destinations
Use FME Flow
automations to
retrieve a webhook
message and sync
it to SQL Server
and Tableau
An always
up-to-date dataset
& dashboard for all
the data submitted
through the
Survey123 App
Utilities Reporting App
FME Flow
Automation
Connecting Survey123 & FME
Server
● Survey123 webhook capabilities allow
FME Server to retrieve data every time
survey submitted
● In FME Server Automations, Webhook
Trigger can pick up webhook message
and expose for further transformations
and translations down line
● Fully automated approach
Processing the Webhook Response
● Extract attributes from the webhook response using the JSONFragmenter + more
● ImageFetcher can be used to retrieve the images - for storage we will need to encode this
as a blob
● Write our cleaned up data to two locations: SQL Server table & Google Sheets table
{"result":{"success":true,"globalId":"{A331B27D-2F2D-4019-8C06-CB80F8B8F737}","objectId":5,"uniqueId":5},"attachments":{"please_take_a_photo
_of_the_issu":[{"size":1143448,"keywords":"please_take_a_photo_of_the_issu","name":"cracked-concrete.jpeg","globalId":"{09843F7A-0123-47E0-8
656-12DD452CCA44}","id":5,"contentType":"image/jpeg","parentGlobalId":"{A331B27D-2F2D-4019-8C06-CB80F8B8F737}","url":"https://services1.
arcgis.com/nhT990CtK0zKxwbC/arcgis/rest/services/survey123_5818ab57e76940cf89d4bf7b133717cc_fieldworker/FeatureServer/0/5/attachments/
5"}]},"attributes":{"urgency_of_the_issue":"Low","please_describe_the_observed_is":"Sidewalk
cracked","globalid":"{A331B27D-2F2D-4019-8C06-CB80F8B8F737}","date_of_observation":1658257200000,"your_name":"Jason
David","objectid":5},"geometry":{"x":-123.07532363275533,"y":49.02262264094539,"spatialReference":{"wkid":4326},"geometryType":"esriGeometr
yPoint"},"layerInfo":{"relationships":[],"objectIdField":"objectid","name":"survey","globalIdField":"globalid","id":0,"type":"Feature Layer"}}
name urgency description date objectid globalid attachment Longitude Latitude
1 Jason David Low Sidewalk
cracked
2022-07-22 5 {A331B2... FFD8F… -123.075… 49.0226…
Webhook JSON Message [Before]
Post-FME Processing [After]
Tips & Tricks
● JSONFragmenter makes it easy to extract attributes and their values from webhook
responses
● Remember to use the ParameterFetcher to retrieve the webhook message
● Enable Authentication with an ArcGIS Online Web Connection in the ImageFetcher
Completing the Automation
● Create a Workspace Action that connects to the
Webhook Trigger
Integrating with BI tools
● We can extend our data to
other platforms as well such
as Tableau
● Data Destination: a format
that is digestible and instantly
accessible by our BI tool
○ Google Sheets
5
ArcGIS Field
Maps
From mobile apps and workstations, those in
the field can collect and edit features using
ArcGIS applications.
● Instant Apps
● Quick Capture
● Collector
● REST API
● Field Maps
Field Maps (and other
applications)
● Feature Services: host map features
online with symbology & relates
● End-users: view & interact from anywhere
● A Feature Service Webhook: send
event data for any change (e.g. inserts,
updates, deletions, attachments)
Event data is sent to FME Flow, instantly.
ArcGIS Feature Service
Webhooks
Tools for Feature Service Webhooks
The ArcGISOnlineWebhookDataGetter is
custom transformer designed to process
ArcGIS Webhook payloads.
Available for download on the FME Hub
Updated feature data is accessed
through a “changesURL” provided in the
webhook message.
Slide Title
Employees must
be notified as soon
as they’ve been
assigned new work
orders.
Goal Block Key
Instant Updates from the Field
Result
Work order
information is
collected, stored,
and assigned by
separate
employees and
applications.
Use Feature
Service webhooks
to integrate ArcGIS
data with the work
management
applications.
Work management
is more efficient
when employees
have access to the
most up-to-date
information.
Demo
Tips & Tricks
● The AGOL account must have permissions to Admin settings.
● Ensure the Feature Service settings allows for edits to be tracked.
● The ArcGISOnlineWebhookDataGetter extracts data from the Feature Service webhook
payload.
● We can listen for kinds of events on AGOL and Portal. (Click the platform for available
Webhook events.)
6
Resources &
Conclusion
Summary Points
FME Server Automations make it easy to process Survey123 and Feature Service webhook
responses in real-time. This allows you transform your ArcGIS data and extend it to other
platforms.
Feature updates are just one example of event types webhooks can watch for. ArcGIS Online and
ArcGIS Portal support webhooks for other kinds of events, like user or administrative activity.
1 2 3
Contact us
We would love to chat with
you about anything data
info@safe.com
Download FME
Download the latest version &
the webinar workspaces
Free Trial | Upgrade
Apply
The workspaces to your own
data to manage changes
Next Steps
● Video: Automate Integrations with Survey123
and ArcGIS Field Maps using FME and
Webhooks
● Automating Workflows from Survey123 to
ArcGIS using FME Server
● Push Data from an ArcGIS Online Feature
Service to an Application in Real-time
● Automating Workflows from ArcGIS Field Maps
● Connect to APIs and Webhooks in No Time
Resources
Free 90-min Workshop
on FME
safe.com/accelerator
Get our Ebook
Spatial Data for the
Enterprise
fme.ly/gzc
More Webinars
Upcoming & on-demand
webinars
safe.com/webinars
FME Accelerator
ClaimYour Community Badge
● Get community badges for watching
webinars!
● fme.ly/WebinarBadge
● Today’s code: FBACS
Join the Community today!
Our largest
FME user
conference
yet.
Sept 5-7 | 100+ sessions
co-hosted by Safe Software & con terra
7
Q&A
ThankYou
Please fill out our webinar survey

More Related Content

Similar to Hook, Line, and Sinker: Reeling in ArcGIS Webhooks

A Microsoft Silverlight User Group Starter Kit Made Available for Everyone to...
A Microsoft Silverlight User Group Starter Kit Made Available for Everyone to...A Microsoft Silverlight User Group Starter Kit Made Available for Everyone to...
A Microsoft Silverlight User Group Starter Kit Made Available for Everyone to...
DataLeader.io
 
N01 cloud computing_and_gae
N01 cloud computing_and_gaeN01 cloud computing_and_gae
N01 cloud computing_and_gae
Sun-Jin Jang
 
Desarrollo con AIR para Playbook
Desarrollo con AIR para PlaybookDesarrollo con AIR para Playbook
Desarrollo con AIR para Playbook
Software Guru
 
Fixing the mobile web - Internet World Romania
Fixing the mobile web - Internet World RomaniaFixing the mobile web - Internet World Romania
Fixing the mobile web - Internet World Romania
Christian Heilmann
 

Similar to Hook, Line, and Sinker: Reeling in ArcGIS Webhooks (20)

Firefox OS Presentation
Firefox OS PresentationFirefox OS Presentation
Firefox OS Presentation
 
Automated Application Integration with FME & Cityworks Webinar
Automated Application Integration with FME & Cityworks WebinarAutomated Application Integration with FME & Cityworks Webinar
Automated Application Integration with FME & Cityworks Webinar
 
mago3D Technical Workshop Material
mago3D Technical Workshop Material mago3D Technical Workshop Material
mago3D Technical Workshop Material
 
Technology Overview
Technology OverviewTechnology Overview
Technology Overview
 
Spirent: Datum User Experience Analytics System
Spirent: Datum User Experience Analytics SystemSpirent: Datum User Experience Analytics System
Spirent: Datum User Experience Analytics System
 
OneTeam Media Server
OneTeam Media ServerOneTeam Media Server
OneTeam Media Server
 
Web engineering
Web engineeringWeb engineering
Web engineering
 
A Microsoft Silverlight User Group Starter Kit Made Available for Everyone to...
A Microsoft Silverlight User Group Starter Kit Made Available for Everyone to...A Microsoft Silverlight User Group Starter Kit Made Available for Everyone to...
A Microsoft Silverlight User Group Starter Kit Made Available for Everyone to...
 
iguazio - nuclio Meetup Nov 30th
iguazio - nuclio Meetup Nov 30thiguazio - nuclio Meetup Nov 30th
iguazio - nuclio Meetup Nov 30th
 
ITPROCEED_WorkplaceMobility_Creating a seamless experience with ue v and wind...
ITPROCEED_WorkplaceMobility_Creating a seamless experience with ue v and wind...ITPROCEED_WorkplaceMobility_Creating a seamless experience with ue v and wind...
ITPROCEED_WorkplaceMobility_Creating a seamless experience with ue v and wind...
 
N01 cloud computing_and_gae
N01 cloud computing_and_gaeN01 cloud computing_and_gae
N01 cloud computing_and_gae
 
Essay On It 260 Quiz 1-5
Essay On It 260 Quiz 1-5Essay On It 260 Quiz 1-5
Essay On It 260 Quiz 1-5
 
Desarrollo con AIR para Playbook
Desarrollo con AIR para PlaybookDesarrollo con AIR para Playbook
Desarrollo con AIR para Playbook
 
SplunkLive! Frankfurt 2018 - Data Onboarding Overview
SplunkLive! Frankfurt 2018 - Data Onboarding OverviewSplunkLive! Frankfurt 2018 - Data Onboarding Overview
SplunkLive! Frankfurt 2018 - Data Onboarding Overview
 
Ensure Optimal Performance and Scalability: Implementing a Robust and Reliabl...
Ensure Optimal Performance and Scalability: Implementing a Robust and Reliabl...Ensure Optimal Performance and Scalability: Implementing a Robust and Reliabl...
Ensure Optimal Performance and Scalability: Implementing a Robust and Reliabl...
 
The current status of html5 technology and standard
The current status of html5 technology and standardThe current status of html5 technology and standard
The current status of html5 technology and standard
 
[Webinar] Camunda Optimize Release 3.0
[Webinar] Camunda Optimize Release 3.0[Webinar] Camunda Optimize Release 3.0
[Webinar] Camunda Optimize Release 3.0
 
Final paper
Final paperFinal paper
Final paper
 
Fixing the mobile web - Internet World Romania
Fixing the mobile web - Internet World RomaniaFixing the mobile web - Internet World Romania
Fixing the mobile web - Internet World Romania
 
Daniel Egan Msdn Tech Days Oc
Daniel Egan Msdn Tech Days OcDaniel Egan Msdn Tech Days Oc
Daniel Egan Msdn Tech Days Oc
 

More from Safe Software

Cloud Frontiers: A Deep Dive into Serverless Spatial Data and FME
Cloud Frontiers:  A Deep Dive into Serverless Spatial Data and FMECloud Frontiers:  A Deep Dive into Serverless Spatial Data and FME
Cloud Frontiers: A Deep Dive into Serverless Spatial Data and FME
Safe Software
 
Cloud Frontiers: A Deep Dive into Serverless Spatial Data and FME
Cloud Frontiers:  A Deep Dive into Serverless Spatial Data and FMECloud Frontiers:  A Deep Dive into Serverless Spatial Data and FME
Cloud Frontiers: A Deep Dive into Serverless Spatial Data and FME
Safe Software
 
Cloud Revolution: Exploring the New Wave of Serverless Spatial Data
Cloud Revolution: Exploring the New Wave of Serverless Spatial DataCloud Revolution: Exploring the New Wave of Serverless Spatial Data
Cloud Revolution: Exploring the New Wave of Serverless Spatial Data
Safe Software
 
Igniting Next Level Productivity with AI-Infused Data Integration Workflows
Igniting Next Level Productivity with AI-Infused Data Integration WorkflowsIgniting Next Level Productivity with AI-Infused Data Integration Workflows
Igniting Next Level Productivity with AI-Infused Data Integration Workflows
Safe Software
 
Introducing the New FME Community Webinar - Feb 21, 2024 (2).pdf
Introducing the New FME Community Webinar - Feb 21, 2024 (2).pdfIntroducing the New FME Community Webinar - Feb 21, 2024 (2).pdf
Introducing the New FME Community Webinar - Feb 21, 2024 (2).pdf
Safe Software
 
Cloud Revolution: Exploring the New Wave of Serverless Spatial Data
Cloud Revolution: Exploring the New Wave of Serverless Spatial DataCloud Revolution: Exploring the New Wave of Serverless Spatial Data
Cloud Revolution: Exploring the New Wave of Serverless Spatial Data
Safe Software
 
Taking Off with FME: Elevating Airport Operations to New Heights
Taking Off with FME: Elevating Airport Operations to New HeightsTaking Off with FME: Elevating Airport Operations to New Heights
Taking Off with FME: Elevating Airport Operations to New Heights
Safe Software
 
Initiating and Advancing Your Strategic GIS Governance Strategy
Initiating and Advancing Your Strategic GIS Governance StrategyInitiating and Advancing Your Strategic GIS Governance Strategy
Initiating and Advancing Your Strategic GIS Governance Strategy
Safe Software
 

More from Safe Software (20)

The Zero-ETL Approach: Enhancing Data Agility and Insight
The Zero-ETL Approach: Enhancing Data Agility and InsightThe Zero-ETL Approach: Enhancing Data Agility and Insight
The Zero-ETL Approach: Enhancing Data Agility and Insight
 
Cloud Frontiers: A Deep Dive into Serverless Spatial Data and FME
Cloud Frontiers:  A Deep Dive into Serverless Spatial Data and FMECloud Frontiers:  A Deep Dive into Serverless Spatial Data and FME
Cloud Frontiers: A Deep Dive into Serverless Spatial Data and FME
 
Cloud Frontiers: A Deep Dive into Serverless Spatial Data and FME
Cloud Frontiers:  A Deep Dive into Serverless Spatial Data and FMECloud Frontiers:  A Deep Dive into Serverless Spatial Data and FME
Cloud Frontiers: A Deep Dive into Serverless Spatial Data and FME
 
From Event to Action: Accelerate Your Decision Making with Real-Time Automation
From Event to Action: Accelerate Your Decision Making with Real-Time AutomationFrom Event to Action: Accelerate Your Decision Making with Real-Time Automation
From Event to Action: Accelerate Your Decision Making with Real-Time Automation
 
From Event to Action: Accelerate Your Decision Making with Real-Time Automation
From Event to Action:  Accelerate Your Decision Making with Real-Time AutomationFrom Event to Action:  Accelerate Your Decision Making with Real-Time Automation
From Event to Action: Accelerate Your Decision Making with Real-Time Automation
 
Beyond Boundaries: Leveraging No-Code Solutions for Industry Innovation
Beyond Boundaries: Leveraging No-Code Solutions for Industry InnovationBeyond Boundaries: Leveraging No-Code Solutions for Industry Innovation
Beyond Boundaries: Leveraging No-Code Solutions for Industry Innovation
 
Powering Real-Time Decisions with Continuous Data Streams
Powering Real-Time Decisions with Continuous Data StreamsPowering Real-Time Decisions with Continuous Data Streams
Powering Real-Time Decisions with Continuous Data Streams
 
The Critical Role of Spatial Data in Today's Data Ecosystem
The Critical Role of Spatial Data in Today's Data EcosystemThe Critical Role of Spatial Data in Today's Data Ecosystem
The Critical Role of Spatial Data in Today's Data Ecosystem
 
Cloud Revolution: Exploring the New Wave of Serverless Spatial Data
Cloud Revolution: Exploring the New Wave of Serverless Spatial DataCloud Revolution: Exploring the New Wave of Serverless Spatial Data
Cloud Revolution: Exploring the New Wave of Serverless Spatial Data
 
Igniting Next Level Productivity with AI-Infused Data Integration Workflows
Igniting Next Level Productivity with AI-Infused Data Integration WorkflowsIgniting Next Level Productivity with AI-Infused Data Integration Workflows
Igniting Next Level Productivity with AI-Infused Data Integration Workflows
 
The Zero-ETL Approach: Enhancing Data Agility and Insight
The Zero-ETL Approach: Enhancing Data Agility and InsightThe Zero-ETL Approach: Enhancing Data Agility and Insight
The Zero-ETL Approach: Enhancing Data Agility and Insight
 
Mastering MicroStation DGN: How to Integrate CAD and GIS
Mastering MicroStation DGN: How to Integrate CAD and GISMastering MicroStation DGN: How to Integrate CAD and GIS
Mastering MicroStation DGN: How to Integrate CAD and GIS
 
Geospatial Synergy: Amplifying Efficiency with FME & Esri
Geospatial Synergy: Amplifying Efficiency with FME & EsriGeospatial Synergy: Amplifying Efficiency with FME & Esri
Geospatial Synergy: Amplifying Efficiency with FME & Esri
 
Introducing the New FME Community Webinar - Feb 21, 2024 (2).pdf
Introducing the New FME Community Webinar - Feb 21, 2024 (2).pdfIntroducing the New FME Community Webinar - Feb 21, 2024 (2).pdf
Introducing the New FME Community Webinar - Feb 21, 2024 (2).pdf
 
Breaking Barriers & Leveraging the Latest Developments in AI Technology
Breaking Barriers & Leveraging the Latest Developments in AI TechnologyBreaking Barriers & Leveraging the Latest Developments in AI Technology
Breaking Barriers & Leveraging the Latest Developments in AI Technology
 
Best Practices to Navigating Data and Application Integration for the Enterpr...
Best Practices to Navigating Data and Application Integration for the Enterpr...Best Practices to Navigating Data and Application Integration for the Enterpr...
Best Practices to Navigating Data and Application Integration for the Enterpr...
 
Cloud Revolution: Exploring the New Wave of Serverless Spatial Data
Cloud Revolution: Exploring the New Wave of Serverless Spatial DataCloud Revolution: Exploring the New Wave of Serverless Spatial Data
Cloud Revolution: Exploring the New Wave of Serverless Spatial Data
 
New Year's Fireside Chat with Safe Software’s Founders
New Year's Fireside Chat with Safe Software’s FoundersNew Year's Fireside Chat with Safe Software’s Founders
New Year's Fireside Chat with Safe Software’s Founders
 
Taking Off with FME: Elevating Airport Operations to New Heights
Taking Off with FME: Elevating Airport Operations to New HeightsTaking Off with FME: Elevating Airport Operations to New Heights
Taking Off with FME: Elevating Airport Operations to New Heights
 
Initiating and Advancing Your Strategic GIS Governance Strategy
Initiating and Advancing Your Strategic GIS Governance StrategyInitiating and Advancing Your Strategic GIS Governance Strategy
Initiating and Advancing Your Strategic GIS Governance Strategy
 

Recently uploaded

Easier, Faster, and More Powerful – Alles Neu macht der Mai -Wir durchleuchte...
Easier, Faster, and More Powerful – Alles Neu macht der Mai -Wir durchleuchte...Easier, Faster, and More Powerful – Alles Neu macht der Mai -Wir durchleuchte...
Easier, Faster, and More Powerful – Alles Neu macht der Mai -Wir durchleuchte...
panagenda
 
Tales from a Passkey Provider Progress from Awareness to Implementation.pptx
Tales from a Passkey Provider  Progress from Awareness to Implementation.pptxTales from a Passkey Provider  Progress from Awareness to Implementation.pptx
Tales from a Passkey Provider Progress from Awareness to Implementation.pptx
FIDO Alliance
 

Recently uploaded (20)

2024 May Patch Tuesday
2024 May Patch Tuesday2024 May Patch Tuesday
2024 May Patch Tuesday
 
How to Check GPS Location with a Live Tracker in Pakistan
How to Check GPS Location with a Live Tracker in PakistanHow to Check GPS Location with a Live Tracker in Pakistan
How to Check GPS Location with a Live Tracker in Pakistan
 
ChatGPT and Beyond - Elevating DevOps Productivity
ChatGPT and Beyond - Elevating DevOps ProductivityChatGPT and Beyond - Elevating DevOps Productivity
ChatGPT and Beyond - Elevating DevOps Productivity
 
UiPath manufacturing technology benefits and AI overview
UiPath manufacturing technology benefits and AI overviewUiPath manufacturing technology benefits and AI overview
UiPath manufacturing technology benefits and AI overview
 
Google I/O Extended 2024 Warsaw
Google I/O Extended 2024 WarsawGoogle I/O Extended 2024 Warsaw
Google I/O Extended 2024 Warsaw
 
Design and Development of a Provenance Capture Platform for Data Science
Design and Development of a Provenance Capture Platform for Data ScienceDesign and Development of a Provenance Capture Platform for Data Science
Design and Development of a Provenance Capture Platform for Data Science
 
Easier, Faster, and More Powerful – Alles Neu macht der Mai -Wir durchleuchte...
Easier, Faster, and More Powerful – Alles Neu macht der Mai -Wir durchleuchte...Easier, Faster, and More Powerful – Alles Neu macht der Mai -Wir durchleuchte...
Easier, Faster, and More Powerful – Alles Neu macht der Mai -Wir durchleuchte...
 
WebRTC and SIP not just audio and video @ OpenSIPS 2024
WebRTC and SIP not just audio and video @ OpenSIPS 2024WebRTC and SIP not just audio and video @ OpenSIPS 2024
WebRTC and SIP not just audio and video @ OpenSIPS 2024
 
Vector Search @ sw2con for slideshare.pptx
Vector Search @ sw2con for slideshare.pptxVector Search @ sw2con for slideshare.pptx
Vector Search @ sw2con for slideshare.pptx
 
Tales from a Passkey Provider Progress from Awareness to Implementation.pptx
Tales from a Passkey Provider  Progress from Awareness to Implementation.pptxTales from a Passkey Provider  Progress from Awareness to Implementation.pptx
Tales from a Passkey Provider Progress from Awareness to Implementation.pptx
 
Six Myths about Ontologies: The Basics of Formal Ontology
Six Myths about Ontologies: The Basics of Formal OntologySix Myths about Ontologies: The Basics of Formal Ontology
Six Myths about Ontologies: The Basics of Formal Ontology
 
How to Check CNIC Information Online with Pakdata cf
How to Check CNIC Information Online with Pakdata cfHow to Check CNIC Information Online with Pakdata cf
How to Check CNIC Information Online with Pakdata cf
 
Frisco Automating Purchase Orders with MuleSoft IDP- May 10th, 2024.pptx.pdf
Frisco Automating Purchase Orders with MuleSoft IDP- May 10th, 2024.pptx.pdfFrisco Automating Purchase Orders with MuleSoft IDP- May 10th, 2024.pptx.pdf
Frisco Automating Purchase Orders with MuleSoft IDP- May 10th, 2024.pptx.pdf
 
Introduction to use of FHIR Documents in ABDM
Introduction to use of FHIR Documents in ABDMIntroduction to use of FHIR Documents in ABDM
Introduction to use of FHIR Documents in ABDM
 
WebAssembly is Key to Better LLM Performance
WebAssembly is Key to Better LLM PerformanceWebAssembly is Key to Better LLM Performance
WebAssembly is Key to Better LLM Performance
 
Working together SRE & Platform Engineering
Working together SRE & Platform EngineeringWorking together SRE & Platform Engineering
Working together SRE & Platform Engineering
 
AI mind or machine power point presentation
AI mind or machine power point presentationAI mind or machine power point presentation
AI mind or machine power point presentation
 
JavaScript Usage Statistics 2024 - The Ultimate Guide
JavaScript Usage Statistics 2024 - The Ultimate GuideJavaScript Usage Statistics 2024 - The Ultimate Guide
JavaScript Usage Statistics 2024 - The Ultimate Guide
 
Human Expert Website Manual WCAG 2.0 2.1 2.2 Audit - Digital Accessibility Au...
Human Expert Website Manual WCAG 2.0 2.1 2.2 Audit - Digital Accessibility Au...Human Expert Website Manual WCAG 2.0 2.1 2.2 Audit - Digital Accessibility Au...
Human Expert Website Manual WCAG 2.0 2.1 2.2 Audit - Digital Accessibility Au...
 
Cyber Insurance - RalphGilot - Embry-Riddle Aeronautical University.pptx
Cyber Insurance - RalphGilot - Embry-Riddle Aeronautical University.pptxCyber Insurance - RalphGilot - Embry-Riddle Aeronautical University.pptx
Cyber Insurance - RalphGilot - Embry-Riddle Aeronautical University.pptx
 

Hook, Line, and Sinker: Reeling in ArcGIS Webhooks