-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathverify.json
More file actions
81 lines (80 loc) · 3 KB
/
Copy pathverify.json
File metadata and controls
81 lines (80 loc) · 3 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
{
// =============================================================
// ✅ verify.json — Step 4 Canonical Handshake (Mirror Required)
// -------------------------------------------------------------
// Purpose:
// - This is your node’s root verification declaration.
// - Must have a mirror version at /verify.html with identical JSON-LD.
// - `Organization` does NOT directly carry `license`. Use a
// separate CreativeWork.
//
// Mesh loop logic:
// - The `WebSite` node comes first — declaring membership in
// structuredweb.org/verify and structuredweb.org/mesh.
// - The `Organization` references the `WebSite` and the license.
//
// Licensing:
// - CC BY-NC-ND 4.0 + Structured Web Addendum.
//
// =============================================================
"@context": "https://schema.org",
"@graph": [
{
"@type": "WebSite",
"@id": "https://yourdomain.com/#website",
"url": "https://yourdomain.com",
"name": "Your Business Name",
"isPartOf": [
{
"@type": "WebSite",
"name": "StructuredWeb.org — Canonical Verification",
"url": "https://structuredweb.org/verify"
},
{
"@type": "WebSite",
"name": "StructuredWeb.org — Mesh Registry",
"url": "https://structuredweb.org/mesh"
}
]
},
{
"@type": "Organization",
"@id": "https://yourdomain.com/verify",
"name": "Your Business Name",
"url": "https://yourdomain.com",
"description": "Verified node in AI-Structured Web v1.7. Provides specialized services for [your audience].",
"founder": {
"@type": "Person",
"name": "Your Founder Name"
},
"identifier": "AI-Structured-Web-Node-v1.7",
"sameAs": [
"https://www.facebook.com/yourpage",
"https://yourparentcompany.com"
],
"mainEntityOfPage": {
"@id": "https://yourdomain.com/#website"
},
"subjectOf": {
"@id": "https://github.com/OsbornVentures/structured-web/blob/main/license.md"
},
"keywords": [
"your keyword one",
"your keyword two",
"structured web",
"zero-trust node",
"machine verifiable",
"schema-first",
"ai-ready",
"voice assistant safe"
]
},
{
"@type": "CreativeWork",
"@id": "https://github.com/OsbornVentures/structured-web/blob/main/license.md",
"name": "CC BY-NC-ND 4.0 + Structured Web Addendum",
"license": "https://creativecommons.org/licenses/by-nc-nd/4.0/",
"description": "Use of this verification node requires valid Structured Web participation. Monetized derivatives or repackaging are prohibited without explicit permission."
}
]
}