-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
142 lines (133 loc) · 4.32 KB
/
index.html
File metadata and controls
142 lines (133 loc) · 4.32 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
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Attestto — Identity Specifications</title>
<style>
:root {
--fg: #1a1a2e;
--bg: #fdfdfe;
--accent: #4f46e5;
--muted: #64748b;
--border: #e2e8f0;
--code-bg: #f1f5f9;
--max-w: 48rem;
}
* { margin: 0; padding: 0; box-sizing: border-box; }
body {
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
color: var(--fg);
background: var(--bg);
line-height: 1.7;
padding: 3rem 1.5rem;
}
.container { max-width: var(--max-w); margin: 0 auto; }
h1 { font-size: 2rem; margin-bottom: 0.25rem; }
.subtitle { color: var(--muted); font-size: 1rem; margin-bottom: 2.5rem; }
.card {
border: 1px solid var(--border);
border-radius: 8px;
padding: 1.25rem 1.5rem;
margin-bottom: 1rem;
transition: border-color 0.15s, box-shadow 0.15s;
}
.card:hover {
border-color: var(--accent);
box-shadow: 0 2px 8px rgba(79, 70, 229, 0.08);
}
.card h3 { font-size: 1.1rem; margin-bottom: 0.25rem; }
.card p { color: var(--muted); font-size: 0.9rem; margin: 0; }
.card a {
color: var(--fg);
text-decoration: none;
display: block;
}
.card a:hover { color: var(--accent); }
code {
font-family: 'SF Mono', 'Fira Code', 'Consolas', monospace;
background: var(--code-bg);
padding: 0.15em 0.4em;
border-radius: 4px;
font-size: 0.85em;
}
.badge {
display: inline-block;
background: #fef3c7;
color: #92400e;
font-size: 0.7rem;
font-weight: 600;
padding: 0.15em 0.5em;
border-radius: 4px;
text-transform: uppercase;
letter-spacing: 0.03em;
margin-left: 0.5rem;
vertical-align: middle;
}
.section-label {
font-size: 0.75rem;
font-weight: 600;
text-transform: uppercase;
letter-spacing: 0.05em;
color: var(--muted);
margin-bottom: 0.75rem;
margin-top: 2rem;
}
footer {
margin-top: 3rem;
padding-top: 1.5rem;
border-top: 1px solid var(--border);
color: var(--muted);
font-size: 0.8rem;
}
</style>
</head>
<body>
<div class="container">
<a style="display:inline-block;margin-bottom:1.5rem;font-size:0.85rem;color:var(--accent);text-decoration:none;" href="https://attestto.com">← attestto.com</a>
<h1>Attestto Specifications</h1>
<p class="subtitle">Identity standards and open specifications by the Attestto Identity Standards Group</p>
<div class="section-label">DID Methods</div>
<div class="card">
<a href="./did-sns/">
<h3><code>did:sns</code> — Full Specification <span class="badge">Provisional</span></h3>
<p>Complete DID Method Specification — Living DID architecture, CRUD operations, DID lifecycle, stateless resolution (no DID Log), post-quantum readiness, SAS integration</p>
</a>
</div>
<div class="section-label">Resources</div>
<div class="card">
<a href="./did-sns/report/">
<h3>Implementation Report</h3>
<p>186 tests across 4 services — W3C DID Core and DID Resolution conformance</p>
</a>
</div>
<div class="card">
<a href="./did-sns/charter/">
<h3>Community Charter</h3>
<p>Governance, versioning, contribution guide, and interoperability roadmap</p>
</a>
</div>
<div class="card">
<a href="./did-sns/ip-affirmation/">
<h3>IP Affirmation</h3>
<p>Intellectual property statement — royalty-free commitment, no known patent claims</p>
</a>
</div>
<div class="card">
<a href="./v1/sns.jsonld">
<h3>JSON-LD Context</h3>
<p><code>spec.attestto.com/v1/sns.jsonld</code> — persistent namespace for <code>did:sns</code> documents</p>
</a>
</div>
<div class="card">
<a href="./sns.json">
<h3>W3C Registry Entry</h3>
<p><code>sns.json</code> — method metadata for the W3C DID Spec Registries</p>
</a>
</div>
<footer>
<p>© 2026 Attestto Identity Standards Group · <a href="mailto:[email protected]" style="color: var(--accent);">[email protected]</a></p>
</footer>
</div>
</body>
</html>