w3c_api 0.1.2 → 0.1.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/.rubocop_todo.yml +16 -9
- data/README.adoc +189 -244
- data/lib/w3c_api/cli.rb +4 -0
- data/lib/w3c_api/client.rb +23 -4
- data/lib/w3c_api/commands/specification_version.rb +38 -0
- data/lib/w3c_api/hal.rb +203 -152
- data/lib/w3c_api/models/affiliation.rb +12 -0
- data/lib/w3c_api/models/affiliation_index.rb +1 -0
- data/lib/w3c_api/models/deliverer_index.rb +12 -0
- data/lib/w3c_api/models/editor_index.rb +12 -0
- data/lib/w3c_api/models/group.rb +25 -1
- data/lib/w3c_api/models/groups.rb +32 -0
- data/lib/w3c_api/models/serie.rb +12 -0
- data/lib/w3c_api/models/spec_version.rb +4 -4
- data/lib/w3c_api/models/spec_version_index.rb +0 -3
- data/lib/w3c_api/models/spec_version_predecessor_index.rb +11 -0
- data/lib/w3c_api/models/spec_version_successor_index.rb +11 -0
- data/lib/w3c_api/models/specification.rb +7 -0
- data/lib/w3c_api/models/user.rb +12 -0
- data/lib/w3c_api/models.rb +41 -33
- data/lib/w3c_api/version.rb +1 -1
- metadata +10 -5
- data/lib/w3c_api/models/group_link_set.rb +0 -24
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: a73c07f5e19155dfe22a5e7c772a6890867df6db2019c049fd17ce1c90dd6680
|
4
|
+
data.tar.gz: 58b57fedefa49eeb9a89f424fd966bc90e37fe6c8f5165a821de496e1a85109d
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 6e96e2292b9465203056c58e82c1d18b9b7afda181f62889a82d0a0cd2f4c46a1a713288308cf7d6fe131585c86613097d9d028066d043fe8ae1f69016a1ef58
|
7
|
+
data.tar.gz: 9fbd52b672aa7b2d4dd2d97e084549b4f098e7ba91cf7252f41128f8883c574f59288c738b9c9c36e1cc60369a28168088abefcc16f86d605720694f045ab93d
|
data/.rubocop_todo.yml
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
# This configuration was generated by
|
2
2
|
# `rubocop --auto-gen-config`
|
3
|
-
# on 2025-07-
|
3
|
+
# on 2025-07-05 00:01:41 UTC using RuboCop version 1.77.0.
|
4
4
|
# The point is for the user to remove these configuration records
|
5
5
|
# one by one as the offenses are removed from the code base.
|
6
6
|
# Note that changes in the inspected code, or installation of new
|
@@ -9,30 +9,37 @@
|
|
9
9
|
# Offense count: 2
|
10
10
|
# Configuration parameters: AllowedMethods, AllowedPatterns, CountRepeatedAttributes.
|
11
11
|
Metrics/AbcSize:
|
12
|
-
Max:
|
12
|
+
Max: 47
|
13
13
|
|
14
|
-
# Offense count:
|
14
|
+
# Offense count: 48
|
15
15
|
# Configuration parameters: CountComments, CountAsOne, AllowedMethods, AllowedPatterns.
|
16
16
|
# AllowedMethods: refine
|
17
17
|
Metrics/BlockLength:
|
18
|
-
Max:
|
18
|
+
Max: 370
|
19
19
|
|
20
|
-
# Offense count:
|
20
|
+
# Offense count: 2
|
21
21
|
# Configuration parameters: CountComments, CountAsOne.
|
22
22
|
Metrics/ClassLength:
|
23
|
-
Max:
|
23
|
+
Max: 274
|
24
24
|
|
25
25
|
# Offense count: 2
|
26
26
|
# Configuration parameters: CountComments, CountAsOne, AllowedMethods, AllowedPatterns.
|
27
27
|
Metrics/MethodLength:
|
28
|
-
Max:
|
28
|
+
Max: 218
|
29
29
|
|
30
|
-
# Offense count:
|
30
|
+
# Offense count: 32
|
31
31
|
# Configuration parameters: AllowedConstants.
|
32
32
|
Style/Documentation:
|
33
33
|
Enabled: false
|
34
34
|
|
35
|
-
# Offense count:
|
35
|
+
# Offense count: 1
|
36
|
+
# This cop supports unsafe autocorrection (--autocorrect-all).
|
37
|
+
# Configuration parameters: Mode.
|
38
|
+
Style/StringConcatenation:
|
39
|
+
Exclude:
|
40
|
+
- 'test_editor_deliverer_functionality.rb'
|
41
|
+
|
42
|
+
# Offense count: 10
|
36
43
|
# This cop supports safe autocorrection (--autocorrect).
|
37
44
|
# Configuration parameters: AllowHeredoc, AllowURI, AllowQualifiedName, URISchemes, IgnoreCopDirectives, AllowedPatterns, SplitStrings.
|
38
45
|
# URISchemes: http, https
|
data/README.adoc
CHANGED
@@ -11,27 +11,27 @@ A Ruby client implementation for the W3C web API with a CLI interface.
|
|
11
11
|
This gem provides:
|
12
12
|
|
13
13
|
* A complete client for the W3C API (oft-used endpoints implemented)
|
14
|
+
|
14
15
|
* Data models created with
|
15
16
|
https://github.com/lutaml/lutaml-hal[lutaml-hal] and
|
16
17
|
https://github.com/lutaml/lutaml-model[lutaml-model]
|
17
18
|
for all W3C API resources
|
18
|
-
|
19
|
-
traversal
|
19
|
+
|
20
|
+
* HAL (Hypertext Application Language) implementation for recursive resource traversal
|
21
|
+
|
20
22
|
* A command-line interface using Thor following GitHub CLI patterns
|
21
23
|
|
22
24
|
The endpoint supported is at https://api.w3.org.
|
23
25
|
|
24
26
|
This gem is developed against the W3C API documented at https://api.w3.org/doc.
|
25
27
|
|
28
|
+
|
26
29
|
== Illustrative example usage
|
27
30
|
|
28
31
|
This is an example demonstrating the power of this library as inherited
|
29
32
|
from `lutaml-hal`, showing multiple levels of automatic link resolution.
|
30
33
|
|
31
|
-
[example]
|
32
|
-
====
|
33
34
|
.Calling the Ruby API with multiple levels of link resolution
|
34
|
-
|
35
35
|
[source,ruby]
|
36
36
|
----
|
37
37
|
> require 'w3c_api'
|
@@ -100,7 +100,7 @@ from `lutaml-hal`, showing multiple levels of automatic link resolution.
|
|
100
100
|
# @pages=1,
|
101
101
|
# @total=1>
|
102
102
|
----
|
103
|
-
|
103
|
+
|
104
104
|
|
105
105
|
== Ruby API
|
106
106
|
|
@@ -125,11 +125,40 @@ specs_by_status = client.specifications_by_status('Recommendation')
|
|
125
125
|
predecessors = client.specification_version_predecessors('webrtc', '20241008')
|
126
126
|
successors = client.specification_version_successors('webrtc', '20241008')
|
127
127
|
|
128
|
+
# Navigate through version history with chained realization
|
129
|
+
version = client.specification_version('html5', '20140429')
|
130
|
+
|
131
|
+
# Get all predecessors and navigate through them
|
132
|
+
predecessors = version.links.predecessor_versions.realize
|
133
|
+
predecessors.links.predecessor_versions.each do |pred_link|
|
134
|
+
predecessor = pred_link.realize
|
135
|
+
puts "#{predecessor.title} - #{predecessor.date}"
|
136
|
+
|
137
|
+
# Each predecessor can have its own predecessors
|
138
|
+
if predecessor.links.predecessor_versions
|
139
|
+
pred_predecessors = predecessor.links.predecessor_versions.realize
|
140
|
+
# Continue navigation...
|
141
|
+
end
|
142
|
+
end
|
143
|
+
|
144
|
+
# Get all successors and navigate through them
|
145
|
+
successors = version.links.successor_versions.realize
|
146
|
+
successors.links.successor_versions.each do |succ_link|
|
147
|
+
successor = succ_link.realize
|
148
|
+
puts "#{successor.title} - #{successor.date}"
|
149
|
+
|
150
|
+
# Each successor can have its own successors
|
151
|
+
if successor.links.successor_versions
|
152
|
+
succ_successors = successor.links.successor_versions.realize
|
153
|
+
# Continue navigation...
|
154
|
+
end
|
155
|
+
end
|
156
|
+
|
128
157
|
# All client methods support comprehensive options including:
|
129
158
|
|
130
159
|
# Pagination options
|
131
|
-
specifications = client.specifications(page: 2,
|
132
|
-
groups = client.groups(page: 1,
|
160
|
+
specifications = client.specifications(page: 2, per_page: 50)
|
161
|
+
groups = client.groups(page: 1, per_page: 10, limit: 25, offset: 100)
|
133
162
|
|
134
163
|
# HTTP client options
|
135
164
|
user = client.user('hash', timeout: 30, headers: { 'User-Agent' => 'MyApp/1.0' })
|
@@ -202,155 +231,6 @@ ecosystems = client.ecosystems
|
|
202
231
|
ecosystem = client.ecosystem('data')
|
203
232
|
----
|
204
233
|
|
205
|
-
=== Pagination
|
206
|
-
|
207
|
-
All index endpoints support pagination with the following parameters:
|
208
|
-
|
209
|
-
* `page` - The page number to retrieve (default: 1)
|
210
|
-
* `items` - The number of items per page (default: 100)
|
211
|
-
|
212
|
-
==== Basic pagination
|
213
|
-
|
214
|
-
[source,ruby]
|
215
|
-
----
|
216
|
-
# Get first page with default limit (100 items)
|
217
|
-
specifications = client.specifications
|
218
|
-
|
219
|
-
# Get specific page with custom limit
|
220
|
-
specifications = client.specifications(page: 2, items: 25)
|
221
|
-
|
222
|
-
# Get first page with smaller limit
|
223
|
-
groups = client.groups(page: 1, items: 10)
|
224
|
-
----
|
225
|
-
|
226
|
-
==== Navigation links
|
227
|
-
|
228
|
-
All paginated responses include navigation links that can be used to traverse
|
229
|
-
pages:
|
230
|
-
|
231
|
-
[source,ruby]
|
232
|
-
----
|
233
|
-
# Get first page
|
234
|
-
specs_page1 = client.specifications(page: 1, items: 10)
|
235
|
-
|
236
|
-
# Access navigation links
|
237
|
-
links = specs_page1.links
|
238
|
-
|
239
|
-
# Check available navigation options
|
240
|
-
puts "Has next page: #{!links.next.nil?}"
|
241
|
-
puts "Has previous page: #{!links.prev.nil?}"
|
242
|
-
|
243
|
-
# Navigate to next page using the link
|
244
|
-
if links.next
|
245
|
-
next_page = links.next.realize
|
246
|
-
puts "Next page number: #{next_page.page}"
|
247
|
-
puts "Items on next page: #{next_page.links.specifications.length}"
|
248
|
-
end
|
249
|
-
|
250
|
-
# Navigate to first/last pages
|
251
|
-
first_page = links.first.realize if links.first
|
252
|
-
last_page = links.last.realize if links.last
|
253
|
-
----
|
254
|
-
|
255
|
-
==== Pagination information
|
256
|
-
|
257
|
-
Each paginated response includes metadata about the pagination state:
|
258
|
-
|
259
|
-
[source,ruby]
|
260
|
-
----
|
261
|
-
specs = client.specifications(page: 2, items: 25)
|
262
|
-
|
263
|
-
puts "Current page: #{specs.page}" # 2
|
264
|
-
puts "Items per page: #{specs.limit}" # 25
|
265
|
-
puts "Total items: #{specs.total}" # e.g., 1643
|
266
|
-
puts "Total pages: #{specs.pages}" # e.g., 66
|
267
|
-
----
|
268
|
-
|
269
|
-
==== Iterating through all pages
|
270
|
-
|
271
|
-
[source,ruby]
|
272
|
-
----
|
273
|
-
# Method 1: Using navigation links
|
274
|
-
current_page = client.specifications(page: 1, items: 50)
|
275
|
-
all_specifications = []
|
276
|
-
|
277
|
-
loop do
|
278
|
-
all_specifications.concat(current_page.links.specifications)
|
279
|
-
|
280
|
-
break unless current_page.links.next
|
281
|
-
|
282
|
-
current_page = current_page.links.next.realize
|
283
|
-
end
|
284
|
-
|
285
|
-
puts "Total specifications collected: #{all_specifications.length}"
|
286
|
-
|
287
|
-
# Method 2: Manual page iteration
|
288
|
-
page = 1
|
289
|
-
all_specifications = []
|
290
|
-
|
291
|
-
loop do
|
292
|
-
current_page = client.specifications(page: page, items: 50)
|
293
|
-
specifications = current_page.links.specifications
|
294
|
-
|
295
|
-
break if specifications.empty?
|
296
|
-
|
297
|
-
all_specifications.concat(specifications)
|
298
|
-
page += 1
|
299
|
-
end
|
300
|
-
----
|
301
|
-
|
302
|
-
==== Pagination for nested resources
|
303
|
-
|
304
|
-
Nested resources also support pagination:
|
305
|
-
|
306
|
-
[source,ruby]
|
307
|
-
----
|
308
|
-
# Get a group
|
309
|
-
group = client.group(109735)
|
310
|
-
|
311
|
-
# Get paginated specifications for this group
|
312
|
-
specs = group.specifications(page: 1, items: 10)
|
313
|
-
|
314
|
-
# Navigate through pages
|
315
|
-
if specs.links.next
|
316
|
-
next_specs = specs.links.next.realize
|
317
|
-
end
|
318
|
-
|
319
|
-
# Other nested resources with pagination
|
320
|
-
users = group.users(page: 1, items: 20)
|
321
|
-
chairs = group.chairs(page: 1, items: 5)
|
322
|
-
participations = group.participations(page: 1, items: 15)
|
323
|
-
|
324
|
-
# Affiliation nested resources
|
325
|
-
affiliation = client.affiliation(35662)
|
326
|
-
participants = affiliation.participants(page: 1, items: 10)
|
327
|
-
participations = affiliation.participations(page: 1, items: 10)
|
328
|
-
----
|
329
|
-
|
330
|
-
==== Supported endpoints
|
331
|
-
|
332
|
-
All the following endpoints support pagination:
|
333
|
-
|
334
|
-
* `client.specifications(page:, items:)`
|
335
|
-
* `client.groups(page:, items:)`
|
336
|
-
* `client.affiliations(page:, items:)`
|
337
|
-
* `client.series(page:, items:)`
|
338
|
-
* `client.translations(page:, items:)`
|
339
|
-
* `client.ecosystems(page:, items:)`
|
340
|
-
* `group.specifications(page:, items:)`
|
341
|
-
* `group.users(page:, items:)`
|
342
|
-
* `group.chairs(page:, items:)`
|
343
|
-
* `group.team_contacts(page:, items:)`
|
344
|
-
* `group.participations(page:, items:)`
|
345
|
-
* `affiliation.participants(page:, items:)`
|
346
|
-
* `affiliation.participations(page:, items:)`
|
347
|
-
* `participation.participants(page:, items:)`
|
348
|
-
* `user.groups(page:, items:)`
|
349
|
-
* `user.specifications(page:, items:)`
|
350
|
-
* `user.affiliations(page:, items:)`
|
351
|
-
* `user.participations(page:, items:)`
|
352
|
-
* And many more nested resource endpoints
|
353
|
-
|
354
234
|
=== Models
|
355
235
|
|
356
236
|
==== General
|
@@ -428,14 +308,16 @@ W3C API provides a command-line interface (CLI) for various operations.
|
|
428
308
|
|
429
309
|
The main executable is `w3c_api`.
|
430
310
|
|
431
|
-
By default, the output is in YAML format. You can specify the output format
|
432
|
-
|
311
|
+
By default, the output is in YAML format. You can specify the output format using the
|
312
|
+
`--format` option, which accepts `json` or `yaml`.
|
433
313
|
|
434
314
|
[source,shell]
|
435
315
|
----
|
436
316
|
Commands:
|
437
317
|
# Work with W3C specifications
|
438
318
|
w3c_api specification SUBCOMMAND ...ARGS
|
319
|
+
# Work with W3C specification versions
|
320
|
+
w3c_api specification_version SUBCOMMAND ...ARGS
|
439
321
|
# Work with W3C specification series
|
440
322
|
w3c_api series SUBCOMMAND ...ARGS
|
441
323
|
# Work with W3C groups
|
@@ -578,61 +460,65 @@ specifications:
|
|
578
460
|
----
|
579
461
|
====
|
580
462
|
|
581
|
-
|
582
|
-
|
583
|
-
// TODO: This is not yet implemented!
|
584
|
-
|
585
|
-
// ==== Editors
|
586
|
-
|
587
|
-
// TODO: This is not yet implemented!
|
463
|
+
=== Specification version
|
588
464
|
|
589
|
-
|
465
|
+
==== Editors
|
590
466
|
|
591
|
-
|
592
|
-
// ----
|
593
|
-
// # Fetch editors of a specification version
|
594
|
-
// $ w3c_api specification-version editors --shortname=webrtc --version=20241008
|
595
|
-
// ----
|
467
|
+
This command provides access to editors of a specification version.
|
596
468
|
|
597
|
-
|
598
|
-
|
599
|
-
|
600
|
-
|
601
|
-
|
602
|
-
// ---
|
603
|
-
// users:
|
604
|
-
// - href: https://api.w3.org/users/p3dte6mpoj4sgw888w8kw4w4skwosck
|
605
|
-
// title: Cullen Jennings
|
606
|
-
// - href: https://api.w3.org/users/kjqsxbe6kioko4s88s4wocws848kgw8
|
607
|
-
// title: Bernard Aboba
|
608
|
-
// - href: https://api.w3.org/users/t9qq83owlzkck404w0o44so8owc00gg
|
609
|
-
// title: Jan-Ivar Bruaroey
|
610
|
-
// ----
|
611
|
-
// ====
|
469
|
+
[source,shell]
|
470
|
+
----
|
471
|
+
# Fetch editors of a specification version
|
472
|
+
$ w3c_api specification_version editors --shortname=webrtc --version=20241008
|
473
|
+
----
|
612
474
|
|
613
|
-
|
475
|
+
[example]
|
476
|
+
====
|
477
|
+
[source,shell]
|
478
|
+
----
|
479
|
+
$ w3c_api specification_version editors --shortname=webrtc --version=20241008
|
480
|
+
---
|
481
|
+
_links:
|
482
|
+
editors:
|
483
|
+
- href: https://api.w3.org/users/bzb5w20eg68k40gc8w0wg0okk4k84os
|
484
|
+
title: Cullen Jennings
|
485
|
+
type: User
|
486
|
+
- href: https://api.w3.org/users/f521yr1m6g0kks880s8ocwsgwskgss4
|
487
|
+
title: Jan-Ivar Bruaroey
|
488
|
+
type: User
|
489
|
+
- href: https://api.w3.org/users/1dsgdsi4zrj4goo4k400c8scw4k4ggk
|
490
|
+
title: Henrik Boström
|
491
|
+
type: User
|
492
|
+
- href: https://api.w3.org/users/nlyfs3q8s2s0gk0owoggkco0sg0wwso
|
493
|
+
title: Florent Castelli
|
494
|
+
type: User
|
495
|
+
----
|
496
|
+
====
|
614
497
|
|
615
|
-
|
498
|
+
==== Deliverers
|
616
499
|
|
617
|
-
|
500
|
+
This command provides access to deliverers (working groups) of a specification
|
501
|
+
version.
|
618
502
|
|
619
|
-
|
620
|
-
|
621
|
-
|
622
|
-
|
623
|
-
|
503
|
+
[source,shell]
|
504
|
+
----
|
505
|
+
# Fetch deliverers of a specification version
|
506
|
+
$ w3c_api specification_version deliverers --shortname=webrtc --version=20241008
|
507
|
+
----
|
624
508
|
|
625
|
-
|
626
|
-
|
627
|
-
|
628
|
-
|
629
|
-
|
630
|
-
|
631
|
-
|
632
|
-
|
633
|
-
|
634
|
-
|
635
|
-
|
509
|
+
[example]
|
510
|
+
====
|
511
|
+
[source,shell]
|
512
|
+
----
|
513
|
+
$ w3c_api specification_version deliverers --shortname=webrtc --version=20241008
|
514
|
+
---
|
515
|
+
_links:
|
516
|
+
deliverers:
|
517
|
+
- href: https://api.w3.org/groups/wg/webrtc
|
518
|
+
title: Web Real-Time Communications Working Group
|
519
|
+
type: Group
|
520
|
+
----
|
521
|
+
====
|
636
522
|
|
637
523
|
=== Series
|
638
524
|
|
@@ -1180,34 +1066,35 @@ $ w3c_api group specifications --id=109735
|
|
1180
1066
|
----
|
1181
1067
|
$ w3c_api group specifications --id=109735
|
1182
1068
|
---
|
1069
|
+
_links:
|
1070
|
+
self:
|
1071
|
+
href: https://api.w3.org/groups/109735/specifications?page=1&items=100
|
1072
|
+
type: SpecificationIndex
|
1073
|
+
first:
|
1074
|
+
href: https://api.w3.org/groups/109735/specifications?page=1&items=100
|
1075
|
+
type: SpecificationIndex
|
1076
|
+
last:
|
1077
|
+
href: https://api.w3.org/groups/109735/specifications?page=1&items=100
|
1078
|
+
type: SpecificationIndex
|
1079
|
+
up:
|
1080
|
+
href: https://api.w3.org/groups/109735
|
1081
|
+
type: SpecificationIndex
|
1183
1082
|
specifications:
|
1184
1083
|
- href: https://api.w3.org/specifications/webxr-lighting-estimation-1
|
1185
1084
|
title: WebXR Lighting Estimation API Level 1
|
1186
1085
|
type: Specification
|
1187
|
-
- href: https://api.w3.org/specifications/webxr-ar-module-1
|
1188
|
-
title: WebXR Augmented Reality Module - Level 1
|
1189
|
-
type: Specification
|
1190
1086
|
- href: https://api.w3.org/specifications/webxr-gamepads-module-1
|
1191
1087
|
title: WebXR Gamepads Module - Level 1
|
1192
1088
|
type: Specification
|
1193
|
-
- href: https://api.w3.org/specifications/webxrlayers-1
|
1194
|
-
title: WebXR Layers API Level 1
|
1195
|
-
type: Specification
|
1196
1089
|
- href: https://api.w3.org/specifications/webxr-hand-input-1
|
1197
1090
|
title: WebXR Hand Input Module - Level 1
|
1198
1091
|
type: Specification
|
1199
1092
|
- href: https://api.w3.org/specifications/webxr-hit-test-1
|
1200
1093
|
title: WebXR Hit Test Module
|
1201
1094
|
type: Specification
|
1202
|
-
- href: https://api.w3.org/specifications/webxr-depth-sensing-1
|
1203
|
-
title: WebXR Depth Sensing Module
|
1204
|
-
type: Specification
|
1205
1095
|
- href: https://api.w3.org/specifications/webxr-dom-overlays-1
|
1206
1096
|
title: WebXR DOM Overlays Module
|
1207
1097
|
type: Specification
|
1208
|
-
- href: https://api.w3.org/specifications/webxr
|
1209
|
-
title: WebXR Device API
|
1210
|
-
type: Specification
|
1211
1098
|
----
|
1212
1099
|
====
|
1213
1100
|
|
@@ -1227,6 +1114,19 @@ $ w3c_api group users --id=109735
|
|
1227
1114
|
----
|
1228
1115
|
$ w3c_api group users --id=109735
|
1229
1116
|
---
|
1117
|
+
_links:
|
1118
|
+
self:
|
1119
|
+
href: https://api.w3.org/groups/109735/users?page=1&items=100
|
1120
|
+
type: UserIndex
|
1121
|
+
first:
|
1122
|
+
href: https://api.w3.org/groups/109735/users?page=1&items=100
|
1123
|
+
type: UserIndex
|
1124
|
+
last:
|
1125
|
+
href: https://api.w3.org/groups/109735/users?page=1&items=100
|
1126
|
+
type: UserIndex
|
1127
|
+
up:
|
1128
|
+
href: https://api.w3.org/groups/109735
|
1129
|
+
type: UserIndex
|
1230
1130
|
users:
|
1231
1131
|
- href: https://api.w3.org/users/9o1jsmhi8ysk088w0k4g00wsssk4c8c
|
1232
1132
|
title: Muadh Al Kalbani
|
@@ -1259,6 +1159,19 @@ $ w3c_api group charters --id=109735
|
|
1259
1159
|
----
|
1260
1160
|
$ w3c_api group charters --id=109735
|
1261
1161
|
---
|
1162
|
+
_links:
|
1163
|
+
self:
|
1164
|
+
href: https://api.w3.org/groups/109735/charters?page=1&items=100
|
1165
|
+
type: W3cApi::Models::CharterIndex
|
1166
|
+
first:
|
1167
|
+
href: https://api.w3.org/groups/109735/charters?page=1&items=100
|
1168
|
+
type: W3cApi::Models::CharterIndex
|
1169
|
+
last:
|
1170
|
+
href: https://api.w3.org/groups/109735/charters?page=1&items=100
|
1171
|
+
type: W3cApi::Models::CharterIndex
|
1172
|
+
up:
|
1173
|
+
href: https://api.w3.org/groups/109735
|
1174
|
+
type: W3cApi::Models::CharterIndex
|
1262
1175
|
charters:
|
1263
1176
|
- href: https://api.w3.org/groups/109735/charters/361
|
1264
1177
|
title: 2018-09-24 -> 2020-03-01
|
@@ -1272,6 +1185,10 @@ $ w3c_api group charters --id=109735
|
|
1272
1185
|
- href: https://api.w3.org/groups/109735/charters/514
|
1273
1186
|
title: 2024-09-26 -> 2026-09-25
|
1274
1187
|
type: Charter
|
1188
|
+
page: 1
|
1189
|
+
limit: 100
|
1190
|
+
pages: 1
|
1191
|
+
total: 4
|
1275
1192
|
----
|
1276
1193
|
====
|
1277
1194
|
|
@@ -1294,27 +1211,32 @@ $ w3c_api translation fetch [OPTIONS]
|
|
1294
1211
|
----
|
1295
1212
|
$ w3c_api translation fetch
|
1296
1213
|
---
|
1297
|
-
|
1298
|
-
|
1299
|
-
|
1300
|
-
|
1301
|
-
|
1302
|
-
|
1303
|
-
|
1304
|
-
|
1305
|
-
|
1306
|
-
|
1307
|
-
|
1308
|
-
|
1309
|
-
|
1310
|
-
|
1311
|
-
|
1312
|
-
|
1313
|
-
|
1314
|
-
|
1315
|
-
|
1316
|
-
|
1317
|
-
|
1214
|
+
_links:
|
1215
|
+
self:
|
1216
|
+
href: https://api.w3.org/translations?page=1&items=100
|
1217
|
+
type: TranslationIndex
|
1218
|
+
next:
|
1219
|
+
href: https://api.w3.org/translations?page=2&items=100
|
1220
|
+
type: TranslationIndex
|
1221
|
+
first:
|
1222
|
+
href: https://api.w3.org/translations?page=1&items=100
|
1223
|
+
type: TranslationIndex
|
1224
|
+
last:
|
1225
|
+
href: https://api.w3.org/translations?page=7&items=100
|
1226
|
+
type: TranslationIndex
|
1227
|
+
translations:
|
1228
|
+
- href: https://api.w3.org/translations/2
|
1229
|
+
title: 'Vidéo : introduction à l’accessibilité web et aux standards du W3C'
|
1230
|
+
type: Translation
|
1231
|
+
- href: https://api.w3.org/translations/3
|
1232
|
+
title: Vídeo de Introducción a la Accesibilidad Web y Estándares del W3C
|
1233
|
+
type: Translation
|
1234
|
+
- href: https://api.w3.org/translations/4
|
1235
|
+
title: Video-introductie over Web-toegankelijkheid en W3C-standaarden
|
1236
|
+
type: Translation
|
1237
|
+
- href: https://api.w3.org/translations/5
|
1238
|
+
title: 网页无障碍和W3C标准的介绍视频
|
1239
|
+
type: Translation
|
1318
1240
|
----
|
1319
1241
|
====
|
1320
1242
|
|
@@ -1436,6 +1358,10 @@ _links:
|
|
1436
1358
|
- href: https://api.w3.org/ecosystems/data
|
1437
1359
|
title: Data and knowledge
|
1438
1360
|
type: Ecosystem
|
1361
|
+
page: 1
|
1362
|
+
limit: 100
|
1363
|
+
pages: 1
|
1364
|
+
total: 9
|
1439
1365
|
----
|
1440
1366
|
====
|
1441
1367
|
|
@@ -1471,7 +1397,7 @@ _links:
|
|
1471
1397
|
type: GroupIndex
|
1472
1398
|
member-organizations:
|
1473
1399
|
href: https://api.w3.org/ecosystems/data/member-organizations
|
1474
|
-
type: AffiliationIndex
|
1400
|
+
type: W3cApi::Models::AffiliationIndex
|
1475
1401
|
name: Data and knowledge
|
1476
1402
|
shortname: data
|
1477
1403
|
----
|
@@ -1515,6 +1441,10 @@ _links:
|
|
1515
1441
|
- href: https://api.w3.org/users/qdkk81rtp344c44g0osoocgwwc8o4ss
|
1516
1442
|
title: Bobby Tung
|
1517
1443
|
type: User
|
1444
|
+
page: 1
|
1445
|
+
limit: 100
|
1446
|
+
pages: 1
|
1447
|
+
total: 3
|
1518
1448
|
----
|
1519
1449
|
====
|
1520
1450
|
|
@@ -1534,7 +1464,6 @@ $ w3c_api ecosystem groups --shortname={shortname}
|
|
1534
1464
|
----
|
1535
1465
|
$ w3c_api ecosystem groups --shortname=publishing
|
1536
1466
|
---
|
1537
|
-
---
|
1538
1467
|
_links:
|
1539
1468
|
self:
|
1540
1469
|
href: https://api.w3.org/ecosystems/publishing/groups?page=1&items=100
|
@@ -1552,9 +1481,6 @@ _links:
|
|
1552
1481
|
- href: https://api.w3.org/groups/cg/a11y-discov-vocab
|
1553
1482
|
title: Accessibility Discoverability Vocabulary for Schema.org Community Group
|
1554
1483
|
type: Group
|
1555
|
-
- href: https://api.w3.org/groups/cg/epub3
|
1556
|
-
title: EPUB 3 Community Group
|
1557
|
-
type: Group
|
1558
1484
|
- href: https://api.w3.org/groups/bg/publishingbg
|
1559
1485
|
title: Publishing Business Group
|
1560
1486
|
type: Group
|
@@ -1564,6 +1490,10 @@ _links:
|
|
1564
1490
|
- href: https://api.w3.org/groups/wg/pm
|
1565
1491
|
title: Publishing Maintenance Working Group
|
1566
1492
|
type: Group
|
1493
|
+
page: 1
|
1494
|
+
limit: 100
|
1495
|
+
pages: 1
|
1496
|
+
total: 4
|
1567
1497
|
----
|
1568
1498
|
====
|
1569
1499
|
|
@@ -1609,6 +1539,9 @@ _links:
|
|
1609
1539
|
- href: https://api.w3.org/affiliations/43420
|
1610
1540
|
title: Apache Software Foundation
|
1611
1541
|
type: Affiliation
|
1542
|
+
- href: https://api.w3.org/affiliations/1202
|
1543
|
+
title: Apple Inc.
|
1544
|
+
type: Affiliation
|
1612
1545
|
...
|
1613
1546
|
----
|
1614
1547
|
====
|
@@ -1705,6 +1638,10 @@ _links:
|
|
1705
1638
|
- href: https://api.w3.org/users/j2d10std2l4ck448woccowg8cg8g8go
|
1706
1639
|
title: Jean-Luc Chevillard
|
1707
1640
|
type: User
|
1641
|
+
page: 1
|
1642
|
+
limit: 100
|
1643
|
+
pages: 1
|
1644
|
+
total: 1
|
1708
1645
|
----
|
1709
1646
|
====
|
1710
1647
|
|
@@ -1742,6 +1679,10 @@ _links:
|
|
1742
1679
|
- href: https://api.w3.org/participations/32932
|
1743
1680
|
title: XQuery and XSLT Extensions Community Group
|
1744
1681
|
type: Participation
|
1682
|
+
page: 1
|
1683
|
+
limit: 100
|
1684
|
+
pages: 1
|
1685
|
+
total: 1
|
1745
1686
|
----
|
1746
1687
|
====
|
1747
1688
|
|
@@ -1817,6 +1758,10 @@ _links:
|
|
1817
1758
|
- href: https://api.w3.org/users/j2d10std2l4ck448woccowg8cg8g8go
|
1818
1759
|
title: Jean-Luc Chevillard
|
1819
1760
|
type: User
|
1761
|
+
page: 1
|
1762
|
+
limit: 100
|
1763
|
+
pages: 1
|
1764
|
+
total: 1
|
1820
1765
|
----
|
1821
1766
|
====
|
1822
1767
|
|