-
Notifications
You must be signed in to change notification settings - Fork 2
/
catalog-data.ttl
3681 lines (3033 loc) · 109 KB
/
catalog-data.ttl
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
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
@prefix : <#> .
#@prefix oar: <https://github.com/solid/organizations/tree/main/vocabularies/oar.ttl#> .
@prefix soar: <http://example.com/soar#> .
@prefix schema: <http://schema.org/> .
@prefix doap: <http://usefulinc.com/ns/doap#> .
@prefix dc: <http://purl.org/dc/terms/> .
@prefix sioc: <http://rdfs.org/sioc/ns#> .
@prefix siocs: <http://rdfs.org/sioc/services#> .
@prefix sioct: <http://rdfs.org/sioc/types#> .
@prefix meet: <https://www.w3.org/ns/pim/meeting#> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@prefix solid: <http://www.w3.org/ns/solid/terms#> .
@prefix foaf: <http://xmlns.com/foaf/0.1/homepage> .
@prefix vann: <http://purl.org/vocab/vann/> .
@prefix owl: <http://www.w3.org/2002/07/owl#> .
###
# Not currently used
#
# @prefix fabio: <http://purl.org/spar/fabio/> .
# @prefix pto: <http://productontology.org/id/> .
# @prefix gr: <https://www.heppnetz.de/ontologies/goodrelations/v1.html#> .
# @prefix org: <http://www.w3.org/ns/org#> .
###
###
# SERVICES
###
:InruptPodSpaces
a soar:PodService ;
# a soar:OpenIdService, soar:SolidStorageService ;
schema:name "Inrupt Pod Spaces" ;
schema:provider :Inrupt ;
doap:service-endpoint <https://start.inrupt.com/> ;
# schema:isAccessibleForFree false ;
# schema:image <https://cdn.prod.website-files.com/62d722f9cc456d1fb015d3e7/62d7239e66227a7c641e22dc_dark.webp>;
# schema:termsOfService <https://inrupt.com/terms-of-service> ;
# soar:platformProvider external:Amazon ;
# schema:location "Germany" ;
# schema:description "Inrupt Pod Spaces is an instance of the Enterprise Solid Server provided by Inrupt, Inc., hosted by Amazon and in Alpha stadium."@en ;
schema:actionApplication :ESS .
:SolidCommunityDotNet
a soar:PodService ;
# a soar:OpenIdService, soar:SolidStorageService ;
schema:name "solidcommunity.net" ;
# schema:isAccessibleForFree true ;
schema:provider :SolidTeam ;
# schema:image <https://solid.inrupt.com/themes/custom/solid/logo.svg>;
# schema:description "solidcommunity.net is a public Solid server maintained by the Solid Team.";
doap:service-endpoint <https://solidcommunity.net> ;
# schema:termsOfService <https://github.com/solid/solidcommunity.net?tab=readme-ov-file#Solidcommunitynet-Acceptable-Use-Policy> ;
# soar:platformProvider external:DigitalOcean ;
# schema:location "UK" ;
schema:actionApplication :NSS .
:SolidWebDotOrg
a soar:PodService ;
# a soar:OpenIdService, soar:SolidStorageService ;
schema:name "solidweb.org" ;
# schema:isAccessibleForFree true ;
schema:provider :SolidGrassroots ;
# schema:location "France" ;
# soar:platformProvider external:Hosteurope ;
# schema:image "https://www.serverproject.de/logo2.png";
# schema:description "solidweb.org is a public Solid server based in Germany which is in an experimental state.";
# schema:termsOfService <https://www.serverproject.de/files/solidweb_org_terms.txt> ;
doap:service-endpoint <https://solidweb.org> ;
schema:actionApplication :NSS .
:SolidWebDotMe
a soar:PodService ;
# a soar:OpenIdService, soar:SolidStorageService ;
schema:name "solidweb.me" ;
# schema:isAccessibleForFree true ;
schema:provider :Meisdata ;
# schema:location "France" ;
# schema:termsOfService <https://gitlab.com/groups/solidweb.org/-/group_members> ;
doap:service-endpoint <https://solidweb.me> ;
# soar:platformProvider external:Hosteurope ;
schema:actionApplication :CSS .
:TrinpodService
a soar:PodService ;
# a soar:OpenIdService, soar:SolidStorageService ;
# schema:isAccessibleForFree true ;
schema:name "Trinpod" ;
# schema:termsOfService <https://graphmetrix.com/terms> ;
schema:provider :Graphmetrix ;
# schema:location "USA" ;
# schema:image <https://trinpod.us/img/gmx_logo.5a794ad6.png> ;
# schema:description "trinpod.us is a public Solid server provided by Graphmetrix, U.S.A..";
doap:service-endpoint <https://trinpod.com> ;
# soar:platformProvider external:Hetzner ;
schema:actionApplication :Trinpod .
# Organization
#
:StartinBloxCo
a schema:Corporation ;
schema:name "Startin'Blox" .
# Software Library
#
:StartinBlox
a soar:SolidSDK ;
schema:provider :StartinBloxCo ;
schema:keywords "application creator","web components" ;
doap:homepage <https://startinblox.com/en/technology/> ;
doap:repository <https://git.startinblox.com/explore/groups> ;
schema:name "Startin'Blox" .
# Software Service
#
:StartinBloxDotCom
a soar:PodService ;
# schema:isAccessibleForFree true ;
schema:name "Startin'Blox" ;
schema:provider :StartinBlox ;
doap:service-endpoint <https://startinblox.com/> ;
schema:actionApplication :CSS .
:Mastopod
a soar:PodService ;
# a soar:OpenIdService, soar:SolidStorageService ;
schema:name "Mastopod" ;
# schema:isAccessibleForFree true ;
doap:service-endpoint <https://mastopod.com/> ;
schema:actionApplication :ActivityPods .
:PodDotLiquidSurf
a soar:PodService ;
# a soar:OpenIdService, soar:SolidStorageService ;
schema:name "Liquid Surf" ;
schema:provider :LiquidSurf ;
doap:service-endpoint <https://pod.liquid.surf/> ;
doap:repository <https://github.com/liquid-surf/easy-penny> ;
schema:actionApplication :CSS .
:TeamIdLive
a soar:PodService ;
# a soar:OpenIdService, soar:SolidStorageService ;
# schema:isAccessibleForFree true ;
doap:service-endpoint <https://teamid.live/> ;
schema:name "teamid.live" ;
schema:provider :Meisdata;
# schema:termsOfService <https://github.com/serverproject-dev> ;
# schema:location "EU" ;
schema:actionApplication :CSS .
:IgrantIo
a soar:PodService ;
# a soar:OpenIdService, soar:SolidStorageService ;
schema:name "Data Pod" ;
schema:provider :IgrantIoOrg ;
# schema:location "Sweden" ;
doap:service-endpoint <https://datapod.igrant.io/> ;
# schema:termsOfService <https://igrant.io/> ;
# schema:isAccessibleForFree true ;
schema:actionApplication :NSS .
:RedpencilService
a soar:PodService ;
# a soar:OpenIdService, soar:SolidStorageService ;
schema:name "redpencil.io" ;
schema:provider :Redpencil ;
# schema:termsOfService <https://redpencil.io/> ;
# schema:isAccessibleForFree true ;
doap:service-endpoint <https://solid.redpencil.io/> ;
schema:actionApplication :CSS .
:SolidCommunityAUpods
a soar:PodService ;
# a soar:OpenIdService, soar:SolidStorageService ;
schema:name "Solid Community AU" ;
doap:homepage <https://www.solidproject.au/> ;
doap:service-endpoint <https://pods.solidcommunity.au/> ;
schema:provider :SolidCommunityAU, :AkamiTechnologies ;
schema:location "AU" ;
schema:actionApplication :CSS .
:UseId
a soar:PodService ;
# a soar:OpenIdService, soar:SolidStorageService ;
doap:service-endpoint <https://get.use.id/> ;
schema:name "use.id" ;
schema:provider :Digita ;
# schema:termsOfService <https://get.use.id/> ;
# schema:location "EU" ;
# schema:isAccessibleForFree true ;
# soar:platformProvider external:DigitalOcean ;
schema:actionApplication :CSS .
:OpenLinks2
# a soar:PodService ;
# a soar:OpenIdService, soar:SolidStorageService ;
schema:name "OpenLinks Solid Server #2";
doap:service-endpoint <https://solid.openlinksw.com:8445/>;
#schema:termsOfService <https://solid.openlinksw.com:8445/>;
schema:provider :OpenLink;
schema:actionApplication :OpenLinkNSSFork .
:OpenLinks1
# a soar:PodService ;
# a soar:OpenIdService, soar:SolidStorageService ;
schema:name "OpenLinks Solid Server #1";
doap:service-endpoint <https://solid.openlinksw.com:8444/>;
schema:termsOfService <https://solid.openlinksw.com:8444/>;
schema:provider :OpenLink;
schema:actionApplication :OpenLinkNSSFork .
###
# SERVERS
###
:CSS
a soar:PodServer ;
schema:name "Community Solid Server" ;
schema:alternateName "CSS" ;
schema:provider :Imec ;
# schema:isAccessibleForFree true ;
doap:homepage <https://communitysolidserver.github.io/CommunitySolidServer/latest/>;
doap:repository <https://github.com/CommunitySolidServer/CommunitySolidServer> ;
doap:programming_language "Typescript" ;
schema:license "MIT" .
:PHP_Solid_Server
a soar:PodServer ;
schema:name "PHP Solid Server" ;
schema:provider :PDSINTEROP ;
doap:repository <https://github.com/pdsinterop/php-solid-server>;
doap:homepage <https://pdsinterop.org/php-solid-server/> ;
schema:license "MIT" ;
# schema:isAccessibleForFree true ;
doap:programming_language "PHP" .
:Manas
a soar:PodServer ;
schema:name "Manas" ;
schema:alternateName "मनस्";
doap:repository <https://github.com/manomayam/manas> ;
doap:homepage <https://manomayam.github.io/manas/introduction.html>;
schema:license "MIT or Apache" ;
schema:provider :Manomayam ;
# schema:isAccessibleForFree true ;
doap:programming_language "Rust" .
:Trinpod
a soar:PodServer ;
schema:name "Trinpod" ;
doap:homepage <https://graphmetrix.com/trinpod-server> ;
schema:provider :Graphmetrix ;
# schema:isAccessibleForFree false ;
schema:license "proprietary" .
:NSS
a soar:PodServer ;
# schema:isAccessibleForFree true ;
doap:repository <https://github.com/nodeSolidServer/node-solid-server> ;
schema:name "Node Solid Server" ;
schema:alternateName "NSS" ;
# schema:isAccessibleForFree true ;
doap:programming_language "Javascript" ;
schema:license "MIT" .
:ESS
a soar:PodServer ;
doap:homepage <https://www.inrupt.com/products/enterprise-solid-server>;
# schema:isAccessibleForFree false ;
schema:provider :Inrupt ;
schema:name "Enterprise Solid Server" ;
schema:alternateName "ESS" ;
schema:license "proprietary" .
:OpenLinkNSSFork
# a soar:OpenIdServer, soar:SolidStorageServer ;
schema:provider :OpenLink ;
# schema:isAccessibleForFree true ;
schema:name "OpenLink NSS Fork" .
:Gold
schema:name "Gold";
a soar:PodServer ;
# schema:isAccessibleForFree true ;
doap:repository <https://github.com/linkeddata/gold> ;
schema:license "MIT" ;
# schema:isAccessibleForFree true ;
doap:programming_language "Go" .
:Solid-Lite
schema:name "Solid Lite";
a soar:PodServer ;
doap:repository <https://github.com/solid-lite/server> ;
schema:license "MIT" ;
# schema:isAccessibleForFree true ;
doap:programming_language "Javascript" .
###
# LEARNING RESOURCES
###
:Solid-Clinic
a soar:SpecializedPodService;
schema:name "Solid Clinic" ;
doap:service-endpoint <https://chuixuewan.github.io/solid-clinic/> .
:Tim_Berners-Lee
a schema:Person ;
schema:name "Tim Berners-Lee" .
:Certiman
a schema:Person ;
schema:name "".
:VueSolidPod
schema:name "Vue Solid Pod" ;
doap:repository <https://github.com/Certiman/vue-solid-pod> ;
schema:description "This web application reproduces the SOLID POD Tutorial App using the vite & vue3 starter template. The intention is to demo how Solid pods can easily be integrated into Vue3 apps." ;
schema:provider :Certiman ;
a schema:LearningResource, soar:AppTutorial .
:ActivityPodsDocs
schema:name "Create your first social app" ;
doap:homepage <https://docs.activitypods.org/tutorials/create-your-first-social-app/> ;
schema:description "We created a boilerplate to help you quickly setup a social app in a local environment, and connect it with a local Pod provider. In just a few minutes, you should be able to play with your first ActivityPods-compatible app!" ;
schema:about :ActivityPods ;
a schema:LearningResource, soar:AppTutorial .
:PdsInteropConventions
schema:name "PDS Interop Conventions" ;
doap:homepage <https://github.com/pdsinterop/conventions?tab=readme-ov-file> ;
schema:description "Conventions around how apps and services store data on your personal data store." ;
schema:provider :PDSINTEROP ;
a schema:LearningResource, soar:AppTutorial .
:SolidTagExplainer
schema:name "TAG Explainer for Solid" ;
doap:homepage <https://timbl.solidcommunity.net/2023/03%20EWADA/TAGExplainerforSolid.html> ;
schema:provider :Tim_Berners-Lee ;
a schema:LearningResource, soar:ExplainerResource .
:RDF-JS
schema:name "RDF+JS = ♥" ;
schema:provider :Arne_Hassel ;
doap:homepage <https://rdfjs.dev/> ;
a schema:LearningResource, soar:AppTutorial .
:WebComponentsDiscussion
schema:name "Solid Web Components Discussion" ;
a schema:LearningResource, soar:AppTutorial .
:SolidShapesWiki
schema:name "Solid Shapes Wiki" ;
doap:wiki <https://github.com/solid/shapes/wiki> ;
a schema:LearningResource, soar:AppTutorial .
:GettingStarted
schema:name "Getting Started withSolid" ;
doap:repository <https://github.com/solid-contrib/getting-started/> ;
a schema:LearningResource, soar:AppTutorial .
:JavaTutorial
a schema:LearningResource, soar:AppTutorial;
schema:name "Java tutorial";
#schema:availableLanguage "English" ;
schema:provider :Inrupt;
doap:homepage <https://docs.inrupt.com/developer-tools/java/client-libraries/getting-started/> .
:JavaScriptTutorial
a schema:LearningResource, soar:AppTutorial;
schema:name "Javascript tutorial";
#schema:availableLanguage "English" ;
schema:provider :Inrupt;
doap:homepage <https://docs.inrupt.com/developer-tools/javascript/client-libraries/tutorial/getting-started/> .
:LDOtutorial
a schema:LearningResource, soar:AppTutorial;
schema:name "Using LDO to build a Solid Application for React";
#schema:availableLanguage "English" ;
schema:provider :Oteam;
doap:homepage <https://ldo.js.org/guides/solid_react/> .
:VocabsTutorial
a schema:LearningResource, soar:AppTutorial ;
schema:name "Creating Vocabularies";
#schema:availableLanguage "English" ;
schema:provider :SolidTeam;
doap:homepage <https://github.com/solid/solidproject.org/wiki/Vocabularies-Overview> .
:TodoApp
a schema:LearningResource, soar:AppTutorial ;
schema:name "How to Build a Solid To-Do App with React" ;
#schema:availableLanguage "English" ;
schema:provider :VirginiaBalseiro ;
doap:homepage <https://virginiabalseiro.com/blogposts/tutorial-create-a-solid-to-do-app> .
:EmberSolidVideo
a schema:LearningResource, soar:AppTutorial ;
schema:name "Ember Solid - a video tutorial" ;
#schema:availableLanguage "English" ;
schema:about :EmberSolid ;
schema:provider :AadVersteden ;
schema:homepage <https://nextcloud.hellofuture.be/s/nYYNwGceFSNotJY> .
:EmberSolid
a soar:SoftwareLibrary, soar:SolidSDK ;
schema:name "Ember Solid" ;
schema:provider :RedPencil ;
schema:homepage <https://chuixuewan.github.io/solid-clinic/> .
###
# COMMUNICATIONS
###
:SolidForum
schema:name "Solid Forum" ;
a sioc:Forum, sioct:MessageBoard ;
doap:service-endpoint <https://forum.solidproject.org> ;
# sioc:has_administrator :JustinBingham, :JacksonMorgan;
# sioc:has_moderator :Arne_Hassel, :JeffZucker ;
# schema:isAccessibleForFree true ;
schema:provider :SolidTeam ;
schema:description """
Create and respond to comments, questions, and discussions happening
in the community.
""" .
:SolidMatrixChat
schema:name "Solid Matrix Chat" ;
# schema:isAccessibleForFree true ;
a sioct:ChatChannel, sioc:Forum ;
doap:service-endpoint <https://matrix.to/to/#/#solid_project> ;
schema:provider :SolidTeam ;
schema:description """
The Solid Matrix Chat is a live chat where community members can connect.
""" .
:CG-mailingList
schema:name "W3C Solid Community Group Mailing List" ;
a sioc:Forum, sioct:MailingList ;
doap:service-endpoint <mailto:[email protected]?subject=subscribe> ;
doap:repository <https://lists.w3.org/Archives/Public/public-solid/> ;
# schema:isAccessibleForFree true ;
schema:provider :SolidCG .
:SolidReddit
schema:name "Solid Sub-Reddit" ;
# schema:isAccessibleForFree true ;
a sioc:Forum, sioct:MessageBoard ;
doap:service-endpoint <https://www.reddit.com/r/SOLID/> ;
schema:provider :SolidTeam .
###
# EVENTS
###
:SolidWorld
schema:name "Solid World" ;
a schema:Event.
:SolidSymposium
schema:name "Solid Symposium" ;
a schema:Event .
:SolidPractitioners-WeeklyCall
schema:name "Solid Practitioners Video Call" ;
a schema:Event, meet:Meeting ;
schema:provider :SolidPractitioners, :SolidTeam ;
meet:videoCallPage <https://meet.jit.si/solid-practitioners> ;
doap:repository <https://github.com/solid-contrib/practitioners/tree/main/meetings> ;
schema:description "A hub for those putting the Solid vision into practice." ;
# schema:isAccessibleForFree true ;
soar:Schedule "Every other Monday at 18:00 UTC" .
:SolidCG-WeeklyCall
schema:name "W3C Solid Community Group Video Call" ;
a schema:Event, meet:Meeting ;
schema:provider :SolidCG ;
meet:videoCallPage <https://meet.jit.si/solid-cg> ;
doap:repository <https://github.com/solid/specification/tree/main/meetings> ;
# schema:audience :TBD ;
# schema:about :TBD ;
schema:description "Learn and work on Solid specifications." ;
# schema:isAccessibleForFree true ;
soar:Schedule "Every Wednesday at 15:00 UTC" ;
rdfs:seeAlso <https://www.w3.org/events/meetings/a810b828-7a85-47b8-8a6d-2359a491a7f7/20240703T140000/>.
:SolidOS-WeeklyCall
schema:name "SolidOS Video Call" ;
a schema:Event ;
a meet:Meeting ;
schema:provider :SolidOSteam ;
meet:videoCallPage <https://meet.jit.si/solid-os> ;
doap:repository <https://github.com/solid-contrib/practitioners/tree/main/meetings> ;
schema:description "Coding discussion to support the SolidOS stack of libraries and apps." ;
# schema:isAccessibleForFree true ;
soar:Schedule "Every Wednesday at 17:00 UTC" .
:DataModulesVideoCall
schema:name "Data Modules Video Call" ;
a schema:Event, meet:Meeting .
###
# Social Apps
###
:SolidHealthAU
a soar:SpecializedPodService ;
schema:name "Solid Health" ;
schema:keywords "health","ethnicity","access to public resources" ;
schema:provider :AUnationalU, :GurrinyHealthClinic ;
# schema:isAccessibleForFree true ;
doap:homepage <https://sii.anu.edu.au/projects.html> ;
schema:description """
Members of the Yarrabah Aboriginal Community in Queensland each have a POD hosted on the Yarrabah Solid Server containing their own private health data.
""" .
:DigitalFlanders
schema:name "Digital Flanders" ;
a soar:SpecializedPodService ;
schema:keywords "employment","access to public resources" ;
schema:provider :GovernmentOfFlanders.
:WelcomeToMyPlace
a soar:SpecializedPodService ;
schema:keywords "housing", "resource sharing" ;
schema:name "Welcome to My Place" ;
doap:service-endpoint <https://mastopod.com/> ;
schema:actionApplication :ActivityPods ;
schema:description """
Private meetings at home that promote a living together based on welcome,
trust and mutuall aid.
""" .
:MutualAid
a soar:SpecializedPodService ;
schema:name "Mutual Aid" ;
schema:keywords "resource sharing" ;
doap:service-endpoint <https://mutual-aid.app/> ;
schema:actionApplication :ActivityPods ;
schema:description """
Classified ads to support each other within a trusted neteork.
""" .
:SleepyBike
a soar:SpecializedPodService ;
schema:name "sleepy.bike" ;
schema:keywords "housing", "transportation", "resource sharing" ;
doap:service-endpoint <https://sleepy.bike/> ;
doap:implements :Solid, :Solid-OIDC ;
schema:provider :OpenHospitalityNetwork ;
schema:actionApplication :CSS, :SleepyBikePlatform;
schema:description """
A decentralized hospitality exchange community for slow travellers.
""" .
:PASS
a soar:SpecializedPodService ;
schema:name "Personalized Access System for Services" ;
schema:keywords "housing", "access to public resources" ;
schema:provider :CodePDX ;
schema:actionApplication :CSS, :PASSPlatform;
doap:wiki <https://github.com/codeforpdx/PASS/wiki> ;
doap:repository <https://github.com/codeforpdx/PASS> ;
schema:description """
An open source digital wallet for providing home-insecure individuals a safe
place to store documents within their control. PASS additionally aims to assist
caseworkers with processing and providing documents needed to complete the
housing-assistance application process.
""" .
:Mycelium
a soar:SpecializedPodService ;
schema:keywords "food", "farming", "short supply chain", "business management" ;
schema:name "Mycelium Project" ;
schema:provider :INRIA, :StartinBloxCo ;
dc:references :DataFoodNetwork ;
schema:description """
applications to manage farms (products, harvests, sales, accounting, etc.) using taxonomies for short food supply chains.
""" .
:HUBL
a soar:SpecializedPodService ;
schema:name "HUBL" ;
schema:keywords "employment", "resource sharing" ;
schema:provider :INRIA, :StartinBloxCo ;
schema:description """
allows you to find freelancers in a community of users
""" .
###
#
###
:ActivityPods
schema:description "A new kind of architecture for web applications which aims to reconcile the ActivityPub and Solid standards." ;
a schema:SoftwareLibrary, soar:SolidSDK ;
schema:provider :Sebastien_Rosset ;
schema:name "ActivityPods" ;
doap:homepage <https://activitypods.org/> ;
doap:repository <https://github.com/activitypods/activitypods> ;
schema:description """
Brings together two game-changing technologies, ActivityPub and Solid Pods,
and empowers developers to create truly decentralized applications
""" .
:Espresso
a schema:ResearchOrganization ;
schema:name "Espresso" ;
schema:audience "App Developers" ;
schema:provider :UofSouthhampton, :UofLondon, :UofSingapore, :DataSwift ;
schema:status soar:Development ;
doap:homepage <https://espressoproject.org/> ;
schema:description """
Efficient Search over Personal Repositories - Secure and Sovereign
""" .
:LiquidSurfFedCM
a schema:SoftwareApplication, soar:GeneralPurposeApp ;
schema:name "Liquid Surf FedCM Demo" ;
doap:repository <https://github.com/liquid-surf/fedcm-demo> ;
schema:description """
an experiment with FedCM and Solid-OIDC integration
""" .
###
# LIBRARIES
# RDF PARSING
# ACCESS & AUTH
# SOLID CLIENTS
# HIGH LEVEL LIBRARIES
###
###
# RDF PARSING
###
:LDO
schema:name "LDO - Linked Data Objects" ;
doap:programming_language "typescript" ;
schema:keywords "rdf parsing", "general purpose library" ;
a soar:SoftwareLibrary , soar:SolidLinkedDataLibrary .
:EasyRDF
schema:description "A library designed to make it easy to consume and produce RDF in PHP." ;
a soar:SoftwareLibrary , soar:SolidLinkedDataLibrary;
schema:keywords "rdf parsing", "general purpose library" ;
schema:name "EasyRDF" .
:Idflex_query
schema:name "Idflex query" ;
schema:keywords "rdf parsing", "general purpose library" ;
a soar:SoftwareLibrary, soar:SolidLinkedDataLibrary .
:Rdf_ext
schema:description "RDF-Ext is a developer-friendly extension for RDF/JS." ;
schema:name "Rdf ext" ;
schema:keywords "rdf parsing", "general purpose library" ;
a soar:SoftwareLibrary, soar:SolidLinkedDataLibrary ;
doap:repository <https://github.com/rdf-ext/rdf-ext> .
:Rdflib
schema:description "Linked Data API for JavaScript." ;
schema:provider :SolidOSteam;
schema:name "rdflib" ;
schema:keywords "rdf parsing", "general purpose library" ;
a soar:SoftwareLibrary, soar:SolidLinkedDataLibrary ;
doap:repository <https://github.com/linkeddata/rdflib.js> .
:Solid_namespace
schema:description "A collection of common RDF namespaces used in the Solid project." ;
schema:name "Solid namespace" ;
a soar:SoftwareLibrary, soar:SolidLinkedDataLibrary ;
schema:keywords "rdf parsing", "general purpose library" ;
doap:repository <https://github.com/solid/solid-namespace> .
:Solid_react_graphql_ld
schema:description "React components and hooks for building Solid apps with GraphQL-LD." ;
schema:name "Solid react graphql ld" ;
schema:provider :Ruben_Taelman ;
a soar:SolidSDK ;
schema:keywords "rdf parsing", "general purpose library" ;
doap:repository <https://github.com/rubensworks/solid-react-graphql-ld> .
:Tripledoc
schema:description "A library for easy manipulation of RDF." ;
a soar:SoftwareLibrary, soar:SolidLinkedDataLibrary ;
schema:keywords "rdf parsing", "general purpose library" ;
schema:name "Tripledoc" .
:Soukai_Solid
schema:description "A Soukai ODM extension adapting Solid to the engine." ;
schema:provider :Noel_De_Martin ;
schema:name "Soukai Solid" ;
schema:keywords "rdf parsing", "general purpose library" ;
a soar:SoftwareLibrary, soar:SolidSDK .
:GraphQL_ld_comunica_solid
schema:description "A GraphQL-LD engine that is backed by Comunica with Solid authentication." ;
schema:name "GraphQL ld comunica solid" ;
schema:provider :Ruben_Taelman ;
a soar:SoftwareLibrary, soar:SolidLinkedDataLibrary ;
schema:keywords "rdf parsing", "general purpose library" ;
doap:repository <https://github.com/rubensworks/graphql-ld-comunica-solid.js> .
:Query_solid
schema:description "Simple access to data in Solid pods through LDflex expressions." ;
schema:provider :Ruben_Verborgh ;
schema:name "Query solid" ;
schema:keywords "rdf parsing", "general purpose library" ;
a soar:SoftwareLibrary, soar:SolidLinkedDataLibrary ;
doap:repository <https://github.com/LDflex/Query-Solid> .
###
# ACCESS
###
:OIDC_auth_manager
schema:description "An OpenID Connect (OIDC) authentication manager (OP, RP and RS) for decentralized peer-to-peer authentication." ;
schema:name "OIDC auth manager" ;
a soar:SoftwareLibrary, soar:SolidLowLevelLibrary ;
schema:keywords "authentication" ;
doap:repository <https://github.com/nodeSolidServer/oidc-auth-manager> .
:OIDC_provider
schema:description "OpenID Connect Provider for Node.js." ;
schema:name "OIDC provider" ;
a soar:SoftwareLibrary, soar:SolidLowLevelLibrary ;
schema:keywords "authentication" ;
doap:repository <https://github.com/nodeSolidServer/oidc-op> .
:OIDC_relying_party
schema:description "OpenID Connect Relying Party client library." ;
schema:name "OIDC relying party" ;
a soar:SoftwareLibrary, soar:SolidLowLevelLibrary ;
schema:keywords "authentication";
doap:repository <https://github.com/nodeSolidServer/oidc-rp> .
:OIDC_resource_server_auth
schema:description "OpenID Connect Resource Server Authentication for Node.js." ;
schema:name "OIDC resource server auth" ;
schema:keywords "authentication" ;
a soar:SoftwareLibrary, soar:SolidLowLevelLibrary ;
doap:repository <https://github.com/nodeSolidServer/oidc-rs> .
:ACL_check
schema:description "Simple check of Web Access Control (WAC) access." ;
schema:keywords "access control", "wac" ;
schema:name "ACL check" ;
schema:provider :Arne_Hassel, :Kjetil_Kjernsmo, :Michiel_de_Jong ;
a soar:SoftwareLibrary, soar:SolidLowLevelLibrary ;
doap:repository <https://github.com/nodeSolidServer/acl-check> .
:KeyChain
schema:description "KeyChain for use with Web Cryptography API in Node.js." ;
schema:keywords "encryption","authentication" ;
a soar:SoftwareLibrary, soar:SolidLowLevelLibrary ;
doap:repository <https://github.com/nodeSolidServer/keychain> ;
schema:name "KeyChain" .
:Solid_file_widget
schema:provider :Alain_Bourgeois ;
schema:keywords "authentication","pod management";
schema:description "Widget authorization for a Solid webapp." ;
schema:name "Solid file widget" ;
a soar:SoftwareLibrary, soar:SolidSDK ;
doap:repository <https://github.com/bourgeoa/solid-file-widget> .
###
# SOLID CLIENTS
###
:Solid_auth_fetcher
schema:description "Login and session management." ;
schema:keywords "solid client" ;
schema:name "Solid auth fetcher" ;
a soar:SoftwareLibrary, soar:SolidFetchClient ;
doap:programming_language "Javascript" ;
doap:platform "node","browser" ;
doap:repository <https://github.com/solid-contrib/solid-auth-fetcher> .
:Solid_auth_swift
schema:description "Swift-based authentication for a Solid Pod." ;
schema:keywords "solid client" ;
schema:name "Solid auth swift" ;
a soar:SoftwareLibrary, soar:SolidFetchClient ;
doap:programming_language "Swift" ;
doap:platform "node" ;
doap:repository <https://github.com/crspybits/SolidAuthSwift> .
:Solid_client_authn_browser
schema:name "Solid client authn browser" ;
schema:keywords "solid client" ;
schema:provider :Inrupt;
doap:programming_language "Typescript" ;
doap:platform "browser" ;
a soar:SoftwareLibrary, soar:SolidFetchClient .
:Solid_client_authn_node
schema:description "A client library for authenticating with Solid." ;
schema:name "Solid client authn node" ;
schema:provider :Inrupt;
a soar:SoftwareLibrary, soar:SolidFetchClient ;
schema:keywords "solid client" ;
doap:programming_language "Typescript" ;
doap:platform "node" ;
doap:repository <https://github.com/inrupt/solid-client-authn-js> .
:Solid_client_credentials_py
schema:description " Solid authentication with client credentials." ;
schema:keywords "solid client" ;
schema:name "Solid client credentials py" ;
a soar:SoftwareLibrary, soar:SolidFetchClient ;
doap:programming_language "Python" ;
doap:platform "node" ;
doap:repository <https://github.com/Otto-AA/solid-client-credentials-py> .
:Solid_oidc_py
schema:description "A solid-OIDC client in python." ;
schema:keywords "solid client" ;
schema:name "Solid oidc py" ;
a soar:SoftwareLibrary, soar:SolidFetchClient ;
doap:programming_language "Python" ;
doap:platform "node" ;
doap:repository <https://github.com/Otto-AA/solid-oidc-py> .
:Web_Solid_Auth
schema:description "A Perl Solid web client" ;
schema:keywords "solid client" ;
a soar:SoftwareLibrary ;
doap:programming_language "Perl" ;
doap:platform "browser" ;
schema:name "Web::Solid::Auth" .
:Solid_client_php
schema:description "PHP library for accessing data and managing permissions on data stored in a Solid Pod." ;
schema:provider :Jacob_Dreesen, :Kevin_Dunglas ;
schema:name "Solid client php" ;
schema:keywords "solid client" ;
doap:programming_language "PHP" ;
doap:platform "node" ;
a soar:SoftwareLibrary, soar:SolidFetchClient .
:Solid_node_client
schema:description "Nodejs login/session for Pods & Solid access to local file systems, and other backends." ;
schema:name "Solid node client" ;
schema:keywords "solid client" ;
a soar:SoftwareLibrary, soar:SolidFetchClient ;
doap:programming_language "Typescript" ;
doap:platform "node" ;
doap:repository <https://github.com/solid/solid-node-client> .
###
# COMPONENTS & FRAMEWORKS
###
:Shighl_elements
schema:description "Webcoponents based on Shighl" ;
schema:name "Shighl elements" ;
schema:keywords "web components","general purpose library" ;
a soar:SoftwareLibrary, soar:SolidSDK .
:AerogelJS
schema:name "AerogelJS" ;
doap:homepage <https://aerogel.js.org/>;
schema:keywords "general purpose library", "application creator" ;
a soar:SoftwareLibrary, soar:SolidSDK .
:SolidWebComponents
schema:name "Solid Web Components" ;
doap:repository <https://github.com/solidos/solid-web-components> ;
schema:keywords "web components","general purpose library" ;
a soar:SoftwareLibrary, soar:SolidSDK .
:Molid
soar:featured true;
schema:description "A mock server that can be used for apps." ;
doap:repository <https://www.npmjs.com/package/molid> ;
a soar:SoftwareLibrary , soar:SolidLowLevelLibrary ;
doap:programming_language "javascript" ;
schema:keywords "test server","general purpose library" ;
schema:description "Mock Solid Server" ;
schema:name "Molid" .
:Solid_rest
schema:description "A client-side API which supports any backend for Solid requests." ;
schema:name "Solid rest" ;
schema:provider :Jeff_Zucker;
schema:keywords "alternate storage","general purpose library" ;
a soar:SoftwareLibrary, soar:SolidSDK ;
doap:repository <https://github.com/solid-contrib/solid-rest> .
:SolidOS
schema:name "Solid OS" ;
schema:alternateName "mashlib" ;
a soar:SoftwareLibrary, schema:SoftwareApplication ;
schema:keywords "pod frontend","general purpose library" ;
schema:description "Solid-compatible data mashup library and Data Browser." ;
doap:homepage <https://solidos.solidcomunity.net/> ;
solid:webid <https://solidos.solidcomunity.net/profile/card#me> ;
doap:repository <https://github.com/solidos/mashlib> .
:Solid_Logic
schema:description "Core business logic of Solid OS" ;
schema:keywords "general purpose library" ;
schema:name "Solid Logic" ; schema:name "Solid Logic" ;
a soar:SoftwareLibrary, soar:SolidLowLevelLibrary ;
doap:repository <https://github.com/solidos/solid-logic> .
:Solid_Panes
schema:description "A set of core solid-compatible apps based on solid-ui." ;
schema:keywords "general purpose library" ;
schema:name "Solid Panes" ;
a soar:SoftwareLibrary, soar:SolidLowLevelLibrary ;
doap:repository <https://github.com/solidos/solid-panes> .
:Solid_UI
schema:description "User Interface widgets and utilities for Solid." ;
schema:name "Solid UI" ;
schema:keywords "general purpose library" ;
schema:provider :SolidOSteam;
a soar:SoftwareLibrary, soar:SolidLowLevelLibrary ;
doap:repository <https://github.com/solidos/solid-ui> .
###
# APPS
####
:Syntropize
a schema:SoftwareApplication, soar:GeneralPurposeApp ;
schema:name "Syntropize" ;
schema:audience "everyone" ;
schema:status soar:Production ;
schema:provider :RahulGupta ;
doap:homepage <https://syntropize.com/> ;
doap:repository <https://gitlab.com/syntropize/syntropize> ;
schema:description """
a proposal to reclaim the original vision of the personal computer as the means for
intelligence augmentation and seamless collaboration
""" .
:SolidFlix
a schema:SoftwareApplication, soar:LeisureApp ;
schema:name "SolidFlix" ;
doap:homepage <https://oxfordhcc.github.io/solid-media/login/?redirect=%2Fsolid-media%2F> ;
schema:provider :RuiZhao, :JunZhao ;
schema:partOf :OxfordHumanCenteredComputingGroup, :EDWADAproject ;
schema:status soar:Development ;
doap:repository <https://github.com/OxfordHCC/solid-media> ;
schema:description """
A movie tracking and sharing application with personalised recommendations.
""" .
:MediaKraken
schema:name "Media Kraken" ;
a schema:SoftwareApplication, soar:LeisureApp ;
doap:homepage <https://noeldemartin.github.io/media-kraken/> .
:TrinAppSuite
schema:name "TrinApp Suite" ;
doap:homepage <https://graphmetrix.com/trinapp> ;
a schema:SoftwareApplication, soar:PersonalProductivityApp .
###
# POD FRONT ENDS
###
:Solvent
a schema:SoftwareApplication, soar:PodTool ;
doap:repository <https://github.com/manomayam/solvent> ;
schema:provider :Manomayam ;
schema:keywords "pod frontend","self-hosted pod" ;
schema:name "Solvent" .
:DataKitchen
schema:name "Data Kitchen" ;
doap:repository <https://github.com/solidos/data-kitchen> ;
schema:provider :JeffZucker ;
schema:description "The solid databrowser technology as a stand-alone electron app." ;
schema:keywords "pod frontend","self-hosted pod" ;
a schema:SoftwareApplication, soar:PodTool .
:Penny
schema:description "Pod data inspector" ;
schema:provider :Vincent_Tunru ;
a schema:SoftwareApplication, soar:PodTool ;
schema:keywords "pod frontend";
schema:name "Penny" .
:PodOS
schema:provider :AngeloVeltens ;
schema:name "PodOS" ;
doap:repository <https://github.com/pod-os/PodOS> ;
schema:keywords "pod frontend" ;
a schema:SoftwareApplication, soar:PodTool .
:SolidOSWebApp
schema:name "SolidOS Webapp" ;
schema:keywords "pod frontend";
a schema:SoftwareApplication, soar:PodTool .
:solidpod