forked from decentralized-fda/dfda-wiki
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtree-config.ts
More file actions
3676 lines (3675 loc) · 166 KB
/
tree-config.ts
File metadata and controls
3676 lines (3675 loc) · 166 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
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
// Auto-generated tree configuration with metadata
export const treeConfig = {
"name": "dfda-wiki",
"type": "directory",
"path": ".",
"children": [
{
"name": "01-problem.md",
"type": "file",
"path": "01-problem.md",
"children": [],
"metadata": {
"description": "You and Everyone You Love Will Suffer and Die.",
"emoji": "💀",
"title": "Problems We Can Solve with a Decentralized FDA",
"number": "150k",
"textFollowingNumber": "people die every day from possibly preventable degenerative diseases",
"tags": "global-health, chronic-diseases, preventable-deaths, healthcare-spending",
"published": true,
"editor": "markdown",
"date": "2025-02-11T13:38:21.578Z",
"dateCreated": "2025-02-11T13:38:21.578Z"
}
},
{
"name": "02-solution.md",
"type": "file",
"path": "02-solution.md",
"children": [],
"metadata": {
"description": "How we reduce suffering using a decentralized autonomous organization as a vehicle to use the oceans of real-world evidence to discover new cures.",
"emoji": "🎯",
"title": "Personalized Precision Medicine Framework",
"tags": "precision-medicine, insilico-models, machine-learning, genomics, transcriptomics, proteomics, metabolomics, microbiomics, phenotype",
"published": true,
"editor": "markdown",
"date": "2025-02-11T14:02:49.420Z",
"dateCreated": "2025-02-11T14:02:49.420Z"
}
},
{
"name": "03-platform.md",
"type": "file",
"path": "03-platform.md",
"children": [],
"metadata": {
"title": "🏭 Platform",
"description": "A detailed description of the core open-source platform and plugin framework that will enable the transformation of data into clinical discoveries.",
"published": true,
"date": "2025-02-18T05:14:54.240Z",
"tags": "clinical-trials, health-data, decentralization, digital-health, interoperability, ehr-systems",
"editor": "markdown",
"dateCreated": "2023-11-07T19:01:19.907Z"
}
},
{
"name": "SITEMAP.md",
"type": "file",
"path": "SITEMAP.md",
"children": [],
"metadata": {
"title": "DFDA Wiki Sitemap",
"description": "Comprehensive navigation structure for the DFDA Wiki",
"lastUpdated": "2024-02-09",
"status": "live"
}
},
{
"name": "benefits",
"type": "directory",
"path": "benefits",
"children": [
{
"name": "cost-savings-from-decentralized-clinical-trials.md",
"type": "file",
"path": "benefits/cost-savings-from-decentralized-clinical-trials.md",
"children": [],
"metadata": {
"description": "Decentralized Clinical Trials Can Achieve Net Financial Benefits of 5X to 14X, Due to Reduced Trial Timelines and Other Factors",
"emoji": "🌍",
"title": "Cost Savings from Decentralized Clinical Trials",
"tags": "decentralized-clinical-trials, cost-savings, financial-benefits, trial-timelines",
"published": true,
"editor": "markdown",
"date": "2025-02-11T15:30:36.846Z",
"dateCreated": "2025-02-11T15:30:36.847Z"
}
},
{
"name": "faster-progress.md",
"type": "file",
"path": "benefits/faster-progress.md",
"children": [],
"metadata": {
"number": "20X",
"textFollowingNumber": "the rate of treatment discovery",
"title": "20X the Speed of Curing Diseases",
"description": "By reducing the cost of clinical trials by 95%, we can run 20 times more trials with the same resources, dramatically accelerating the discovery of new treatments and cures.",
"emoji": "🚀",
"featuredImage": "cost-per-participant.jpg",
"source": "https://dfda.earth#cost-savings",
"published": true,
"editor": "markdown",
"date": "2025-02-09T16:20:32.118Z",
"dateCreated": "2025-02-09T16:20:32.118Z"
}
},
{
"name": "improving-treatment-affordability-and-accessibility.md",
"type": "file",
"path": "benefits/improving-treatment-affordability-and-accessibility.md",
"children": [],
"metadata": {
"description": "How the proposed decentralized FDA system could dramatically improve affordability and accessibility of treatments for patients through cost reductions, price competition, and faster access",
"emoji": "💰",
"title": "Improving Treatment Affordability and Accessibility",
"tags": "affordability, accessibility, drug-prices, cost-reduction, patient-benefits",
"published": true,
"editor": "markdown",
"date": "2025-02-15T14:30:00.236Z",
"dateCreated": "2025-02-15T14:30:00.236Z"
}
},
{
"name": "lower-costs-of-validated-observational-research-for-efficacy.md",
"type": "file",
"path": "benefits/lower-costs-of-validated-observational-research-for-efficacy.md",
"children": [],
"metadata": {
"description": "Observational real-world evidence-based studies have several advantages over randomized, controlled trials, including lower cost, increased speed of research, and a broader range of patients.",
"emoji": "👀",
"title": "Lower Costs of Validated Observational Research for Efficacy",
"tags": "observational-research, cost-effectiveness, real-world-evidence, meta-analyses, clinical-studies",
"published": true,
"editor": "markdown",
"date": "2025-02-12T15:32:45.179Z",
"dateCreated": "2025-02-12T15:32:45.179Z"
}
},
{
"name": "lower-costs.md",
"type": "file",
"path": "benefits/lower-costs.md",
"children": [],
"metadata": {
"number": "95%",
"textFollowingNumber": "lower costs of clinical trials and treatments",
"title": "95% Lower Costs of Clinical Trials and Treatments",
"description": "By automating clinical trials and treatments, we can reduce costs by 95%",
"emoji": "📉",
"featuredImage": "cost-per-participant.jpg",
"source": "https://dfda.earth#cost-savings",
"published": true,
"editor": "markdown",
"date": "2025-02-09T16:20:32.127Z",
"dateCreated": "2025-02-09T16:20:32.127Z"
}
},
{
"name": "lower-drug-prices.md",
"type": "file",
"path": "benefits/lower-drug-prices.md",
"children": [],
"metadata": {
"title": "Lower Drug Prices",
"description": "Below is a deeper quantitative analysis of how drastically cheaper trials and increased competition (including off-patent/unpatentable compounds) could push drug prices down.",
"emoji": "🤑",
"published": true,
"editor": "markdown",
"date": "2025-02-09T16:20:32.129Z",
"dateCreated": "2025-02-09T16:20:32.129Z"
}
},
{
"name": "more-cures-and-less-lifelong-attempts-at-masking-symptoms.md",
"type": "file",
"path": "benefits/more-cures-and-less-lifelong-attempts-at-masking-symptoms.md",
"children": [],
"metadata": {
"description": "High Costs Punish Finding Cures Over Masking Symptoms Since Cures Are Far Less Profitable Than Lifetime Treatments",
"emoji": "💰",
"title": "Economic Incentives for Medical Cures vs Symptom Management",
"tags": "medical-economics, drug-development, cures, symptom-management, R&D",
"published": true,
"editor": "markdown",
"date": "2025-02-12T15:33:40.236Z",
"dateCreated": "2025-02-12T15:33:40.236Z"
}
},
{
"name": "overall-economic-benefits.md",
"type": "file",
"path": "benefits/overall-economic-benefits.md",
"children": [],
"metadata": {
"title": "Overall Economic Benefits",
"description": "Quantitative analysis of global economic benefits from decentralized clinical trials and automated FDA processes",
"emoji": "📈",
"toc": true,
"published": true,
"editor": "markdown",
"date": "2025-02-09T16:20:32.132Z",
"dateCreated": "2025-02-09T16:20:32.132Z"
}
},
{
"name": "patient-participation.md",
"type": "file",
"path": "benefits/patient-participation.md",
"children": [],
"metadata": {
"number": "100%",
"textFollowingNumber": "of patients can participate in trials",
"title": "100% Patient Participation in Trials",
"description": "By removing traditional barriers and using decentralized trials, we can include the 100% of patients typically excluded from clinical research",
"emoji": "🌍",
"featuredImage": "patient-participation.jpg",
"source": "https://dfda.earth",
"published": true,
"editor": "markdown",
"date": "2025-02-09T16:20:32.136Z",
"dateCreated": "2025-02-09T16:20:32.136Z"
}
},
{
"name": "time-to-treatment.md",
"type": "file",
"path": "benefits/time-to-treatment.md",
"children": [],
"metadata": {
"number": "2 Years",
"textFollowingNumber": "instead of 17 years to get new treatments to patients",
"title": "17 years to 2 Year From Research to Treatment",
"description": "By streamlining the clinical trial process through automation and decentralization, we can reduce the time from initial research to patient availability from 17 years to just 2 years",
"emoji": "⚡",
"featuredImage": "treatment-time.jpg",
"source": "https://dfda.earth",
"published": true,
"editor": "markdown",
"date": "2025-02-09T16:20:32.141Z",
"dateCreated": "2025-02-09T16:20:32.141Z"
}
}
]
},
{
"name": "blueprint",
"type": "directory",
"path": "blueprint",
"children": [
{
"name": "blueprint-gas.md",
"type": "file",
"path": "blueprint/blueprint-gas.md",
"children": [],
"metadata": {
"description": "A system of incentivized actions to promote the adoption of a global blueprint, including rewards for optimizing the blueprint and generating public support.",
"emoji": "🤝",
"title": "Incentivized Actions for Global Blueprint Adoption",
"tags": "global-blueprint, incentives, public-support, blueprint-optimization",
"published": true,
"editor": "markdown",
"date": "2025-02-12T16:46:56.763Z",
"dateCreated": "2025-02-12T16:46:56.763Z"
}
},
{
"name": "blueprint-high-level.md",
"type": "file",
"path": "blueprint/blueprint-high-level.md",
"children": [],
"metadata": {
"description": "A framework for envisioning and implementing a world without disease, including defining the ideal, creating a roadmap, seeking global consent, and enacting legal reforms.",
"emoji": "🌍",
"title": "Framework for a World Without Disease",
"tags": "disease-eradication, global-health, policy, framework",
"published": true,
"editor": "markdown",
"date": "2025-02-12T16:47:32.477Z",
"dateCreated": "2025-02-12T16:47:32.477Z"
}
},
{
"name": "blueprint-sitemap.md",
"type": "file",
"path": "blueprint/blueprint-sitemap.md",
"children": [],
"metadata": {
"description": "A proposal to shift healthcare focus from treating diseases to preventing and curing them, with a plan involving global participation and legislative change.",
"emoji": "🌍",
"title": "Blueprint for a World Without Disease",
"tags": "healthcare-reform, disease-prevention, global-initiatives, public-health",
"published": true,
"editor": "markdown",
"date": "2025-02-12T16:50:24.919Z",
"dateCreated": "2025-02-12T16:50:24.919Z"
}
},
{
"name": "blueprint-strategy.md",
"type": "file",
"path": "blueprint/blueprint-strategy.md",
"children": [],
"metadata": {
"description": "A strategy for reducing disease by collecting global health data, empowering patient choice, incentivizing cures, and involving all stakeholders.",
"emoji": "🌍",
"title": "Strategy for a World Without Disease",
"tags": "global-health, data-collection, patient-empowerment, disease-prevention, healthcare-innovation",
"published": true,
"editor": "markdown",
"date": "2025-02-12T16:50:31.159Z",
"dateCreated": "2025-02-12T16:50:31.159Z"
}
},
{
"name": "blueprint-summary.md",
"type": "file",
"path": "blueprint/blueprint-summary.md",
"children": [],
"metadata": {
"description": "An overview of the unnecessary suffering caused by current healthcare and regulatory systems, highlighting specific examples of preventable pain and disease.",
"emoji": "🚫",
"title": "Creating a World Without Disease",
"tags": "healthcare, regulatory-systems, disease-prevention, FDA",
"published": true,
"editor": "markdown",
"date": "2025-02-12T16:50:53.964Z",
"dateCreated": "2025-02-12T16:50:53.964Z"
}
},
{
"name": "blueprint.md",
"type": "file",
"path": "blueprint/blueprint.md",
"children": [],
"metadata": {
"description": "Analysis of the preventable suffering caused by systemic issues in healthcare and drug development",
"emoji": "🩺",
"title": "Creating a World Without Disease",
"tags": "healthcare, drug-development, regulatory-system, disease-prevention",
"published": true,
"editor": "markdown",
"date": "2025-02-12T16:51:17.425Z",
"dateCreated": "2025-02-12T16:51:17.425Z"
}
}
]
},
{
"name": "clinical-trials",
"type": "directory",
"path": "clinical-trials",
"children": [
{
"name": "decentralized-methods",
"type": "directory",
"path": "clinical-trials/decentralized-methods",
"children": [
{
"name": "desci-ai-dao.md",
"type": "file",
"path": "clinical-trials/decentralized-methods/desci-ai-dao.md",
"children": [],
"metadata": {
"title": "DeSci DAO AI Agent Framework",
"description": "How to create a truly autonomous DAO that actually accelerates scientific progress",
"published": true,
"date": "2023-07-23T19:59:32.942Z",
"tags": "dao, ai, automation, desci",
"editor": "markdown",
"dateCreated": "2023-07-22T20:42:01.243Z"
}
}
]
},
{
"name": "methodologies",
"type": "directory",
"path": "clinical-trials/methodologies",
"children": [
{
"name": "definitions.md",
"type": "file",
"path": "clinical-trials/methodologies/definitions.md",
"children": [],
"metadata": {
"description": "Precise definitions of relevant terms used",
"emoji": "📚",
"title": "📖Key Definitions",
"tags": "healthcare, interventions, efficacy, effectiveness, definitions",
"published": true,
"editor": "markdown",
"date": "2022-07-26T02:40:33.718Z",
"dateCreated": "2022-07-22T19:05:03.787Z"
}
}
]
},
{
"name": "protocols",
"type": "directory",
"path": "clinical-trials/protocols",
"children": [
{
"name": "crowdsourcing-longevity-research.md",
"type": "file",
"path": "clinical-trials/protocols/crowdsourcing-longevity-research.md",
"children": [],
"metadata": {
"title": "Experimental Protocol for Crowdsourcing Longevity Research",
"description": "An experimental protocol for crowdsourcing longevity research for a random intervention and collecting outcome data to characterize the participant's overall health status using affordable and valuable collection methods",
"published": true,
"date": "2023-06-21T04:49:22.560Z",
"tags": "longevity, experimental protocols",
"editor": "markdown",
"dateCreated": "2023-06-21T04:49:22.560Z"
}
}
]
}
]
},
{
"name": "community",
"type": "directory",
"path": "community",
"children": [
{
"name": "CONTRIBUTING.md",
"type": "file",
"path": "community/CONTRIBUTING.md",
"children": [],
"metadata": {
"description": "Guidelines for contributing to the Community Directory, including steps for getting started and making contributions via pull requests.",
"emoji": "🤝",
"title": "Contributing to the Community Directory",
"tags": "dFDA, community-directory, contributing, open-source",
"published": true,
"editor": "markdown",
"date": "2025-02-12T16:51:44.377Z",
"dateCreated": "2025-02-12T16:51:44.377Z"
}
},
{
"name": "README.md",
"type": "file",
"path": "community/README.md",
"children": [],
"metadata": {
"description": "A directory to facilitate collaboration among stakeholders in the project",
"emoji": "👥",
"title": "Community Directory",
"tags": "dFDA, community, collaboration, decentralized-health, regulatory-processes",
"published": true,
"editor": "markdown",
"date": "2025-02-12T16:52:13.974Z",
"dateCreated": "2025-02-12T16:52:13.974Z"
}
},
{
"name": "community_volunteers",
"type": "directory",
"path": "community/community_volunteers",
"children": [
{
"name": "README.md",
"type": "file",
"path": "community/community_volunteers/README.md",
"children": [],
"metadata": {
"description": "A directory for community volunteers contributing to the project, providing resources and guidance for involvement.",
"emoji": "🤝",
"title": "Community Volunteers Directory",
"tags": "volunteers, community, contribution",
"published": true,
"editor": "markdown",
"date": "2025-02-12T16:51:40.444Z",
"dateCreated": "2025-02-12T16:51:40.444Z"
}
}
]
},
{
"name": "developers",
"type": "directory",
"path": "community/developers",
"children": [
{
"name": "README.md",
"type": "file",
"path": "community/developers/README.md",
"children": [],
"metadata": {
"description": "A directory for developers, data scientists, and AI experts contributing to the technical development of the project.",
"emoji": "💻",
"title": "Developers Directory",
"tags": "developers, software, data-science, AI, community",
"published": true,
"editor": "markdown",
"date": "2025-02-12T16:51:47.494Z",
"dateCreated": "2025-02-12T16:51:47.494Z"
}
}
]
},
{
"name": "funding_sources",
"type": "directory",
"path": "community/funding_sources",
"children": [
{
"name": "README.md",
"type": "file",
"path": "community/funding_sources/README.md",
"children": [],
"metadata": {
"description": "A directory for funding sources interested in supporting initiatives within the project, providing information on funding opportunities and facilitating connections between funders and project teams.",
"emoji": "💰",
"title": "Funding Sources Directory",
"tags": "funding, investors, philanthropy, grants",
"published": true,
"editor": "markdown",
"date": "2025-02-12T16:51:51.033Z",
"dateCreated": "2025-02-12T16:51:51.033Z"
}
}
]
},
{
"name": "governance",
"type": "directory",
"path": "community/governance",
"children": [
{
"name": "dfda-collaboration-framework.md",
"type": "file",
"path": "community/governance/dfda-collaboration-framework.md",
"children": [],
"metadata": {
"description": "A coordination framework for facilitating cooperation, communication, and collaborative actions among stakeholders in clinical discovery and health outcomes.",
"emoji": "🤝",
"title": "dFDA Collaboration Framework",
"tags": "coordination-framework, clinical-discovery, stakeholder-collaboration, health-outcomes",
"published": true,
"editor": "markdown",
"date": "2023-10-28T22:44:51.813Z",
"dateCreated": "2023-10-28T22:42:49.138Z"
}
}
]
},
{
"name": "healthcare_providers",
"type": "directory",
"path": "community/healthcare_providers",
"children": [
{
"name": "README.md",
"type": "file",
"path": "community/healthcare_providers/README.md",
"children": [],
"metadata": {
"description": "A directory for healthcare providers including hospitals, clinics, and health apps involved in the project",
"emoji": "🏥",
"title": "Healthcare Providers Directory",
"tags": "healthcare-providers, community-directory, collaboration",
"published": true,
"editor": "markdown",
"date": "2025-02-12T16:51:55.194Z",
"dateCreated": "2025-02-12T16:51:55.194Z"
}
}
]
},
{
"name": "industry_stakeholders",
"type": "directory",
"path": "community/industry_stakeholders",
"children": [
{
"name": "README.md",
"type": "file",
"path": "community/industry_stakeholders/README.md",
"children": [],
"metadata": {
"description": "A directory for industry stakeholders including pharmaceutical companies, insurance companies, biotech firms, and medical device manufacturers contributing to the project.",
"emoji": "👥",
"title": "Industry Stakeholders Directory",
"tags": "fda-community, stakeholders, pharmaceuticals, biotech, medical-devices, insurance, decentralized-fda",
"published": true,
"editor": "markdown",
"date": "2025-02-12T16:51:58.855Z",
"dateCreated": "2025-02-12T16:51:58.855Z"
}
}
]
},
{
"name": "open-source-projects",
"type": "directory",
"path": "community/open-source-projects",
"children": [
{
"name": "open-source-projects.md",
"type": "file",
"path": "community/open-source-projects/open-source-projects.md",
"children": [],
"metadata": {
"description": "A list of open-source projects aimed at accelerating clinical discovery relevant to the dFDA's mission.",
"emoji": "💻",
"title": "Open Source Projects for Clinical Discovery",
"tags": "open-source, clinical-discovery, projects",
"published": true,
"editor": "markdown",
"date": "2025-02-12T16:52:01.808Z",
"dateCreated": "2025-02-12T16:52:01.808Z"
}
}
]
},
{
"name": "opencures.md",
"type": "file",
"path": "community/opencures.md",
"children": [],
"metadata": {
"description": "OpenCures is a platform that accelerates intervention development by empowering individuals with advanced personal health management tools and connecting them to research through data ownership, biobanking, and trial management services.",
"emoji": "🩸",
"title": "OpenCures",
"tags": "health-data, biobanking, clinical-trials, personal-health-management, research",
"published": true,
"editor": "markdown",
"date": "2022-08-26T20:24:32.745Z",
"dateCreated": "2022-07-27T21:22:28.927Z"
}
},
{
"name": "partners",
"type": "directory",
"path": "community/partners",
"children": [
{
"name": "README.md",
"type": "file",
"path": "community/partners/README.md",
"children": [],
"metadata": {
"description": "A directory for partners involved in the project, providing a space for organizations to introduce themselves, share their roles, and facilitate collaboration.",
"emoji": "🤝",
"title": "Partners Directory",
"tags": "partners, collaboration, community-directory",
"published": true,
"editor": "markdown",
"date": "2025-02-12T16:52:04.915Z",
"dateCreated": "2025-02-12T16:52:04.915Z"
}
},
{
"name": "ageless-partners.md",
"type": "file",
"path": "community/partners/ageless-partners.md",
"children": [],
"metadata": {
"description": "Ageless Partners LLC is a research company focused on developing machine learning and AI innovations for analyzing complex datasets to reverse aging and advance anti-aging medical science.",
"emoji": "evity",
"title": "ageless-partners",
"tags": "anti-aging, machine-learning, artificial-intelligence, personalized-medicine, healthcare, research",
"published": true,
"editor": "markdown",
"date": "2022-09-01T10:52:19.940Z",
"dateCreated": "2022-07-27T21:22:20.859Z"
}
}
]
},
{
"name": "patient_advocacy",
"type": "directory",
"path": "community/patient_advocacy",
"children": [
{
"name": "README.md",
"type": "file",
"path": "community/patient_advocacy/README.md",
"children": [],
"metadata": {
"description": "A directory for patient advocacy groups and NGOs to share information, resources, and collaborate within the Community Directory.",
"emoji": "🤝",
"title": "Patient Advocacy Directory",
"tags": "patient-advocacy, NGOs, community-directory, collaboration",
"published": true,
"editor": "markdown",
"date": "2025-02-12T16:52:08.134Z",
"dateCreated": "2025-02-12T16:52:08.134Z"
}
},
{
"name": "crowdsourcing-cures.md",
"type": "file",
"path": "community/patient_advocacy/crowdsourcing-cures.md",
"children": [],
"metadata": {
"description": "Exploration of the societal and financial costs of neurological disorders and mental illnesses, emphasizing the potential benefits of redirecting wasted resources towards solving global issues.",
"emoji": "🧠",
"title": "Crowdsourcing Cures",
"tags": "neurological-disorders, mental-health, societal-costs, resource-allocation",
"published": true,
"editor": "markdown",
"date": "2022-08-26T19:04:23.080Z",
"dateCreated": "2022-07-27T21:22:24.826Z"
}
}
]
},
{
"name": "projects",
"type": "directory",
"path": "community/projects",
"children": [
{
"name": "README.md",
"type": "file",
"path": "community/projects/README.md",
"children": [],
"metadata": {
"description": "A directory of projects within the dFDA initiative, providing descriptions, requirements, and collaboration opportunities.",
"emoji": "📚",
"title": "projects Directory",
"tags": "dFDA, projects, collaboration, community",
"published": true,
"editor": "markdown",
"date": "2025-02-12T16:52:10.998Z",
"dateCreated": "2025-02-12T16:52:10.998Z"
}
}
]
},
{
"name": "regulatory_legal",
"type": "directory",
"path": "community/regulatory_legal",
"children": [
{
"name": "README.md",
"type": "file",
"path": "community/regulatory_legal/README.md",
"children": [],
"metadata": {
"description": "Directory for regulatory and legal partners involved in healthcare and pharmaceuticals, focusing on sharing insights and collaborating on legal frameworks for decentralized health technologies.",
"emoji": "📚",
"title": "Regulatory and Legal Partners Directory",
"tags": "regulatory, legal, healthcare, pharmaceuticals, decentralized-health, dFDA",
"published": true,
"editor": "markdown",
"date": "2025-02-12T16:52:17.592Z",
"dateCreated": "2025-02-12T16:52:17.592Z"
}
}
]
},
{
"name": "researchers",
"type": "directory",
"path": "community/researchers",
"children": [
{
"name": "README.md",
"type": "file",
"path": "community/researchers/README.md",
"children": [],
"metadata": {
"description": "A directory for academic and medical researchers contributing to the dFDA project, facilitating collaboration and resource sharing.",
"emoji": "📚",
"title": "Researchers Directory",
"tags": "researchers, collaboration, resources",
"published": true,
"editor": "markdown",
"date": "2025-02-12T16:52:20.436Z",
"dateCreated": "2025-02-12T16:52:20.436Z"
}
}
]
},
{
"name": "resources",
"type": "directory",
"path": "community/resources",
"children": [
{
"name": "README.md",
"type": "file",
"path": "community/resources/README.md",
"children": [],
"metadata": {
"description": "Central hub for shared resources, guides, tools, documentation, coding standards, and data handling protocols for the project",
"emoji": "📚",
"title": "Resources Directory for dFDA",
"tags": "dFDA, resources, guides, tools, documentation, coding-standards, data-handling",
"published": true,
"editor": "markdown",
"date": "2025-02-12T16:52:23.865Z",
"dateCreated": "2025-02-12T16:52:23.865Z"
}
}
]
},
{
"name": "templates",
"type": "directory",
"path": "community/templates",
"children": [
{
"name": "open_source_project.md",
"type": "file",
"path": "community/templates/open_source_project.md",
"children": [],
"metadata": {
"description": "An open-source project with details on its repository, license, features, contribution guidelines, donation information, and contact details.",
"emoji": "🌟",
"title": "Open-Source Project Overview",
"tags": "open-source, github, contribution, donation, project-management",
"published": true,
"editor": "markdown",
"date": "2025-02-12T16:52:27.046Z",
"dateCreated": "2025-02-12T16:52:27.046Z"
}
},
{
"name": "partner_introduction.md",
"type": "file",
"path": "community/templates/partner_introduction.md",
"children": [],
"metadata": {
"description": "A template for partners to introduce themselves in the Community Directory",
"emoji": "🤝",
"title": "Partner Introduction Template",
"tags": "community, partners, template, collaboration",
"published": true,
"editor": "markdown",
"date": "2025-02-12T16:52:29.661Z",
"dateCreated": "2025-02-12T16:52:29.661Z"
}
},
{
"name": "project_proposal.md",
"type": "file",
"path": "community/templates/project_proposal.md",
"children": [],
"metadata": {
"description": "A template for structuring project proposals for the Community Directory, guiding contributors to provide detailed information about their initiatives.",
"emoji": "📋",
"title": "project Proposal Template",
"tags": "fda-community, project-proposals, template, guidelines",
"published": true,
"editor": "markdown",
"date": "2025-02-12T16:52:32.792Z",
"dateCreated": "2025-02-12T16:52:32.792Z"
}
}
]
},
{
"name": "weavechain.md",
"type": "file",
"path": "community/weavechain.md",
"children": [],
"metadata": {
"title": "Weavechain",
"description": "Weavechain seamlessly integrates into your existing setup and gives your data the power of Web3.",
"published": true,
"date": "2023-05-22T22:04:58.375Z",
"tags": "data sharing, data security, 1st party analytics, data monetization, data lineage",
"editor": "markdown",
"dateCreated": "2022-11-18T02:41:12.412Z"
}
}
]
},
{
"name": "conditions",
"type": "directory",
"path": "conditions",
"children": [
{
"name": "scabies.md",
"type": "file",
"path": "conditions/scabies.md",
"children": [],
"metadata": {
"title": "Scabies",
"description": "Scabies is a parasitic skin infestation caused by the mite *Sarcoptes scabiei* that affects millions of people worldwide. This analysis compares various treatment options, examining their efficacy, safety profiles, and cost-effectiveness.",
"published": true,
"date": "2025-01-22T08:07:55.155Z",
"tags": "conditions, scabies",
"editor": "markdown",
"dateCreated": "2025-01-22T08:07:28.742Z"
}
}
]
},
{
"name": "dfda-sitemap.md",
"type": "file",
"path": "dfda-sitemap.md",
"children": [],
"metadata": {
"description": "Overview of top-level pages for the dFDA wiki, including Home, About, Get Involved, and Treatments & Rankings sections.",
"emoji": "📚",
"title": "dFDA Top-Level Pages",
"tags": "dfda, wiki-structure, decentralized-fda, treatments, rankings",
"published": true,
"editor": "markdown",
"date": "2025-02-12T16:53:35.481Z",
"dateCreated": "2025-02-12T16:53:35.481Z"
}
},
{
"name": "disease-eradication-act",
"type": "directory",
"path": "disease-eradication-act",
"children": [
{
"name": "disease-eradication-act-cost-benefit-analysis.md",
"type": "file",
"path": "disease-eradication-act/disease-eradication-act-cost-benefit-analysis.md",
"children": [],
"metadata": {
"description": "Quantitative analysis of the economic impacts of the Disease Eradication Act, estimating up to $2.25 trillion in annual benefits with costs around $10 billion.",
"emoji": "📊",
"title": "Quantitative Cost-Benefit Analysis of the Disease Eradication Act",
"tags": "disease-eradication-act, cost-benefit-analysis, healthcare-policy, economic-impact",
"published": true,
"editor": "markdown",
"date": "2025-02-12T16:53:39.410Z",
"dateCreated": "2025-02-12T16:53:39.410Z"
}
},
{
"name": "disease-eradication-act-details.md",
"type": "file",
"path": "disease-eradication-act/disease-eradication-act-details.md",
"children": [],
"metadata": {
"description": "Legislation aiming to reform the FDA approval process by addressing delays, accessibility issues, and high costs in drug development.",
"emoji": "🏥",
"title": "Disease Eradication Act",
"tags": "FDA-reform, drug-development, clinical-trials, health-policy, legislation",
"published": true,
"editor": "markdown",
"date": "2025-02-12T16:53:42.927Z",
"dateCreated": "2025-02-12T16:53:42.927Z"
}
},
{
"name": "disease-eradication-act-summary.md",
"type": "file",
"path": "disease-eradication-act/disease-eradication-act-summary.md",
"children": [],
"metadata": {
"description": "Executive summary of the Disease Eradication Act, focusing on patient rights, decentralized trials, and reducing costs in drug development.",
"emoji": "💖",
"title": "Disease Eradication Act: Executive Summary",
"tags": "decentralized-trials, patient-rights, drug-development, cost-reduction, FDA-reform",
"published": true,
"editor": "markdown",
"date": "2025-02-12T16:53:46.416Z",
"dateCreated": "2025-02-12T16:53:46.416Z"
}
},
{
"name": "disease-eradication-act.md",
"type": "file",
"path": "act.md",
"children": [],
"metadata": {
"description": "The Disease Eradication Act aims to address systemic issues in healthcare, including bureaucratic delays, high drug development costs, limited clinical trial access, and focus on expensive treatments.",
"emoji": "💖",
"title": "Disease Eradication Act",
"tags": "healthcare-reform, clinical-trials, drug-development, policy, regulatory",
"published": true,
"editor": "markdown",
"date": "2025-02-12T16:56:04.572Z",
"dateCreated": "2025-02-12T16:56:04.572Z"
}
}
]
},
{
"name": "economic-models",
"type": "directory",
"path": "economic-models",
"children": [
{
"name": "benfits-of-over-the-counter-classification.md",
"type": "file",
"path": "economic-models/benfits-of-over-the-counter-classification.md",
"children": [],
"metadata": {
"title": "Economic Impact of Prescription-Only Classification for Safe Drugs",
"description": "Many safe medications remain prescription-only, imposing unnecessary costs and barriers on patients despite potential savings of $146 billion annually through over-the-counter alternatives.",