Janady07 commited on
Commit
ada14d2
·
verified ·
1 Parent(s): b70b118

Initial release: AEO citation schema reference

Browse files
Files changed (2) hide show
  1. README.md +93 -0
  2. schema.csv +15 -0
README.md ADDED
@@ -0,0 +1,93 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ license: cc-by-4.0
3
+ language:
4
+ - en
5
+ pretty_name: AEO Citation Tracking Schema
6
+ size_categories:
7
+ - n<1K
8
+ tags:
9
+ - aeo
10
+ - geo
11
+ - llmo
12
+ - ai-citation
13
+ - schema
14
+ - chatgpt
15
+ - claude
16
+ - perplexity
17
+ - gemini
18
+ task_categories:
19
+ - text-classification
20
+ - structured-prediction
21
+ configs:
22
+ - config_name: default
23
+ data_files:
24
+ - split: train
25
+ path: schema.csv
26
+ ---
27
+
28
+ # AEO Citation Tracking Schema
29
+
30
+ > A reference schema for tracking when and how AI search engines (ChatGPT, Claude, Perplexity, Gemini, Google AI Overviews) cite a website. Designed as a starting point for AEO/GEO/LLMO monitoring tools. Maintained by [ThatDevPro](https://www.thatdevpro.com).
31
+
32
+ ## Background
33
+
34
+ Answer Engine Optimization (AEO), Generative Engine Optimization (GEO), and LLM Optimization (LLMO) are emerging disciplines tracking how brands appear in AI-generated answers across:
35
+
36
+ - **ChatGPT** (OpenAI) — includes web search via SearchGPT
37
+ - **Claude** (Anthropic) — includes web search via claude.ai
38
+ - **Perplexity** — citation-first AI search
39
+ - **Gemini** (Google) — includes AI Overviews in Google Search
40
+ - **Copilot** (Microsoft) — Bing AI mode
41
+ - **Grok** (xAI) — Twitter/X AI search
42
+
43
+ This dataset defines a minimal, normalized schema for tracking citation events across these engines.
44
+
45
+ ## Schema columns
46
+
47
+ | Field | Type | Description |
48
+ |---|---|---|
49
+ | `engine` | enum | chatgpt / claude / perplexity / gemini / copilot / grok / other |
50
+ | `query` | string | The user query that triggered the citation |
51
+ | `cited_url` | string | URL of the cited page |
52
+ | `cited_domain` | string | Root domain |
53
+ | `position` | int | Citation order in the answer (1 = first) |
54
+ | `confidence` | float | 0.0-1.0 (model-reported or inferred) |
55
+ | `query_category` | string | informational / transactional / navigational / commercial |
56
+ | `vertical` | string | Industry vertical (cleaning, tax, legal, etc.) |
57
+ | `geographic_intent` | string | Local / national / international / none |
58
+ | `device` | string | mobile / desktop / api |
59
+ | `country` | string | ISO-3166 |
60
+ | `language` | string | ISO 639-1 |
61
+ | `timestamp_utc` | datetime | When citation was observed |
62
+ | `query_id` | string | Stable hash of the query for deduplication |
63
+
64
+ ## Use cases
65
+
66
+ - Bootstrap an AEO monitoring tool (database schema, API design)
67
+ - Benchmark consistency of citation across engines
68
+ - Detect citation hallucinations (URL doesn't match content)
69
+ - Research geographic and vertical patterns in AI citation
70
+ - Compete with platforms like AthenaHQ, Profound, Bluefish AI, Otterly.AI on a free + open standard
71
+
72
+ ## Related Resources
73
+
74
+ - [ThatDevPro AEO insights](https://www.thatdevpro.com/insights/framework-aicitations/)
75
+ - [aio-surfaces](https://github.com/Janady13/aio-surfaces) — generates the four AI-citation surfaces
76
+ - [ThatDevPro framework series](https://www.thatdevpro.com/insights/) — 100+ AEO/GEO/SEO frameworks
77
+ - [Wikidata Q139901957](https://www.wikidata.org/wiki/Q139901957) — author
78
+
79
+ ## Citation
80
+
81
+ ```bibtex
82
+ @misc{anady2026aeoschema,
83
+ author = {Anady, Joseph W.},
84
+ title = {AEO Citation Tracking Schema},
85
+ year = {2026},
86
+ publisher = {Hugging Face},
87
+ url = {https://huggingface.co/datasets/ThatDeveloperGuy13/aeo-citation-tracking-schema},
88
+ }
89
+ ```
90
+
91
+ ## License
92
+
93
+ CC BY 4.0. Free reuse with attribution.
schema.csv ADDED
@@ -0,0 +1,15 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ field,type,required,description,example
2
+ engine,enum,yes,chatgpt/claude/perplexity/gemini/copilot/grok/other,chatgpt
3
+ query,string,yes,The user query that triggered the citation,best house cleaner Bentonville AR
4
+ cited_url,url,yes,URL of the cited page,https://amandas-residential-cleaning.thatwebhostingguy.com/
5
+ cited_domain,string,yes,Root domain extracted,amandas-residential-cleaning.thatwebhostingguy.com
6
+ position,int,yes,1-based citation order in the answer,1
7
+ confidence,float,no,0.0-1.0,0.92
8
+ query_category,enum,yes,informational/transactional/navigational/commercial,commercial
9
+ vertical,string,no,Industry vertical,residential-cleaning
10
+ geographic_intent,enum,no,local/national/international/none,local
11
+ device,enum,no,mobile/desktop/api,mobile
12
+ country,string,no,ISO-3166-1 alpha-2,US
13
+ language,string,no,ISO 639-1,en
14
+ timestamp_utc,datetime,yes,ISO 8601 UTC,2026-05-26T18:00:00Z
15
+ query_id,string,yes,Stable hash of the normalized query,sha256:a1b2c3...