atomic_lib 0.41.0-beta.3

Library for creating, storing, querying, validating and converting Atomic Data.
Documentation
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
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
[
  {
    "@id": "https://atomicdata.dev",
    "https://atomicdata.dev/properties/read": [
      "https://atomicdata.dev/agents/publicAgent"
    ],
    "https://atomicdata.dev/properties/classtype": "https://atomicdata.dev/classes/Drive"
  },
  {
    "@id": "https://atomicdata.dev/properties",
    "https://atomicdata.dev/properties/parent": "https://atomicdata.dev"
  },
  {
    "@id": "https://atomicdata.dev/classes",
    "https://atomicdata.dev/properties/parent": "https://atomicdata.dev"
  },
  {
    "@id": "https://atomicdata.dev/datatypes",
    "https://atomicdata.dev/properties/parent": "https://atomicdata.dev"
  },
  {
    "@id": "https://atomicdata.dev/properties/endpoint/parameters",
    "https://atomicdata.dev/properties/classtype": "https://atomicdata.dev/classes/Property",
    "https://atomicdata.dev/properties/datatype": "https://atomicdata.dev/datatypes/resourceArray",
    "https://atomicdata.dev/properties/parent": "https://atomicdata.dev/properties",
    "https://atomicdata.dev/properties/description": "The query parameters of the endpoint",
    "https://atomicdata.dev/properties/isA": [
      "https://atomicdata.dev/classes/Property"
    ],
    "https://atomicdata.dev/properties/shortname": "parameters"
  },
  {
    "@id": "https://atomicdata.dev/properties/endpoint/results",
    "https://atomicdata.dev/properties/isDynamic": true,
    "https://atomicdata.dev/properties/datatype": "https://atomicdata.dev/datatypes/resourceArray",
    "https://atomicdata.dev/properties/parent": "https://atomicdata.dev/properties",
    "https://atomicdata.dev/properties/description": "The results of the endpoint",
    "https://atomicdata.dev/properties/isA": [
      "https://atomicdata.dev/classes/Property"
    ],
    "https://atomicdata.dev/properties/shortname": "results"
  },
  {
    "@id": "https://atomicdata.dev/properties/endpoint/isPost",
    "https://atomicdata.dev/properties/datatype": "https://atomicdata.dev/datatypes/boolean",
    "https://atomicdata.dev/properties/parent": "https://atomicdata.dev/properties",
    "https://atomicdata.dev/properties/description": "If true, this endpoint expects a POST request. The UI will submit params via POST instead of navigating to a GET URL.",
    "https://atomicdata.dev/properties/isA": [
      "https://atomicdata.dev/classes/Property"
    ],
    "https://atomicdata.dev/properties/shortname": "is-post"
  },
  {
    "@id": "https://atomicdata.dev/properties/name",
    "https://atomicdata.dev/properties/datatype": "https://atomicdata.dev/datatypes/string",
    "https://atomicdata.dev/properties/description": "The name of a thing or person.",
    "https://atomicdata.dev/properties/parent": "https://atomicdata.dev/properties",
    "https://atomicdata.dev/properties/isA": [
      "https://atomicdata.dev/classes/Property"
    ],
    "https://atomicdata.dev/properties/shortname": "name"
  },
  {
    "@id": "https://atomicdata.dev/properties/search/query",
    "https://atomicdata.dev/properties/datatype": "https://atomicdata.dev/datatypes/string",
    "https://atomicdata.dev/properties/description": "A full-text search query. \n\nFor all features, see [the Tantivy docs](https://docs.rs/tantivy/0.16.1/tantivy/query/struct.QueryParser.html)",
    "https://atomicdata.dev/properties/parent": "https://atomicdata.dev/properties",
    "https://atomicdata.dev/properties/isA": [
      "https://atomicdata.dev/classes/Property"
    ],
    "https://atomicdata.dev/properties/name": "Full-text search query",
    "https://atomicdata.dev/properties/shortname": "q"
  },
  {
    "@id": "https://atomicdata.dev/properties/search/limit",
    "https://atomicdata.dev/properties/datatype": "https://atomicdata.dev/datatypes/integer",
    "https://atomicdata.dev/properties/description": "Maximum number of search results.",
    "https://atomicdata.dev/properties/parent": "https://atomicdata.dev/properties",
    "https://atomicdata.dev/properties/isA": [
      "https://atomicdata.dev/classes/Property"
    ],
    "https://atomicdata.dev/properties/shortname": "limit"
  },
  {
    "@id": "https://atomicdata.dev/properties/search/property",
    "https://atomicdata.dev/properties/datatype": "https://atomicdata.dev/datatypes/atomicURL",
    "https://atomicdata.dev/properties/description": "Filter results by this property URL.",
    "https://atomicdata.dev/properties/parent": "https://atomicdata.dev/properties",
    "https://atomicdata.dev/properties/isA": [
      "https://atomicdata.dev/classes/Property"
    ],
    "https://atomicdata.dev/properties/classtype": "https://atomicdata.dev/classes/Property",
    "https://atomicdata.dev/properties/shortname": "property"
  },
  {
    "@id": "https://atomicdata.dev/properties/setup/reset",
    "https://atomicdata.dev/properties/datatype": "https://atomicdata.dev/datatypes/boolean",
    "https://atomicdata.dev/properties/description": "If true, resets the server's onboarding state for the current host, clearing the drive mapping. Intended for development use.",
    "https://atomicdata.dev/properties/parent": "https://atomicdata.dev/properties",
    "https://atomicdata.dev/properties/isA": [
      "https://atomicdata.dev/classes/Property"
    ],
    "https://atomicdata.dev/properties/name": "Reset onboarding",
    "https://atomicdata.dev/properties/shortname": "reset"
  },
  {
    "@id": "https://atomicdata.dev/properties/isDynamic",
    "https://atomicdata.dev/properties/datatype": "https://atomicdata.dev/datatypes/boolean",
    "https://atomicdata.dev/properties/description": "If this is true, a Property is calculated server side and should therefore not appear in forms.",
    "https://atomicdata.dev/properties/isA": [
      "https://atomicdata.dev/classes/Property"
    ],
    "https://atomicdata.dev/properties/parent": "https://atomicdata.dev/properties",
    "https://atomicdata.dev/properties/shortname": "is-dynamic"
  },
  {
    "@id": "https://atomicdata.dev/properties/isGenesis",
    "https://atomicdata.dev/properties/datatype": "https://atomicdata.dev/datatypes/boolean",
    "https://atomicdata.dev/properties/description": "If true, this is the first Commit for the target resource and there is no previous commit. Required for resources with a `did:ad:` subject, where the subject is derived from the genesis commit signature. The `subject` field is excluded from the signed bytes for genesis commits (it is the signature itself), but `isGenesis` is included in the signed bytes so both sides sign and verify the same content.",
    "https://atomicdata.dev/properties/isA": [
      "https://atomicdata.dev/classes/Property"
    ],
    "https://atomicdata.dev/properties/parent": "https://atomicdata.dev/properties",
    "https://atomicdata.dev/properties/shortname": "is-genesis"
  },
  {
    "@id": "https://atomicdata.dev/properties/atom/property",
    "https://atomicdata.dev/properties/datatype": "https://atomicdata.dev/datatypes/atomicURL",
    "https://atomicdata.dev/properties/description": "The property of an Atom is the relationship between the resource (subject) and the value. For example, in the sentence `john is born in 1991`, the property is `is born in`.",
    "https://atomicdata.dev/properties/parent": "https://atomicdata.dev/properties",
    "https://atomicdata.dev/properties/isA": [
      "https://atomicdata.dev/classes/Property"
    ],
    "https://atomicdata.dev/properties/classtype": "https://atomicdata.dev/classes/Property",
    "https://atomicdata.dev/properties/shortname": "property"
  },
  {
    "@id": "https://atomicdata.dev/properties/atom/subject",
    "https://atomicdata.dev/properties/datatype": "https://atomicdata.dev/datatypes/atomicURL",
    "https://atomicdata.dev/properties/description": "The subject of an Atom is the (URL of the) Resource that is being described. For example, in the sentence `john is born in 1991`, the subject is `john`.",
    "https://atomicdata.dev/properties/parent": "https://atomicdata.dev/properties",
    "https://atomicdata.dev/properties/isA": [
      "https://atomicdata.dev/classes/Property"
    ],
    "https://atomicdata.dev/properties/shortname": "subject"
  },
  {
    "@id": "https://atomicdata.dev/properties/atom/value",
    "https://atomicdata.dev/properties/datatype": "https://atomicdata.dev/datatypes/string",
    "https://atomicdata.dev/properties/description": "The value of an Atom is the actual content of the information that is being described. For example, in the sentence `john is born in 1991`, the value is `1991`. When you use this property, the datatype is always a String, even if the actual property would set something different.",
    "https://atomicdata.dev/properties/parent": "https://atomicdata.dev/properties",
    "https://atomicdata.dev/properties/isA": [
      "https://atomicdata.dev/classes/Property"
    ],
    "https://atomicdata.dev/properties/shortname": "value"
  },
  {
    "@id": "https://atomicdata.dev/properties/append",
    "https://atomicdata.dev/properties/classtype": "https://atomicdata.dev/classes/Agent",
    "https://atomicdata.dev/properties/datatype": "https://atomicdata.dev/datatypes/resourceArray",
    "https://atomicdata.dev/properties/parent": "https://atomicdata.dev/properties",
    "https://atomicdata.dev/properties/description": "The agents that create new child Resources for this one. This is more strict then [write](https://atomicdata.dev/properties/append), as it only allows for creating Resources that have the current one as their parent.",
    "https://atomicdata.dev/properties/isA": [
      "https://atomicdata.dev/classes/Property"
    ],
    "https://atomicdata.dev/properties/shortname": "append"
  },
  {
    "@id": "https://atomicdata.dev/properties/auth/agent",
    "https://atomicdata.dev/properties/classtype": "https://atomicdata.dev/classes/Agent",
    "https://atomicdata.dev/properties/datatype": "https://atomicdata.dev/datatypes/atomicURL",
    "https://atomicdata.dev/properties/description": "The Agent making the signature.",
    "https://atomicdata.dev/properties/isA": [
      "https://atomicdata.dev/classes/Property"
    ],
    "https://atomicdata.dev/properties/parent": "https://atomicdata.dev/properties",
    "https://atomicdata.dev/properties/shortname": "agent"
  },
  {
    "@id": "https://atomicdata.dev/properties/auth/requestedSubject",
    "https://atomicdata.dev/properties/datatype": "https://atomicdata.dev/datatypes/string",
    "https://atomicdata.dev/properties/description": "The URL of the requested resource.\n\n- If we're authenticating a WebSocket, we use the wss address as the requestedSubject. (e.g. `wss://example.com/ws`)\n- If we're authenticating a Cookie, we use the origin of the server (e.g. `https://example.com`)\n- If we're authentication a single HTTP request, use the same URL as the GET address (e.g. `https://example.com/myResource`)\n",
    "https://atomicdata.dev/properties/isA": [
      "https://atomicdata.dev/classes/Property"
    ],
    "https://atomicdata.dev/properties/parent": "https://atomicdata.dev/properties",
    "https://atomicdata.dev/properties/shortname": "requested-subject"
  },
  {
    "@id": "https://atomicdata.dev/properties/auth/publicKey",
    "https://atomicdata.dev/properties/datatype": "https://atomicdata.dev/datatypes/string",
    "https://atomicdata.dev/properties/description": "The base64 serialized ED25519 public key of the agent setting the signature.",
    "https://atomicdata.dev/properties/isA": [
      "https://atomicdata.dev/classes/Property"
    ],
    "https://atomicdata.dev/properties/parent": "https://atomicdata.dev/properties",
    "https://atomicdata.dev/properties/shortname": "public-key"
  },
  {
    "@id": "https://atomicdata.dev/properties/auth/signedAt",
    "https://atomicdata.dev/properties/datatype": "https://atomicdata.dev/datatypes/timestamp",
    "https://atomicdata.dev/properties/description": "When the signature was created",
    "https://atomicdata.dev/properties/isA": [
      "https://atomicdata.dev/classes/Property"
    ],
    "https://atomicdata.dev/properties/parent": "https://atomicdata.dev",
    "https://atomicdata.dev/properties/shortname": "signed-at"
  },
  {
    "@id": "https://atomicdata.dev/properties/auth/signature",
    "https://atomicdata.dev/properties/datatype": "https://atomicdata.dev/datatypes/string",
    "https://atomicdata.dev/properties/description": "A base64 serialized signature of the string `{requestedSubject} {timestamp}`, using the `privateKey` of the Agent, using ed25519 encryption.",
    "https://atomicdata.dev/properties/isA": [
      "https://atomicdata.dev/classes/Property"
    ],
    "https://atomicdata.dev/properties/parent": "https://atomicdata.dev",
    "https://atomicdata.dev/properties/shortname": "signature"
  },
  {
    "@id": "https://atomicdata.dev/properties/drives",
    "https://atomicdata.dev/properties/classtype": "https://atomicdata.dev/classes/Drive",
    "https://atomicdata.dev/properties/datatype": "https://atomicdata.dev/datatypes/resourceArray",
    "https://atomicdata.dev/properties/parent": "https://atomicdata.dev/properties",
    "https://atomicdata.dev/properties/description": "The set of Drives that the user often will want to access. Note that this list does not necessarily imply any read / write rights. This list is used to show a dropdown for Users to quickly switch between their Drives / workspaces.",
    "https://atomicdata.dev/properties/isA": [
      "https://atomicdata.dev/classes/Property"
    ],
    "https://atomicdata.dev/properties/shortname": "drives"
  },
  {
    "@id": "https://atomicdata.dev/properties/personalDrive",
    "https://atomicdata.dev/properties/classtype": "https://atomicdata.dev/classes/Drive",
    "https://atomicdata.dev/properties/datatype": "https://atomicdata.dev/datatypes/atomicURL",
    "https://atomicdata.dev/properties/parent": "https://atomicdata.dev/properties",
    "https://atomicdata.dev/properties/description": "The agent's personal (private) drive on this server. Clients resolve this from the agent DID to use as home, shared-with-me roots, and other per-agent data. At most one per agent.",
    "https://atomicdata.dev/properties/isA": [
      "https://atomicdata.dev/classes/Property"
    ],
    "https://atomicdata.dev/properties/shortname": "personal-drive"
  },
  {
    "@id": "https://atomicdata.dev/properties/sharedWithMe",
    "https://atomicdata.dev/properties/datatype": "https://atomicdata.dev/datatypes/resourceArray",
    "https://atomicdata.dev/properties/parent": "https://atomicdata.dev/properties",
    "https://atomicdata.dev/properties/description": "Resources this agent can access via invites or other shares. Clients often show these in a Shared with me list.",
    "https://atomicdata.dev/properties/isA": [
      "https://atomicdata.dev/classes/Property"
    ],
    "https://atomicdata.dev/properties/shortname": "shared-with-me"
  },
  {
    "@id": "https://atomicdata.dev/properties/favorites",
    "https://atomicdata.dev/properties/datatype": "https://atomicdata.dev/datatypes/resourceArray",
    "https://atomicdata.dev/properties/parent": "https://atomicdata.dev/properties",
    "https://atomicdata.dev/properties/description": "Resources the agent has favorited for quick access. A curated list of references to resources that may live on any drive. Clients often show these in a Favorites list.",
    "https://atomicdata.dev/properties/isA": [
      "https://atomicdata.dev/classes/Property"
    ],
    "https://atomicdata.dev/properties/shortname": "favorites"
  },
  {
    "@id": "https://atomicdata.dev/properties/availableDomains",
    "https://atomicdata.dev/properties/datatype": "https://atomicdata.dev/datatypes/resourceArray",
    "https://atomicdata.dev/properties/description": "The set of domains where this resource should be available. Allows multi-server accessibility while maintaining DID identity. If this is concerns a `did:ad:` resource, it will be available on the `/did` endpoint of that domain.",
    "https://atomicdata.dev/properties/parent": "https://atomicdata.dev/properties",
    "https://atomicdata.dev/properties/isA": [
      "https://atomicdata.dev/classes/Property"
    ],
    "https://atomicdata.dev/properties/shortname": "available-domains"
  },
  {
    "@id": "https://atomicdata.dev/properties/edit",
    "https://atomicdata.dev/properties/classtype": "https://atomicdata.dev/classes/Agent",
    "https://atomicdata.dev/properties/datatype": "https://atomicdata.dev/datatypes/atomicURL",
    "https://atomicdata.dev/properties/parent": "https://atomicdata.dev/properties",
    "https://atomicdata.dev/properties/description": "The Agents (users) who are allowed to edit this Resource and all children (those that have the current Resource as their parent).",
    "https://atomicdata.dev/properties/isA": [
      "https://atomicdata.dev/classes/Property"
    ],
    "https://atomicdata.dev/properties/shortname": "edit"
  },
  {
    "@id": "https://atomicdata.dev/properties/checksum",
    "https://atomicdata.dev/properties/datatype": "https://atomicdata.dev/datatypes/string",
    "https://atomicdata.dev/properties/description": "Base64 encoded SHA-256 checksum of a binary object.",
    "https://atomicdata.dev/properties/parent": "https://atomicdata.dev/properties",
    "https://atomicdata.dev/properties/isDynamic": true,
    "https://atomicdata.dev/properties/isA": [
      "https://atomicdata.dev/classes/Property"
    ],
    "https://atomicdata.dev/properties/shortname": "checksum"
  },
  {
    "@id": "https://atomicdata.dev/properties/blake3",
    "https://atomicdata.dev/properties/datatype": "https://atomicdata.dev/datatypes/string",
    "https://atomicdata.dev/properties/description": "A BLAKE3 hash of a file. Used for content-addressed storage and integrity verification.",
    "https://atomicdata.dev/properties/parent": "https://atomicdata.dev/properties",
    "https://atomicdata.dev/properties/isA": [
      "https://atomicdata.dev/classes/Property"
    ],
    "https://atomicdata.dev/properties/shortname": "blake3"
  },
  {
    "@id": "https://atomicdata.dev/properties/blob",
    "https://atomicdata.dev/properties/datatype": "https://atomicdata.dev/datatypes/atomicURL",
    "https://atomicdata.dev/properties/description": "Content-addressed reference to the file's bytes. Always a `did:ad:blob:{blake3-hex}` subject; the server (or any peer) resolves it to the raw bytes via `/download/files/{hash}` or the `BLOB_REQUEST`/`BLOB_RESPONSE` sync frames.",
    "https://atomicdata.dev/properties/parent": "https://atomicdata.dev/properties",
    "https://atomicdata.dev/properties/isA": [
      "https://atomicdata.dev/classes/Property"
    ],
    "https://atomicdata.dev/properties/shortname": "blob"
  },
  {
    "@id": "https://atomicdata.dev/properties/chunks",
    "https://atomicdata.dev/properties/datatype": "https://atomicdata.dev/datatypes/resourceArray",
    "https://atomicdata.dev/properties/description": "Ordered list of `did:ad:blob:{blake3-hex}` chunk references whose concatenation is the file's bytes. Present on files stored with content-defined chunking so a small edit re-writes only the changed chunks; when present it supersedes the single `blob`, and when absent the file is a single blob.",
    "https://atomicdata.dev/properties/parent": "https://atomicdata.dev/properties",
    "https://atomicdata.dev/properties/isA": [
      "https://atomicdata.dev/classes/Property"
    ],
    "https://atomicdata.dev/properties/shortname": "chunks"
  },
  {
    "@id": "https://atomicdata.dev/properties/filename",
    "https://atomicdata.dev/properties/datatype": "https://atomicdata.dev/datatypes/string",
    "https://atomicdata.dev/properties/description": "A filename does not contain strings, and ends with a dot and a file extension.",
    "https://atomicdata.dev/properties/parent": "https://atomicdata.dev/properties",
    "https://atomicdata.dev/properties/isA": [
      "https://atomicdata.dev/classes/Property"
    ],
    "https://atomicdata.dev/properties/shortname": "filename"
  },
  {
    "@id": "https://atomicdata.dev/properties/filesize",
    "https://atomicdata.dev/properties/datatype": "https://atomicdata.dev/datatypes/integer",
    "https://atomicdata.dev/properties/description": "Size of a file in bytes",
    "https://atomicdata.dev/properties/isDynamic": true,
    "https://atomicdata.dev/properties/parent": "https://atomicdata.dev/properties",
    "https://atomicdata.dev/properties/isA": [
      "https://atomicdata.dev/classes/Property"
    ],
    "https://atomicdata.dev/properties/shortname": "filesize"
  },
  {
    "@id": "https://atomicdata.dev/properties/mimetype",
    "https://atomicdata.dev/properties/datatype": "https://atomicdata.dev/datatypes/string",
    "https://atomicdata.dev/properties/description": "Mimetype of a file sets is the type of data that is stored in the file. See https://developer.mozilla.org/en-US/docs/Web/HTTP/Basics_of_HTTP/MIME_types",
    "https://atomicdata.dev/properties/isDynamic": true,
    "https://atomicdata.dev/properties/parent": "https://atomicdata.dev/properties",
    "https://atomicdata.dev/properties/isA": [
      "https://atomicdata.dev/classes/Property"
    ],
    "https://atomicdata.dev/properties/shortname": "mimetype"
  },
  {
    "@id": "https://atomicdata.dev/properties/internalId",
    "https://atomicdata.dev/properties/datatype": "https://atomicdata.dev/datatypes/string",
    "https://atomicdata.dev/properties/description": "An identifier used internally by the system.",
    "https://atomicdata.dev/properties/isDynamic": true,
    "https://atomicdata.dev/properties/parent": "https://atomicdata.dev/properties",
    "https://atomicdata.dev/properties/isA": [
      "https://atomicdata.dev/classes/Property"
    ],
    "https://atomicdata.dev/properties/shortname": "internal-id"
  },
  {
    "@id": "https://atomicdata.dev/properties/downloadURL",
    "https://atomicdata.dev/properties/datatype": "https://atomicdata.dev/datatypes/string",
    "https://atomicdata.dev/properties/description": "The URL where a file can be downloaded.",
    "https://atomicdata.dev/properties/isDynamic": true,
    "https://atomicdata.dev/properties/parent": "https://atomicdata.dev/properties",
    "https://atomicdata.dev/properties/isA": [
      "https://atomicdata.dev/classes/Property"
    ],
    "https://atomicdata.dev/properties/shortname": "download-url"
  },
  {
    "@id": "https://atomicdata.dev/properties/attachments",
    "https://atomicdata.dev/properties/datatype": "https://atomicdata.dev/datatypes/resourceArray",
    "https://atomicdata.dev/properties/classtype": "https://atomicdata.dev/classes/File",
    "https://atomicdata.dev/properties/description": "File attachments related to this Resource. This relationship can automatically be created by the `/upload` endpoint.",
    "https://atomicdata.dev/properties/parent": "https://atomicdata.dev/properties",
    "https://atomicdata.dev/properties/isA": [
      "https://atomicdata.dev/classes/Property"
    ],
    "https://atomicdata.dev/properties/shortname": "attachments"
  },
  {
    "@id": "https://atomicdata.dev/properties/children",
    "https://atomicdata.dev/properties/datatype": "https://atomicdata.dev/datatypes/resourceArray",
    "https://atomicdata.dev/properties/description": "The children of a Resource are the items that have this Resource set as Parent. Children are 'below' their Parents, hierarchically. Parents are the boss of children, which means that parents influents things like read and write rights.",
    "https://atomicdata.dev/properties/parent": "https://atomicdata.dev/properties",
    "https://atomicdata.dev/properties/isA": [
      "https://atomicdata.dev/classes/Property"
    ],
    "https://atomicdata.dev/properties/isDynamic": true,
    "https://atomicdata.dev/properties/shortname": "children"
  },
  {
    "@id": "https://atomicdata.dev/properties/collection/currentPage",
    "https://atomicdata.dev/properties/datatype": "https://atomicdata.dev/datatypes/integer",
    "https://atomicdata.dev/properties/description": "The current page number of the collection. Defaults to 0.",
    "https://atomicdata.dev/properties/parent": "https://atomicdata.dev/properties",
    "https://atomicdata.dev/properties/isA": [
      "https://atomicdata.dev/classes/Property"
    ],
    "https://atomicdata.dev/properties/shortname": "current-page"
  },
  {
    "@id": "https://atomicdata.dev/properties/collection/includeExternal",
    "https://atomicdata.dev/properties/datatype": "https://atomicdata.dev/datatypes/boolean",
    "https://atomicdata.dev/properties/description": "If true, resources will be included in this collection that are not present in the Server.",
    "https://atomicdata.dev/properties/parent": "https://atomicdata.dev/properties",
    "https://atomicdata.dev/properties/isA": [
      "https://atomicdata.dev/classes/Property"
    ],
    "https://atomicdata.dev/properties/shortname": "include-external"
  },
  {
    "@id": "https://atomicdata.dev/properties/collection/includeNested",
    "https://atomicdata.dev/properties/datatype": "https://atomicdata.dev/datatypes/boolean",
    "https://atomicdata.dev/properties/description": "If true, full resources will be included in the response, which is often faster for clients.",
    "https://atomicdata.dev/properties/parent": "https://atomicdata.dev/properties",
    "https://atomicdata.dev/properties/isA": [
      "https://atomicdata.dev/classes/Property"
    ],
    "https://atomicdata.dev/properties/shortname": "include-nested"
  },
  {
    "@id": "https://atomicdata.dev/properties/collection/members",
    "https://atomicdata.dev/properties/datatype": "https://atomicdata.dev/datatypes/resourceArray",
    "https://atomicdata.dev/properties/description": "The members are the list of resources in a collection.",
    "https://atomicdata.dev/properties/parent": "https://atomicdata.dev/properties",
    "https://atomicdata.dev/properties/isA": [
      "https://atomicdata.dev/classes/Property"
    ],
    "https://atomicdata.dev/properties/isDynamic": true,
    "https://atomicdata.dev/properties/shortname": "members"
  },
  {
    "@id": "https://atomicdata.dev/properties/collection/pageSize",
    "https://atomicdata.dev/properties/datatype": "https://atomicdata.dev/datatypes/integer",
    "https://atomicdata.dev/properties/description": "The maximum number of members per page.",
    "https://atomicdata.dev/properties/parent": "https://atomicdata.dev/properties",
    "https://atomicdata.dev/properties/isA": [
      "https://atomicdata.dev/classes/Property"
    ],
    "https://atomicdata.dev/properties/shortname": "page-size"
  },
  {
    "@id": "https://atomicdata.dev/properties/collection/property",
    "https://atomicdata.dev/properties/datatype": "https://atomicdata.dev/datatypes/atomicURL",
    "https://atomicdata.dev/properties/classtype": "https://atomicdata.dev/classes/Property",
    "https://atomicdata.dev/properties/parent": "https://atomicdata.dev/properties",
    "https://atomicdata.dev/properties/description": "Filter collection by the Property of Atoms. The property is the second field of an atom. Similar to `predicate` in RDF.",
    "https://atomicdata.dev/properties/isA": [
      "https://atomicdata.dev/classes/Property"
    ],
    "https://atomicdata.dev/properties/shortname": "property"
  },
  {
    "@id": "https://atomicdata.dev/properties/collection/subject",
    "https://atomicdata.dev/properties/datatype": "https://atomicdata.dev/datatypes/atomicURL",
    "https://atomicdata.dev/properties/description": "Filter collection by the Subject of Atoms. The subject is the first field of an atom.",
    "https://atomicdata.dev/properties/parent": "https://atomicdata.dev/properties",
    "https://atomicdata.dev/properties/isA": [
      "https://atomicdata.dev/classes/Property"
    ],
    "https://atomicdata.dev/properties/shortname": "subject"
  },
  {
    "@id": "https://atomicdata.dev/properties/collection/sortBy",
    "https://atomicdata.dev/properties/classtype": "https://atomicdata.dev/classes/Property",
    "https://atomicdata.dev/properties/datatype": "https://atomicdata.dev/datatypes/atomicURL",
    "https://atomicdata.dev/properties/parent": "https://atomicdata.dev/properties",
    "https://atomicdata.dev/properties/description": "Sort collection by this property. Sorts ascending by default.",
    "https://atomicdata.dev/properties/isA": [
      "https://atomicdata.dev/classes/Property"
    ],
    "https://atomicdata.dev/properties/shortname": "sort-by"
  },
  {
    "@id": "https://atomicdata.dev/properties/collection/sortDesc",
    "https://atomicdata.dev/properties/datatype": "https://atomicdata.dev/datatypes/boolean",
    "https://atomicdata.dev/properties/description": "Sort collection descendingly. Sorts ascending by default.",
    "https://atomicdata.dev/properties/parent": "https://atomicdata.dev/properties",
    "https://atomicdata.dev/properties/isA": [
      "https://atomicdata.dev/classes/Property"
    ],
    "https://atomicdata.dev/properties/shortname": "sort-desc"
  },
  {
    "@id": "https://atomicdata.dev/properties/collection/aggregates",
    "https://atomicdata.dev/properties/datatype": "https://atomicdata.dev/datatypes/json",
    "https://atomicdata.dev/properties/description": "Statistics computed over every resource this collection matches, not just the current page: a JSON array of { property?, function, value, count, groups?, groups_truncated? }. `function` is one of sum / count / avg / min / max. Requested with the `aggregation` query parameter; the store computes them where the data is, so a client can show a total without fetching every member. `groups` holds the per-bucket breakdown when one was asked for.",
    "https://atomicdata.dev/properties/parent": "https://atomicdata.dev/properties",
    "https://atomicdata.dev/properties/isA": [
      "https://atomicdata.dev/classes/Property"
    ],
    "https://atomicdata.dev/properties/shortname": "aggregates"
  },
  {
    "@id": "https://atomicdata.dev/properties/collection/totalMembers",
    "https://atomicdata.dev/properties/datatype": "https://atomicdata.dev/datatypes/integer",
    "https://atomicdata.dev/properties/description": "The count of items (members) in the collection.",
    "https://atomicdata.dev/properties/parent": "https://atomicdata.dev/properties",
    "https://atomicdata.dev/properties/isA": [
      "https://atomicdata.dev/classes/Property"
    ],
    "https://atomicdata.dev/properties/isDynamic": true,
    "https://atomicdata.dev/properties/shortname": "total-members"
  },
  {
    "@id": "https://atomicdata.dev/properties/collection/totalPages",
    "https://atomicdata.dev/properties/datatype": "https://atomicdata.dev/datatypes/integer",
    "https://atomicdata.dev/properties/description": "The total number of pages in the collection.",
    "https://atomicdata.dev/properties/parent": "https://atomicdata.dev/properties",
    "https://atomicdata.dev/properties/isA": [
      "https://atomicdata.dev/classes/Property"
    ],
    "https://atomicdata.dev/properties/isDynamic": true,
    "https://atomicdata.dev/properties/shortname": "total-pages"
  },
  {
    "@id": "https://atomicdata.dev/properties/collection/value",
    "https://atomicdata.dev/properties/datatype": "https://atomicdata.dev/datatypes/string",
    "https://atomicdata.dev/properties/description": "Filter collection by the Value of Atoms. The Value is the third field of an Atom. Similar to `object` in RDF.",
    "https://atomicdata.dev/properties/parent": "https://atomicdata.dev/properties",
    "https://atomicdata.dev/properties/isA": [
      "https://atomicdata.dev/classes/Property"
    ],
    "https://atomicdata.dev/properties/shortname": "value"
  },
  {
    "@id": "https://atomicdata.dev/properties/createdAt",
    "https://atomicdata.dev/properties/datatype": "https://atomicdata.dev/datatypes/timestamp",
    "https://atomicdata.dev/properties/description": "Timestamp when the Commit was created (usually when it was signed).",
    "https://atomicdata.dev/properties/parent": "https://atomicdata.dev/properties",
    "https://atomicdata.dev/properties/isA": [
      "https://atomicdata.dev/classes/Property"
    ],
    "https://atomicdata.dev/properties/shortname": "created-at"
  },
  {
    "@id": "https://atomicdata.dev/properties/createdBy",
    "https://atomicdata.dev/properties/classtype": "https://atomicdata.dev/classes/Agent",
    "https://atomicdata.dev/properties/datatype": "https://atomicdata.dev/datatypes/atomicURL",
    "https://atomicdata.dev/properties/parent": "https://atomicdata.dev/properties",
    "https://atomicdata.dev/properties/description": "Who created this resource.",
    "https://atomicdata.dev/properties/isA": [
      "https://atomicdata.dev/classes/Property"
    ],
    "https://atomicdata.dev/properties/shortname": "created-by"
  },
  {
    "@id": "https://atomicdata.dev/properties/destination",
    "https://atomicdata.dev/properties/datatype": "https://atomicdata.dev/datatypes/atomicURL",
    "https://atomicdata.dev/properties/description": "Where a redirect should point to.",
    "https://atomicdata.dev/properties/parent": "https://atomicdata.dev/properties",
    "https://atomicdata.dev/properties/isA": [
      "https://atomicdata.dev/classes/Property"
    ],
    "https://atomicdata.dev/properties/shortname": "destination"
  },
  {
    "@id": "https://atomicdata.dev/properties/destroy",
    "https://atomicdata.dev/properties/datatype": "https://atomicdata.dev/datatypes/boolean",
    "https://atomicdata.dev/properties/description": "If set to true, the entire Subject resource will be removed in this commit. This will be executed _before_ other commands, such as set.",
    "https://atomicdata.dev/properties/parent": "https://atomicdata.dev/properties",
    "https://atomicdata.dev/properties/isA": [
      "https://atomicdata.dev/classes/Property"
    ],
    "https://atomicdata.dev/properties/shortname": "destroy"
  },
  {
    "@id": "https://atomicdata.dev/properties/documents/elements",
    "https://atomicdata.dev/properties/datatype": "https://atomicdata.dev/datatypes/resourceArray",
    "https://atomicdata.dev/properties/description": "Set of sections in a document",
    "https://atomicdata.dev/properties/parent": "https://atomicdata.dev/properties",
    "https://atomicdata.dev/properties/isA": [
      "https://atomicdata.dev/classes/Property"
    ],
    "https://atomicdata.dev/properties/shortname": "elements"
  },
  {
    "@id": "https://atomicdata.dev/properties/importer/json",
    "https://atomicdata.dev/properties/datatype": "https://atomicdata.dev/datatypes/string",
    "https://atomicdata.dev/properties/description": "A JSON-AD string to be imported. See https://docs.atomicdata.dev/create-json-ad.html",
    "https://atomicdata.dev/properties/isA": [
      "https://atomicdata.dev/classes/Property"
    ],
    "https://atomicdata.dev/properties/parent": "https://atomicdata.dev/properties",
    "https://atomicdata.dev/properties/shortname": "json"
  },
  {
    "@id": "https://atomicdata.dev/properties/importer/parent",
    "https://atomicdata.dev/properties/datatype": "https://atomicdata.dev/datatypes/string",
    "https://atomicdata.dev/properties/description": "The parent to where the Resources will be imported. If a Resource does not have an explicit parent by itself, it will default to this parent. ",
    "https://atomicdata.dev/properties/isA": [
      "https://atomicdata.dev/classes/Property"
    ],
    "https://atomicdata.dev/properties/parent": "https://atomicdata.dev/properties",
    "https://atomicdata.dev/properties/shortname": "import-parent"
  },
  {
    "@id": "https://atomicdata.dev/properties/importer/url",
    "https://atomicdata.dev/properties/datatype": "https://atomicdata.dev/datatypes/string",
    "https://atomicdata.dev/properties/description": "A URL to a JSON-AD string to be imported. See https://docs.atomicdata.dev/create-json-ad.html",
    "https://atomicdata.dev/properties/isA": [
      "https://atomicdata.dev/classes/Property"
    ],
    "https://atomicdata.dev/properties/parent": "https://atomicdata.dev/properties",
    "https://atomicdata.dev/properties/shortname": "url"
  },
  {
    "@id": "https://atomicdata.dev/properties/importer/overwrite-outside",
    "https://atomicdata.dev/properties/datatype": "https://atomicdata.dev/datatypes/boolean",
    "https://atomicdata.dev/properties/description": "If true, the importer will overwrite Resources that are _outside_ of the parent specified. This could be dangerous, so make sure you trust the source of the data.",
    "https://atomicdata.dev/properties/isA": [
      "https://atomicdata.dev/classes/Property"
    ],
    "https://atomicdata.dev/properties/parent": "https://atomicdata.dev/properties",
    "https://atomicdata.dev/properties/shortname": "overwrite-outside"
  },
  {
    "@id": "https://atomicdata.dev/properties/localId",
    "https://atomicdata.dev/properties/datatype": "https://atomicdata.dev/datatypes/string",
    "https://atomicdata.dev/properties/description": "A `localId` is used to derive the Subject (`@id`, the URL) of an imported Resource. This is useful when some data owner has Atomic Data but does not have the technology to host all Resources at their respective URLs. [See docs](https://docs.atomicdata.dev/create-json-ad.html#preventing-duplication-with-localid).",
    "https://atomicdata.dev/properties/isA": [
      "https://atomicdata.dev/classes/Property"
    ],
    "https://atomicdata.dev/properties/parent": "https://atomicdata.dev/properties",
    "https://atomicdata.dev/properties/shortname": "local-id"
  },
  {
    "@id": "https://atomicdata.dev/properties/incomplete",
    "https://atomicdata.dev/properties/classtype": "https://atomicdata.dev/classes/Property",
    "https://atomicdata.dev/properties/datatype": "https://atomicdata.dev/datatypes/boolean",
    "https://atomicdata.dev/properties/parent": "https://atomicdata.dev/properties",
    "https://atomicdata.dev/properties/description": "If this is true, this Resource does not contain all the values that it should. This is probably done because it was included as part of a larger Resource, such as a Collection, Fetch this resource directly (send a GET request to its Subject URL) to get all the properties.",
    "https://atomicdata.dev/properties/isA": [
      "https://atomicdata.dev/classes/Property"
    ],
    "https://atomicdata.dev/properties/shortname": "incomplete"
  },
  {
    "@id": "https://atomicdata.dev/properties/invite/target",
    "https://atomicdata.dev/properties/datatype": "https://atomicdata.dev/datatypes/atomicURL",
    "https://atomicdata.dev/properties/description": "The resource that the invite will grant rights for. It will often also be the target of a redirection.",
    "https://atomicdata.dev/properties/parent": "https://atomicdata.dev/properties",
    "https://atomicdata.dev/properties/isA": [
      "https://atomicdata.dev/classes/Property"
    ],
    "https://atomicdata.dev/properties/shortname": "target"
  },
  {
    "@id": "https://atomicdata.dev/properties/invite/usagesLeft",
    "https://atomicdata.dev/properties/datatype": "https://atomicdata.dev/datatypes/integer",
    "https://atomicdata.dev/properties/description": "The amount of usages that are left for this invite. When this reaches 0, the invite will no longer be functional.",
    "https://atomicdata.dev/properties/parent": "https://atomicdata.dev/properties",
    "https://atomicdata.dev/properties/isA": [
      "https://atomicdata.dev/classes/Property"
    ],
    "https://atomicdata.dev/properties/shortname": "usages-left"
  },
  {
    "@id": "https://atomicdata.dev/properties/invite/users",
    "https://atomicdata.dev/properties/classtype": "https://atomicdata.dev/classes/Agent",
    "https://atomicdata.dev/properties/datatype": "https://atomicdata.dev/datatypes/resourceArray",
    "https://atomicdata.dev/properties/parent": "https://atomicdata.dev/properties",
    "https://atomicdata.dev/properties/description": "The list of Agents that have used this Invite.",
    "https://atomicdata.dev/properties/isA": [
      "https://atomicdata.dev/classes/Property"
    ],
    "https://atomicdata.dev/properties/shortname": "users"
  },
  {
    "@id": "https://atomicdata.dev/properties/invite/write",
    "https://atomicdata.dev/properties/datatype": "https://atomicdata.dev/datatypes/boolean",
    "https://atomicdata.dev/properties/description": "If true, provides the one who is invited with Write rights, which means allowing to edit the resource, its properties and its children.",
    "https://atomicdata.dev/properties/parent": "https://atomicdata.dev/properties",
    "https://atomicdata.dev/properties/isA": [
      "https://atomicdata.dev/classes/Property"
    ],
    "https://atomicdata.dev/properties/shortname": "write"
  },
  {
    "@id": "https://atomicdata.dev/properties/invite/publicKey",
    "https://atomicdata.dev/properties/datatype": "https://atomicdata.dev/datatypes/string",
    "https://atomicdata.dev/properties/description": "The public key of the Agent that wants to use an Invite. This will create an Agent on the Store using this private key.",
    "https://atomicdata.dev/properties/parent": "https://atomicdata.dev/properties",
    "https://atomicdata.dev/properties/isA": [
      "https://atomicdata.dev/classes/Property"
    ],
    "https://atomicdata.dev/properties/shortname": "public-key"
  },
  {
    "@id": "https://atomicdata.dev/properties/invite/agent",
    "https://atomicdata.dev/properties/classtype": "https://atomicdata.dev/classes/Agent",
    "https://atomicdata.dev/properties/datatype": "https://atomicdata.dev/datatypes/atomicURL",
    "https://atomicdata.dev/properties/parent": "https://atomicdata.dev/properties",
    "https://atomicdata.dev/properties/description": "The Agent that should be given the rights for this Invite.",
    "https://atomicdata.dev/properties/isA": [
      "https://atomicdata.dev/classes/Property"
    ],
    "https://atomicdata.dev/properties/shortname": "agent"
  },
  {
    "@id": "https://atomicdata.dev/properties/invite/redirectAgent",
    "https://atomicdata.dev/properties/classtype": "https://atomicdata.dev/classes/Agent",
    "https://atomicdata.dev/properties/datatype": "https://atomicdata.dev/datatypes/atomicURL",
    "https://atomicdata.dev/properties/parent": "https://atomicdata.dev/properties",
    "https://atomicdata.dev/properties/description": "The Agent that is created in a Redirect action. See the [Invite docs](https://docs.atomicdata.dev/invitations.html).",
    "https://atomicdata.dev/properties/isA": [
      "https://atomicdata.dev/classes/Property"
    ],
    "https://atomicdata.dev/properties/shortname": "redirect-agent"
  },
  {
    "@id": "https://atomicdata.dev/properties/invite/expiresAt",
    "https://atomicdata.dev/properties/datatype": "https://atomicdata.dev/datatypes/timestamp",
    "https://atomicdata.dev/properties/description": "When the Invite should stop working.",
    "https://atomicdata.dev/properties/parent": "https://atomicdata.dev/properties",
    "https://atomicdata.dev/properties/isA": [
      "https://atomicdata.dev/classes/Property"
    ],
    "https://atomicdata.dev/properties/shortname": "expires-at"
  },
  {
    "@id": "https://atomicdata.dev/properties/isLocked",
    "https://atomicdata.dev/properties/datatype": "https://atomicdata.dev/datatypes/boolean",
    "https://atomicdata.dev/properties/description": "If this is true, the Property should probably not be edited, because doing so could lead to serious errors.",
    "https://atomicdata.dev/properties/parent": "https://atomicdata.dev/properties",
    "https://atomicdata.dev/properties/isA": [
      "https://atomicdata.dev/classes/Property"
    ],
    "https://atomicdata.dev/properties/shortname": "is-locked"
  },
  {
    "@id": "https://atomicdata.dev/properties/lastCommit",
    "https://atomicdata.dev/properties/classtype": "https://atomicdata.dev/classes/Commit",
    "https://atomicdata.dev/properties/datatype": "https://atomicdata.dev/datatypes/atomicURL",
    "https://atomicdata.dev/properties/description": "The last Commit that was applied to this Resource. This is used when checking whether two systems have the same version of a resource.",
    "https://atomicdata.dev/properties/isA": [
      "https://atomicdata.dev/classes/Property"
    ],
    "https://atomicdata.dev/properties/isDynamic": true,
    "https://atomicdata.dev/properties/parent": "https://atomicdata.dev/properties",
    "https://atomicdata.dev/properties/shortname": "last-commit"
  },
  {
    "@id": "https://atomicdata.dev/properties/localId",
    "https://atomicdata.dev/properties/datatype": "https://atomicdata.dev/datatypes/string",
    "https://atomicdata.dev/properties/description": "A `localId` is used to derive the Subject (`@id`, the URL) of an imported Resource. This is useful when some data owner has Atomic Data but does not have the technology to host all Resources at their respective URLs. [See docs](https://docs.atomicdata.dev/create-json-ad.html#preventing-duplication-with-localid).",
    "https://atomicdata.dev/properties/isA": [
      "https://atomicdata.dev/classes/Property"
    ],
    "https://atomicdata.dev/properties/parent": "https://atomicdata.dev/properties",
    "https://atomicdata.dev/properties/shortname": "local-id"
  },
  {
    "@id": "https://atomicdata.dev/properties/paymentPointer",
    "https://atomicdata.dev/properties/datatype": "https://atomicdata.dev/datatypes/string",
    "https://atomicdata.dev/properties/description": "Payment Pointers are a standardized identifier for payment accounts. In the same way that an email address provides an identifier for a mailbox in the email ecosystem a payment pointer is used by an account holder to share the details of their account with a counter-party.\n\nSee https://paymentpointers.org/\n\nE.g. `$ilp.uphold.com/WBQrZEphkFxj`",
    "https://atomicdata.dev/properties/isA": [
      "https://atomicdata.dev/classes/Property"
    ],
    "https://atomicdata.dev/properties/parent": "https://atomicdata.dev/properties",
    "https://atomicdata.dev/properties/shortname": "payment-pointer"
  },
  {
    "@id": "https://atomicdata.dev/properties/path",
    "https://atomicdata.dev/properties/datatype": "https://atomicdata.dev/datatypes/string",
    "https://atomicdata.dev/properties/description": "An Atomic Path is a string that starts with the URL of some Atomic Resource, followed by one or multiple other Property URLs or Property Shortnames. It resolves to one specific Resource or Value.",
    "https://atomicdata.dev/properties/parent": "https://atomicdata.dev/properties",
    "https://atomicdata.dev/properties/isA": [
      "https://atomicdata.dev/classes/Property"
    ],
    "https://atomicdata.dev/properties/shortname": "path"
  },
  {
    "@id": "https://atomicdata.dev/properties/previousCommit",
    "https://atomicdata.dev/properties/classtype": "https://atomicdata.dev/classes/Commit",
    "https://atomicdata.dev/properties/datatype": "https://atomicdata.dev/datatypes/atomicURL",
    "https://atomicdata.dev/properties/description": "The previous Commit that was applied to the target resource (the subject) of this Commit. You should be able to follow these from Commit to Commit to establish an audit trail.",
    "https://atomicdata.dev/properties/isA": [
      "https://atomicdata.dev/classes/Property"
    ],
    "https://atomicdata.dev/properties/parent": "https://atomicdata.dev/properties",
    "https://atomicdata.dev/properties/shortname": "previous-commit"
  },
  {
    "@id": "https://atomicdata.dev/properties/privateKey",
    "https://atomicdata.dev/properties/datatype": "https://atomicdata.dev/datatypes/string",
    "https://atomicdata.dev/properties/description": "The private key of an Agent. Is a base64 serialized Ed25519 private key. Used to sign [Commits](https://atomicdata.dev/classes/Commit). Never share this with others.",
    "https://atomicdata.dev/properties/parent": "https://atomicdata.dev/properties",
    "https://atomicdata.dev/properties/isA": [
      "https://atomicdata.dev/classes/Property"
    ],
    "https://atomicdata.dev/properties/shortname": "private-key"
  },
  {
    "@id": "https://atomicdata.dev/properties/publicKey",
    "https://atomicdata.dev/properties/datatype": "https://atomicdata.dev/datatypes/string",
    "https://atomicdata.dev/properties/description": "The publicKey of an Agent. Is a base64 serialized Ed25519 public key. Can be derived from a [privateKey](https://atomicdata.dev/properties/privateKey).",
    "https://atomicdata.dev/properties/parent": "https://atomicdata.dev/properties",
    "https://atomicdata.dev/properties/isA": [
      "https://atomicdata.dev/classes/Property"
    ],
    "https://atomicdata.dev/properties/shortname": "public-key"
  },
  {
    "@id": "https://atomicdata.dev/properties/drive/publicKey",
    "https://atomicdata.dev/properties/datatype": "https://atomicdata.dev/datatypes/string",
    "https://atomicdata.dev/properties/description": "The public key of a Drive. Used for identifying and verifying the drive.",
    "https://atomicdata.dev/properties/parent": "https://atomicdata.dev/properties",
    "https://atomicdata.dev/properties/isA": [
      "https://atomicdata.dev/classes/Property"
    ],
    "https://atomicdata.dev/properties/shortname": "drive-public-key"
  },
  {
    "@id": "https://atomicdata.dev/properties/drive/privateKey",
    "https://atomicdata.dev/properties/datatype": "https://atomicdata.dev/datatypes/string",
    "https://atomicdata.dev/properties/description": "The private key of a Drive. Keep this secret! used for signing operations on behalf of the drive.",
    "https://atomicdata.dev/properties/parent": "https://atomicdata.dev/properties",
    "https://atomicdata.dev/properties/isA": [
      "https://atomicdata.dev/classes/Property"
    ],
    "https://atomicdata.dev/properties/shortname": "drive-private-key"
  },
  {
    "@id": "https://atomicdata.dev/properties/published-at",
    "https://atomicdata.dev/properties/datatype": "https://atomicdata.dev/datatypes/date",
    "https://atomicdata.dev/properties/description": "DateTime at which an item is made public.",
    "https://atomicdata.dev/properties/isA": [
      "https://atomicdata.dev/classes/Property"
    ],
    "https://atomicdata.dev/properties/parent": "https://atomicdata.dev/classes/Article",
    "https://atomicdata.dev/properties/shortname": "published-at"
  },
  {
    "@id": "https://atomicdata.dev/properties/push",
    "https://atomicdata.dev/properties/datatype": "https://atomicdata.dev/datatypes/atomicURL",
    "https://atomicdata.dev/properties/description": "Pushing is adding one (or more) Resources to a [ResourceArray](https://atomicdata.dev/datatypes/resourceArray). It is a method that is parsed on Commits.\n\nThe `push` field should be a JSON object where each key is a Property URL, and each value is a ResourceArray. \n\nWhen applying `push`, append all the elements to the corresponding existing ResourceArray. If it does not exist yet, create the ResourceArray.",
    "https://atomicdata.dev/properties/isA": [
      "https://atomicdata.dev/classes/Property"
    ],
    "https://atomicdata.dev/properties/parent": "https://atomicdata.dev/properties",
    "https://atomicdata.dev/properties/shortname": "push"
  },
  {
    "@id": "https://atomicdata.dev/properties/read",
    "https://atomicdata.dev/properties/classtype": "https://atomicdata.dev/classes/Agent",
    "https://atomicdata.dev/properties/datatype": "https://atomicdata.dev/datatypes/resourceArray",
    "https://atomicdata.dev/properties/parent": "https://atomicdata.dev/properties",
    "https://atomicdata.dev/properties/description": "The agents that can read this resource and its children.",
    "https://atomicdata.dev/properties/isA": [
      "https://atomicdata.dev/classes/Property"
    ],
    "https://atomicdata.dev/properties/shortname": "read"
  },
  {
    "@id": "https://atomicdata.dev/properties/remove",
    "https://atomicdata.dev/properties/classtype": "https://atomicdata.dev/classes/Property",
    "https://atomicdata.dev/properties/datatype": "https://atomicdata.dev/datatypes/resourceArray",
    "https://atomicdata.dev/properties/parent": "https://atomicdata.dev/properties",
    "https://atomicdata.dev/properties/description": "A list of property URLs that should be removed from the resource. ",
    "https://atomicdata.dev/properties/isA": [
      "https://atomicdata.dev/classes/Property"
    ],
    "https://atomicdata.dev/properties/shortname": "remove"
  },
  {
    "@id": "https://atomicdata.dev/properties/set",
    "https://atomicdata.dev/properties/datatype": "https://atomicdata.dev/datatypes/atomicURL",
    "https://atomicdata.dev/properties/description": "The `set` Property describes the fields that are changed in the Commit. It is a Nested Resource, and each of its Property-Value combinations will be added to the Subject resource. If the Property existed before, it will be overwritten.",
    "https://atomicdata.dev/properties/parent": "https://atomicdata.dev/properties",
    "https://atomicdata.dev/properties/isA": [
      "https://atomicdata.dev/classes/Property"
    ],
    "https://atomicdata.dev/properties/shortname": "set"
  },
  {
    "@id": "https://atomicdata.dev/properties/secret",
    "https://atomicdata.dev/properties/datatype": "https://atomicdata.dev/datatypes/string",
    "https://atomicdata.dev/properties/description": "A base64 serialized JSON object containing a [`privateKey`](https://atomicdata.dev/properties/privateKey) and an [`agent`](https://atomicdata.dev/classes/Agent) URL. It is used as a single string that can sign in to Atomic Data apps.",
    "https://atomicdata.dev/properties/parent": "https://atomicdata.dev/properties",
    "https://atomicdata.dev/properties/isA": [
      "https://atomicdata.dev/classes/Property"
    ],
    "https://atomicdata.dev/properties/shortname": "secret"
  },
  {
    "@id": "https://atomicdata.dev/properties/signature",
    "https://atomicdata.dev/properties/datatype": "https://atomicdata.dev/datatypes/string",
    "https://atomicdata.dev/properties/description": "The signature proves that a Commit is created by a specific Agent. It is a cryptographic proof - an RSA signature of the JSON serialized commit, minus the signature.",
    "https://atomicdata.dev/properties/parent": "https://atomicdata.dev/properties",
    "https://atomicdata.dev/properties/isA": [
      "https://atomicdata.dev/classes/Property"
    ],
    "https://atomicdata.dev/properties/shortname": "signature"
  },
  {
    "@id": "https://atomicdata.dev/properties/signer",
    "https://atomicdata.dev/properties/classtype": "https://atomicdata.dev/classes/Agent",
    "https://atomicdata.dev/properties/datatype": "https://atomicdata.dev/datatypes/atomicURL",
    "https://atomicdata.dev/properties/parent": "https://atomicdata.dev/properties",
    "https://atomicdata.dev/properties/description": "The signer is the agent (person, organization or something else) that issued the commit.",
    "https://atomicdata.dev/properties/isA": [
      "https://atomicdata.dev/classes/Property"
    ],
    "https://atomicdata.dev/properties/shortname": "signer"
  },
  {
    "@id": "https://atomicdata.dev/properties/subject",
    "https://atomicdata.dev/properties/datatype": "https://atomicdata.dev/datatypes/atomicURL",
    "https://atomicdata.dev/properties/description": "The thing that the Commit is changing - the resource ID that is being targeted. It must not contain any query parameters.",
    "https://atomicdata.dev/properties/parent": "https://atomicdata.dev/properties",
    "https://atomicdata.dev/properties/isA": [
      "https://atomicdata.dev/classes/Property"
    ],
    "https://atomicdata.dev/properties/shortname": "subject"
  },
  {
    "@id": "https://atomicdata.dev/properties/subresources",
    "https://atomicdata.dev/properties/datatype": "https://atomicdata.dev/datatypes/resourceArray",
    "https://atomicdata.dev/properties/description": "A list of resources (usually its children) that appear under this resource in a hierarchy.",
    "https://atomicdata.dev/properties/isA": [
      "https://atomicdata.dev/classes/Property"
    ],
    "https://atomicdata.dev/properties/lastCommit": "https://atomicdata.dev/commits/VB3gtWMkysTX5hKjbYjIM1hfVGPywT3pEPL8c7NwaUAJID6RzptGRPzmix8aKKDeb8Pj1WFv0UPV0YVPxcduBg==",
    "https://atomicdata.dev/properties/parent": "https://atomicdata.dev/properties",
    "https://atomicdata.dev/properties/shortname": "sub-resources"
  },
  {
    "@id": "https://atomicdata.dev/properties/tags",
    "https://atomicdata.dev/properties/classtype": "https://atomicdata.dev/classes/Tag",
    "https://atomicdata.dev/properties/datatype": "https://atomicdata.dev/datatypes/resourceArray",
    "https://atomicdata.dev/properties/description": "List of tags / categories / themes. Useful for categorizing posts.",
    "https://atomicdata.dev/properties/isA": [
      "https://atomicdata.dev/classes/Property"
    ],
    "https://atomicdata.dev/properties/lastCommit": "https://atomicdata.dev/commits/fS0krtm1wDk0lodH0psnUKmBHBMKLuxnjkd7E7QbkzDk/irQ43gNW3lWxkwQj58ZNg6rUAUMDGJrLy1X3cHwBQ==",
    "https://atomicdata.dev/properties/parent": "https://atomicdata.dev/properties",
    "https://atomicdata.dev/properties/shortname": "tags"
  },
  {
    "@id": "https://atomicdata.dev/properties/write",
    "https://atomicdata.dev/properties/classtype": "https://atomicdata.dev/classes/Agent",
    "https://atomicdata.dev/properties/datatype": "https://atomicdata.dev/datatypes/resourceArray",
    "https://atomicdata.dev/properties/parent": "https://atomicdata.dev/properties",
    "https://atomicdata.dev/properties/description": "The agents that can edit this resource and its children.",
    "https://atomicdata.dev/properties/isA": [
      "https://atomicdata.dev/classes/Property"
    ],
    "https://atomicdata.dev/properties/shortname": "write"
  },
  {
    "@id": "https://atomicdata.dev/classes/Article",
    "https://atomicdata.dev/properties/description": "A written article / blogpost / blog. \n\nUse the `name` as a Title, and the `description` for the content of the Blogpost (in markdown).",
    "https://atomicdata.dev/properties/isA": [
      "https://atomicdata.dev/classes/Class"
    ],
    "https://atomicdata.dev/properties/parent": "https://atomicdata.dev/classes",
    "https://atomicdata.dev/properties/recommends": [
      "https://atomicdata.dev/properties/tags",
      "https://atomicdata.dev/properties/published-at"
    ],
    "https://atomicdata.dev/properties/requires": [
      "https://atomicdata.dev/properties/description",
      "https://atomicdata.dev/properties/name"
    ],
    "https://atomicdata.dev/properties/shortname": "article"
  },
  {
    "@id": "https://atomicdata.dev/classes/Atom",
    "https://atomicdata.dev/properties/description": "An Atom is the smallest piece of meaningful data in Atomic Data. It consists of a Subject, a Property and a Value.",
    "https://atomicdata.dev/properties/isA": [
      "https://atomicdata.dev/classes/Class"
    ],
    "https://atomicdata.dev/properties/requires": [
      "https://atomicdata.dev/properties/atom/subject",
      "https://atomicdata.dev/properties/atom/property",
      "https://atomicdata.dev/properties/atom/value"
    ],
    "https://atomicdata.dev/properties/parent": "https://atomicdata.dev/classes",
    "https://atomicdata.dev/properties/shortname": "atom"
  },
  {
    "@id": "https://atomicdata.dev/classes/Collection",
    "https://atomicdata.dev/properties/description": "A paginated set of resources that can be sorted. Accepts query parameters for setting the current page number, page size, sort attribute, sort direction",
    "https://atomicdata.dev/properties/isA": [
      "https://atomicdata.dev/classes/Class"
    ],
    "https://atomicdata.dev/properties/recommends": [
      "https://atomicdata.dev/properties/name",
      "https://atomicdata.dev/properties/description",
      "https://atomicdata.dev/properties/collection/currentPage",
      "https://atomicdata.dev/properties/collection/members",
      "https://atomicdata.dev/properties/collection/pageSize",
      "https://atomicdata.dev/properties/collection/property",
      "https://atomicdata.dev/properties/collection/sortBy",
      "https://atomicdata.dev/properties/collection/sortDesc",
      "https://atomicdata.dev/properties/collection/totalMembers",
      "https://atomicdata.dev/properties/collection/totalPages",
      "https://atomicdata.dev/properties/collection/aggregates",
      "https://atomicdata.dev/properties/collection/value",
      "https://atomicdata.dev/properties/collection/includeExternal",
      "https://atomicdata.dev/properties/incomplete"
    ],
    "https://atomicdata.dev/properties/parent": "https://atomicdata.dev/classes",
    "https://atomicdata.dev/properties/shortname": "collection"
  },
  {
    "@id": "https://atomicdata.dev/classes/Commit",
    "https://atomicdata.dev/properties/description": "A Commit is a Resource that describes how a Resource must be updated.\nIt can be used for auditing, versioning and feeds.\nIt is cryptographically signed by an [Agent](https://atomicdata.dev/classes/Agent).\n\nThe **required fields** are:\n\n- `subject` - The thing being changed. A Resource Subject URL (HTTP identifier) that the Commit is changing about. A Commit Subject must not contain query parameters, as these are reserved for dynamic resources.\n- `signer` - Who's making the change. The Atomic URL of the Author's profile - which in turn must contain a `publicKey`.\n- `signature` - Cryptographic proof of the change. A hash of the JSON-AD serialized Commit (without the `signature` field), signed by the Agent's `private-key`. This proves that the author is indeed the one who created this exact commit. The signature of the Commit is also used as the identifier of the commit.\n- `created-at` - When the change was made. A UNIX timestamp number of when the commit was created.\n\nThe **optional method fields** describe how the data must be changed:\n\n- `destroy` - If true, the existing Resource will be removed.\n- `remove` - an array of Properties that need to be removed (including their values).\n- `set` - a Nested Resource which contains all the new or edited fields.\n\nThese commands are executed in the order above.\nThis means that you can set `destroy` to `true` and include `set`, which empties the existing resource and sets new values.\n\n### Posting commits using HTTP\n\nSince Commits contains cryptographic proof of authorship, they can be accepted at a public endpoint.\nThere is no need for authentication.\n\nA commit should be sent (using an HTTPS POST request) to a `/commmit` endpoint of an Atomic Server.\nThe server then checks the signature and the author rights, and responds with a `2xx` status code if it succeeded, or an `5xx` error if something went wrong.\nThe error will be a JSON object.\n\n### Serialization with JSON-AD\n\nLet's look at an example Commit:\n\n```json\n{\n  \"@id\": \"https://atomicdata.dev/commits/3n+U/3OvymF86Ha6S9MQZtRVIQAAL0rv9ZQpjViht4emjnqKxj4wByiO9RhfL+qwoxTg0FMwKQsNg6d0QU7pAw==\",\n  \"https://atomicdata.dev/properties/createdAt\": 1611489929370,\n  \"https://atomicdata.dev/properties/isA\": [\n    \"https://atomicdata.dev/classes/Commit\"\n  ],\n  \"https://atomicdata.dev/properties/set\": {\n    \"https://atomicdata.dev/properties/shortname\": \"1611489928\"\n  },\n  \"https://atomicdata.dev/properties/signature\": \"3n+U/3OvymF86Ha6S9MQZtRVIQAAL0rv9ZQpjViht4emjnqKxj4wByiO9RhfL+qwoxTg0FMwKQsNg6d0QU7pAw==\",\n  \"https://atomicdata.dev/properties/signer\": \"https://surfy.ddns.net/agents/9YCs7htDdF4yBAiA4HuHgjsafg+xZIrtZNELz4msCmc=\",\n  \"https://atomicdata.dev/properties/subject\": \"https://atomicdata.dev/test\"\n}\n```\n\nThis Commit can be sent to any Atomic Server.\nThis server, in turn, should verify the signature and the author's rights before the server applies the Commit.\n\n### Calculating the signature\n\nThe signature is a base64 encoded Ed25519 signature of the deterministically serialized Commit.\nCalculating the signature is a delicate process that should be followed to the letter - even a single character in the wrong place will result in an incorrect signature, which makes the Commit invalid.\n\nThe first step is **serializing the commit deterministically**.\nThis means that the process will always end in the exact same string.\n\n- Serialize the Commit as JSON-AD.\n- Do not serialize the signature field.\n- Do not include empty objects or arrays.\n- If `destroy` is false, do not include it.\n- All keys are sorted alphabetically - both in the root object, as in any nested objects.\n- The JSON-AD is minified: no newlines, no spaces.\n\nThis will result in a string.\nThe next step is to sign this string using the Ed25519 private key from the Author.\nThis signature is a byte array, which should be encoded in base64 for serialization.\nMake sure that the Author's URL resolves to a Resource that contains the linked public key.\n\nCongratulations, you've just created a valid Commit!\n\nHere are currently working implementations of this process, including serialization and signing (links are permalinks).\n\n- [in Rust (atomic-lib)](https://github.com/atomicdata-dev/atomic-server/blob/ceb88c1ae58811f2a9e6bacb7eaa39a2a7aa1513/lib/src/commit.rs#L81).\n- [in Typescript / Javascript (atomic-data-browser)](https://github.com/atomicdata-dev/atomic-data-browser/blob/fc899bb2cf54bdff593ee6b4debf52e20a85619e/src/atomic-lib/commit.ts#L51).\n\nIf you want validate your implementation, check out the tests for these two projects.\n\n### Applying the Commit\n\nIf you're on the receiving end of a Commit (e.g. if you're writing a server or a client who has to parse Commits), you will _apply_ the Commit to your Store.\nIf you have to _persist_ the Commit, you must perform all of the checks.\nIf you're writing a client, and you trust the source of the Commit, you can probably skip the validation steps.\n\nHere's how you apply a Commit:\n\n1. Check if the Subject URL is valid\n2. Validate the signature. This means serialize the Commit deterministically (see above), check the Agent's publickey (you might need to fetch this one), verify if the signature matches.\n3. Check if the timestamp matches is OK. I think an acceptable window is 10 seconds.\n4. If the Commit is for an existing resource, get it.\n5. Validate the Rights of the one making the Commit.\n6. Check if the `previousCommit` of the Commit matches with the `previousCommit` of the Resource.\n7. Iterate over the `set` fields. Overwrite existing, or add the new Values. Make sure the Datatypes match with the respective Properties.\n8. Iterate over the `remove` fields. Remove existing properties.\n9. If the Resource has one or more classes, check if the required Properties are there.\n10. You might want to perform some custom validations now (e.g. if you accept an Invite, you should make sure that the one creating the Invite has the correct rights to actually make it!)\n11. Store the created Commit as a Resource, and store the modified Resource!\n\n## Limitations\n\n- Commits adjust **only one Resource at a time**, which means that you cannot change multiple in one commit.\n- The one creating the Commit will **need to sign it**, which may make clients that write data more complicated than you'd like. You can also let Servers write Commits, but this makes them less verifiable / decentralized.\n- Commits require signatures, which means **key management**. Doing this securely is no trivial matter.\n- The signatures **require JSON-AD** serialization\n- If your implementation persists all Commits, you might need to **store a lot of data**.\n",
    "https://atomicdata.dev/properties/isA": [
      "https://atomicdata.dev/classes/Class"
    ],
    "https://atomicdata.dev/properties/recommends": [
      "https://atomicdata.dev/properties/destroy",
      "https://atomicdata.dev/properties/isGenesis",
      "https://atomicdata.dev/properties/previousCommit",
      "https://atomicdata.dev/properties/remove",
      "https://atomicdata.dev/properties/set",
      "https://atomicdata.dev/properties/push",
      "https://atomicdata.dev/properties/loroUpdate"
    ],
    "https://atomicdata.dev/properties/requires": [
      "https://atomicdata.dev/properties/createdAt",
      "https://atomicdata.dev/properties/signature",
      "https://atomicdata.dev/properties/signer",
      "https://atomicdata.dev/properties/subject"
    ],
    "https://atomicdata.dev/properties/parent": "https://atomicdata.dev/classes",
    "https://atomicdata.dev/properties/shortname": "commit"
  },
  {
    "@id": "https://atomicdata.dev/classes/Document",
    "https://atomicdata.dev/properties/description": "A nice documnet",
    "https://atomicdata.dev/properties/isA": [
      "https://atomicdata.dev/classes/Class"
    ],
    "https://atomicdata.dev/properties/recommends": [
      "https://atomicdata.dev/properties/documents/elements",
      "https://atomicdata.dev/properties/name"
    ],
    "https://atomicdata.dev/properties/parent": "https://atomicdata.dev/classes",
    "https://atomicdata.dev/properties/shortname": "document"
  },
  {
    "@id": "https://atomicdata.dev/classes/Drive",
    "https://atomicdata.dev/properties/description": "The Drive node is at the top of the hierarchy in an Atomic Server. It can be thought of as a hard drive at the top of a filesystem. It can be used as a starting point to navigate to any Resource. A Drive needs to provide read and write access at least to one node. Every Drive has a unique cryptographic identity.",
    "https://atomicdata.dev/properties/isA": [
      "https://atomicdata.dev/classes/Class"
    ],
    "https://atomicdata.dev/properties/requires": [],
    "https://atomicdata.dev/properties/recommends": [
      "https://atomicdata.dev/properties/read",
      "https://atomicdata.dev/properties/children",
      "https://atomicdata.dev/properties/description",
      "https://atomicdata.dev/properties/subresources",
      "https://atomicdata.dev/properties/write",
      "https://atomicdata.dev/properties/name",
      "https://atomicdata.dev/properties/llm-txt"
    ],
    "https://atomicdata.dev/properties/parent": "https://atomicdata.dev/classes",
    "https://atomicdata.dev/properties/shortname": "drive"
  },
  {
    "@id": "https://atomicdata.dev/classes/elements/Paragraph",
    "https://atomicdata.dev/properties/description": "A single paragraph in a Document",
    "https://atomicdata.dev/properties/isA": [
      "https://atomicdata.dev/classes/Class"
    ],
    "https://atomicdata.dev/properties/requires": [
      "https://atomicdata.dev/properties/description",
      "https://atomicdata.dev/properties/parent"
    ],
    "https://atomicdata.dev/properties/parent": "https://atomicdata.dev/classes",
    "https://atomicdata.dev/properties/shortname": "paragraph"
  },
  {
    "@id": "https://atomicdata.dev/classes/Endpoint",
    "https://atomicdata.dev/properties/description": "Endpoints are dynamic Resources, which means that their values can be generated by a computer. They can be used to do things like construct, filter and sort lists (done in [Collections](https://atomicdata.dev/classes/Collection), for example), or to construct a version of a resource (see the [Version endpoint](https://atomicdata.dev/version)).\nen you request an Endpoint _without any query parameters_ (e.g. `https://atomicdata.dev/version`), you will receive a description of the endpoint. In this description, you will see which query parameters can be used.\n\nWhen you request the Endpoint _with a filled in query param_, you will get some constructed / generated Resource depending on the Endpoint. For example, if you pass a commit URL to the earlier mentioned `/version` endpoint, you'll see a specific version of the Resource that the Commit URL describes.\n[`https://atomicdata.dev/show?subject=https...a_long_string`](https://atomicdata.dev/show?subject=https%3A%2F%2Fatomicdata.dev%2Fversion%3Fsubject%3Dhttps%253A%252F%252Fatomicdata.dev%252Fcommits%252F03GfY%252F0coC3TglVCxL2hHCYSlRmVCDGAu40OdUVw3PypidYp06bMOts7q67%252B51vY0XxfEn4NCqLi6LCO17%252BrDw%253D%253D)",
    "https://atomicdata.dev/properties/isA": [
      "https://atomicdata.dev/classes/Class"
    ],
    "https://atomicdata.dev/properties/requires": [
      "https://atomicdata.dev/properties/description",
      "https://atomicdata.dev/properties/endpoint/parameters"
    ],
    "https://atomicdata.dev/properties/parent": "https://atomicdata.dev/classes",
    "https://atomicdata.dev/properties/shortname": "endpoint"
  },
  {
    "@id": "https://atomicdata.dev/classes/File",
    "https://atomicdata.dev/properties/description": "A single binary file.",
    "https://atomicdata.dev/properties/isA": [
      "https://atomicdata.dev/classes/Class"
    ],
    "https://atomicdata.dev/properties/requires": [
      "https://atomicdata.dev/properties/downloadURL"
    ],
    "https://atomicdata.dev/properties/recommends": [
      "https://atomicdata.dev/properties/description",
      "https://atomicdata.dev/properties/filesize",
      "https://atomicdata.dev/properties/filename",
      "https://atomicdata.dev/properties/checksum",
      "https://atomicdata.dev/properties/blake3",
      "https://atomicdata.dev/properties/blob",
      "https://atomicdata.dev/properties/chunks",
      "https://atomicdata.dev/properties/mimetype",
      "https://atomicdata.dev/properties/internalId"
    ],
    "https://atomicdata.dev/properties/parent": "https://atomicdata.dev/classes",
    "https://atomicdata.dev/properties/shortname": "file"
  },
  {
    "@id": "https://atomicdata.dev/classes/Importer",
    "https://atomicdata.dev/properties/description": "An Importer helps with importing data from external sources. You can post JSON-AD bodies to it, or give it a URL of a JSON-AD resource, and it will import the data into Atomic Data.",
    "https://atomicdata.dev/properties/isA": [
      "https://atomicdata.dev/classes/Class"
    ],
    "https://atomicdata.dev/properties/endpoint/parameters": [
      "https://atomicdata.dev/properties/importer/json"
    ],
    "https://atomicdata.dev/properties/parent": "https://atomicdata.dev/classes",
    "https://atomicdata.dev/properties/shortname": "importer"
  },
  {
    "@id": "https://atomicdata.dev/classes/Invite",
    "https://atomicdata.dev/properties/description": "An Invite allows you to share a link that, upon opening, grants the visitor some read or write rights. See the [Invite docs](https://docs.atomicdata.dev/invitations.html).",
    "https://atomicdata.dev/properties/isA": [
      "https://atomicdata.dev/classes/Class"
    ],
    "https://atomicdata.dev/properties/requires": [
      "https://atomicdata.dev/properties/invite/target"
    ],
    "https://atomicdata.dev/properties/recommends": [
      "https://atomicdata.dev/properties/invite/write",
      "https://atomicdata.dev/properties/createdBy",
      "https://atomicdata.dev/properties/invite/users",
      "https://atomicdata.dev/properties/invite/usagesLeft"
    ],
    "https://atomicdata.dev/properties/endpoint/parameters": [
      "https://atomicdata.dev/properties/invite/publicKey",
      "https://atomicdata.dev/properties/invite/agent"
    ],
    "https://atomicdata.dev/properties/parent": "https://atomicdata.dev/classes",
    "https://atomicdata.dev/properties/shortname": "invite"
  },
  {
    "@id": "https://atomicdata.dev/classes/Redirect",
    "https://atomicdata.dev/properties/description": "A Resource that should redirect the browser to a new location. It can also set a `redirectAgent`, which is used in Invites to create an Agent Resource on the Server from a Public Key that the user posesses. See the [Invite docs](https://docs.atomicdata.dev/invitations.html).",
    "https://atomicdata.dev/properties/isA": [
      "https://atomicdata.dev/classes/Class"
    ],
    "https://atomicdata.dev/properties/requires": [
      "https://atomicdata.dev/properties/destination"
    ],
    "https://atomicdata.dev/properties/recommends": [
      "https://atomicdata.dev/properties/invite/redirectAgent"
    ],
    "https://atomicdata.dev/properties/parent": "https://atomicdata.dev/classes",
    "https://atomicdata.dev/properties/shortname": "redirect"
  },
  {
    "@id": "https://atomicdata.dev/datatypes/atomicURL",
    "https://atomicdata.dev/properties/description": "Every single page or thing that you look at in Atomic Data, is a Resource. The resource datatype can either be a link to a Resource (an HTTP URL) or a Nested Resource. When a HTTP(S) GET request is sent to that URL with an `Accept: application/ad+json` header, the server should reply with MIME type `application/ad+json`, and a body with valid [JSON-AD](https://docs.atomicdata.dev/core/json-ad.html) describing the entire resource. Contrary to regular Resources, Nested Resources don't have their own HTTP URL, and only exist in the context of their outer resource. However, you can use [Atomic Paths](https://docs.atomicdata.dev/core/paths.html) to provide resolvable identifiers to Nested Resources. In JSON, a Resource is either an HTTP URL string, or a nested Object.",
    "https://atomicdata.dev/properties/isA": [
      "https://atomicdata.dev/classes/Datatype"
    ],
    "https://atomicdata.dev/properties/parent": "https://atomicdata.dev/datatypes",
    "https://atomicdata.dev/properties/shortname": "resource"
  },
  {
    "@id": "https://atomicdata.dev/datatypes/boolean",
    "https://atomicdata.dev/properties/description": "Either `true` or `false`. In JSON-AD, this uses the native JSON boolean values.",
    "https://atomicdata.dev/properties/isA": [
      "https://atomicdata.dev/classes/Datatype"
    ],
    "https://atomicdata.dev/properties/parent": "https://atomicdata.dev/datatypes",
    "https://atomicdata.dev/properties/shortname": "boolean"
  },
  {
    "@id": "https://atomicdata.dev/datatypes/date",
    "https://atomicdata.dev/properties/description": "ISO date _without time_.\nYYYY-MM-DD.\n\ne.g. `1991-01-20`\n.",
    "https://atomicdata.dev/properties/isA": [
      "https://atomicdata.dev/classes/Datatype"
    ],
    "https://atomicdata.dev/properties/parent": "https://atomicdata.dev/datatypes",
    "https://atomicdata.dev/properties/shortname": "date"
  },
  {
    "@id": "https://atomicdata.dev/datatypes/float",
    "https://atomicdata.dev/properties/description": "Number with a comma / decimal place. Not an integer. Serialized as string with a dot `1.123`. In JSON-AD, this uses the Number datatype.",
    "https://atomicdata.dev/properties/isA": [
      "https://atomicdata.dev/classes/Datatype"
    ],
    "https://atomicdata.dev/properties/parent": "https://atomicdata.dev/datatypes",
    "https://atomicdata.dev/properties/shortname": "float"
  },
  {
    "@id": "https://atomicdata.dev/datatypes/integer",
    "https://atomicdata.dev/properties/description": "Signed Integer, max 64 bit.\nMax value: [`9223372036854775807`](https://en.wikipedia.org/wiki/9,223,372,036,854,775,807)\n\ne.g. `-420`\nIn JSON-AD, this uses the Number datatype.",
    "https://atomicdata.dev/properties/isA": [
      "https://atomicdata.dev/classes/Datatype"
    ],
    "https://atomicdata.dev/properties/parent": "https://atomicdata.dev/datatypes",
    "https://atomicdata.dev/properties/shortname": "integer"
  },
  {
    "@id": "https://atomicdata.dev/datatypes/markdown",
    "https://atomicdata.dev/properties/description": "Markdown UTF-8 String with [Commonmark syntax](https://commonmark.org/). [Here's a tutorial](https://commonmark.org/help/tutorial/).",
    "https://atomicdata.dev/properties/isA": [
      "https://atomicdata.dev/classes/Datatype"
    ],
    "https://atomicdata.dev/properties/parent": "https://atomicdata.dev/datatypes",
    "https://atomicdata.dev/properties/shortname": "markdown"
  },
  {
    "@id": "https://atomicdata.dev/datatypes/resourceArray",
    "https://atomicdata.dev/properties/description": "An array of Resources. Every single Resource can either be an Atomic URL (an HTTPS URL resolving to an Atomic Data Resource), or a Nested Resource. In JSON-AD, a resourceArray is an Array with HTTP strings and nested objects for Nested Resources.",
    "https://atomicdata.dev/properties/isA": [
      "https://atomicdata.dev/classes/Datatype"
    ],
    "https://atomicdata.dev/properties/parent": "https://atomicdata.dev/datatypes",
    "https://atomicdata.dev/properties/shortname": "resource-array"
  },
  {
    "@id": "https://atomicdata.dev/datatypes/slug",
    "https://atomicdata.dev/properties/description": "Lowercase string without spaces. Only characters, numbers and dashes (`-`) in between. These are used for things like JSON keys.",
    "https://atomicdata.dev/properties/isA": [
      "https://atomicdata.dev/classes/Datatype"
    ],
    "https://atomicdata.dev/properties/parent": "https://atomicdata.dev/datatypes",
    "https://atomicdata.dev/properties/shortname": "slug"
  },
  {
    "@id": "https://atomicdata.dev/datatypes/string",
    "https://atomicdata.dev/properties/description": "A UTF-8 string. Allows newlines with `\\n`. This is a generic string datatype - don't use this for things like [markdown](https://atomicdata.dev/datatypes/markdown) or html.",
    "https://atomicdata.dev/properties/isA": [
      "https://atomicdata.dev/classes/Datatype"
    ],
    "https://atomicdata.dev/properties/parent": "https://atomicdata.dev/datatypes",
    "https://atomicdata.dev/properties/shortname": "string"
  },
  {
    "@id": "https://atomicdata.dev/datatypes/timestamp",
    "https://atomicdata.dev/properties/description": "Similar to [Unix Timestamp](https://www.unixtimestamp.com/).\nMilliseconds since midnight UTC 1970 jan 01 (aka the [Unix Epoch](https://en.wikipedia.org/wiki/Unix_time)).\nUse this for most DateTime fields.\nSigned 64 bit integer (instead of 32 bit in Unix systems).\n\ne.g. `1596798919` (= 07 Aug 2020 11:15:19)",
    "https://atomicdata.dev/properties/isA": [
      "https://atomicdata.dev/classes/Datatype"
    ],
    "https://atomicdata.dev/properties/parent": "https://atomicdata.dev/datatypes",
    "https://atomicdata.dev/properties/shortname": "timestamp"
  },
  {
    "@id": "https://atomicdata.dev/agents/publicAgent",
    "https://atomicdata.dev/properties/description": "This abstract Agent represents all potential users or visitors. If you want a Resource to be publicly available or editable, use this in your [read](https://atomicdata.dev/properties/read) or [write](https://atomicdata.dev/properties/read) property.",
    "https://atomicdata.dev/properties/parent": "https://atomicdata.dev/agents",
    "https://atomicdata.dev/properties/shortname": "public-agent"
  },
  {
    "@id": "https://atomicdata.dev/datatypes/uri",
    "https://atomicdata.dev/properties/description": "A Uniform Resource Identifier (URI) is a unique sequence of characters that identifies a logical or physical resource used by web technologies",
    "https://atomicdata.dev/properties/isA": [
      "https://atomicdata.dev/classes/Datatype"
    ],
    "https://atomicdata.dev/properties/parent": "https://atomicdata.dev/datatypes",
    "https://atomicdata.dev/properties/shortname": "uri"
  },
  {
    "@id": "https://atomicdata.dev/datatypes/json",
    "https://atomicdata.dev/properties/description": "An untyped JSON object.",
    "https://atomicdata.dev/properties/isA": [
      "https://atomicdata.dev/classes/Datatype"
    ],
    "https://atomicdata.dev/properties/parent": "https://atomicdata.dev/datatypes",
    "https://atomicdata.dev/properties/shortname": "json"
  },
  {
    "@id": "https://atomicdata.dev/classes/Folder",
    "https://atomicdata.dev/properties/description": "Acts as a parent for resources, useful for ordering data.",
    "https://atomicdata.dev/properties/isA": [
      "https://atomicdata.dev/classes/Class"
    ],
    "https://atomicdata.dev/properties/parent": "https://atomicdata.dev/classes",
    "https://atomicdata.dev/properties/recommends": [
      "https://atomicdata.dev/properties/subresources",
      "https://atomicdata.dev/property/display-style"
    ],
    "https://atomicdata.dev/properties/requires": [
      "https://atomicdata.dev/properties/name"
    ],
    "https://atomicdata.dev/properties/shortname": "folder"
  },
  {
    "@id": "https://atomicdata.dev/class/Bookmark",
    "https://atomicdata.dev/properties/description": "A named reference to a web page. Can include a markdown version of the HTML document.",
    "https://atomicdata.dev/properties/isA": [
      "https://atomicdata.dev/classes/Class"
    ],
    "https://atomicdata.dev/properties/parent": "https://atomicdata.dev/classes",
    "https://atomicdata.dev/properties/recommends": [
      "https://atomicdata.dev/property/preview",
      "https://atomicdata.dev/properties/description",
      "https://atomicdata.dev/properties/imageUrl"
    ],
    "https://atomicdata.dev/properties/requires": [
      "https://atomicdata.dev/properties/name",
      "https://atomicdata.dev/property/url"
    ],
    "https://atomicdata.dev/properties/shortname": "bookmark"
  },
  {
    "@id": "https://atomicdata.dev/ontology/data-browser/property/tag-list",
    "https://atomicdata.dev/properties/classtype": "https://atomicdata.dev/classes/Tag",
    "https://atomicdata.dev/properties/datatype": "https://atomicdata.dev/datatypes/resourceArray",
    "https://atomicdata.dev/properties/description": "List of tags available in a drive.",
    "https://atomicdata.dev/properties/isA": [
      "https://atomicdata.dev/classes/Property"
    ],
    "https://atomicdata.dev/properties/parent": "https://atomicdata.dev/properties",
    "https://atomicdata.dev/properties/shortname": "tag-list"
  },
  {
    "@id": "https://atomicdata.dev/classes/DocumentV2",
    "https://atomicdata.dev/properties/description": "A collaborative document containing rich text",
    "https://atomicdata.dev/properties/isA": [
      "https://atomicdata.dev/classes/Class"
    ],
    "https://atomicdata.dev/properties/parent": "https://atomicdata.dev/classes",
    "https://atomicdata.dev/properties/recommends": [
      "https://atomicdata.dev/properties/documentContent"
    ],
    "https://atomicdata.dev/properties/requires": [
      "https://atomicdata.dev/properties/name"
    ],
    "https://atomicdata.dev/properties/shortname": "document-v2"
  },
  {
    "@id": "https://atomicdata.dev/properties/documentContent",
    "https://atomicdata.dev/properties/datatype": "https://atomicdata.dev/datatypes/lorodoc",
    "https://atomicdata.dev/properties/description": "The content of a Document",
    "https://atomicdata.dev/properties/isA": [
      "https://atomicdata.dev/classes/Property"
    ],
    "https://atomicdata.dev/properties/parent": "https://atomicdata.dev/properties",
    "https://atomicdata.dev/properties/shortname": "document-content"
  },
  {
    "@id": "https://atomicdata.dev/properties/subdomain",
    "https://atomicdata.dev/properties/datatype": "https://atomicdata.dev/datatypes/slug",
    "https://atomicdata.dev/properties/description": "The subdomain associated with a Drive.",
    "https://atomicdata.dev/properties/isA": [
      "https://atomicdata.dev/classes/Property"
    ],
    "https://atomicdata.dev/properties/parent": "https://atomicdata.dev/properties",
    "https://atomicdata.dev/properties/shortname": "subdomain"
  },
  {
    "@id": "https://atomicdata.dev/properties/isUninitialized",
    "https://atomicdata.dev/properties/datatype": "https://atomicdata.dev/datatypes/boolean",
    "https://atomicdata.dev/properties/description": "True if the server node has not been initialized yet.",
    "https://atomicdata.dev/properties/isA": [
      "https://atomicdata.dev/classes/Property"
    ],
    "https://atomicdata.dev/properties/parent": "https://atomicdata.dev/properties",
    "https://atomicdata.dev/properties/shortname": "is-uninitialized"
  },
  {
    "@id": "https://atomicdata.dev/properties/initialDrive",
    "https://atomicdata.dev/properties/datatype": "https://atomicdata.dev/datatypes/atomicURL",
    "https://atomicdata.dev/properties/description": "The DID of the drive that should be mapped to the current host during onboarding.",
    "https://atomicdata.dev/properties/isA": [
      "https://atomicdata.dev/classes/Property"
    ],
    "https://atomicdata.dev/properties/parent": "https://atomicdata.dev/properties",
    "https://atomicdata.dev/properties/shortname": "initial-drive"
  },
  {
    "@id": "https://atomicdata.dev/classes/Server",
    "https://atomicdata.dev/properties/description": "An Atomic Data server node. Served by the `/server` endpoint, which describes the node you are talking to.",
    "https://atomicdata.dev/properties/isA": [
      "https://atomicdata.dev/classes/Class"
    ],
    "https://atomicdata.dev/properties/recommends": [
      "https://atomicdata.dev/properties/name",
      "https://atomicdata.dev/properties/server/nodeId",
      "https://atomicdata.dev/properties/server/version",
      "https://atomicdata.dev/properties/server/managed",
      "https://atomicdata.dev/properties/server/portalUrl",
      "https://atomicdata.dev/properties/server/peers",
      "https://atomicdata.dev/properties/isUninitialized",
      "https://atomicdata.dev/properties/server/hostMode",
      "https://atomicdata.dev/properties/server/acceptsNewDrives",
      "https://atomicdata.dev/properties/server/ownerSet"
    ],
    "https://atomicdata.dev/properties/requires": [
      "https://atomicdata.dev/properties/shortname"
    ],
    "https://atomicdata.dev/properties/parent": "https://atomicdata.dev/classes",
    "https://atomicdata.dev/properties/shortname": "server"
  },
  {
    "@id": "https://atomicdata.dev/properties/loroUpdate",
    "https://atomicdata.dev/properties/datatype": "https://atomicdata.dev/datatypes/lorodoc",
    "https://atomicdata.dev/properties/description": "A Loro CRDT binary update for the resource, serialized as a base64 string.",
    "https://atomicdata.dev/properties/isA": [
      "https://atomicdata.dev/classes/Property"
    ],
    "https://atomicdata.dev/properties/parent": "https://atomicdata.dev/properties",
    "https://atomicdata.dev/properties/shortname": "loro-update"
  },
  {
    "@id": "https://atomicdata.dev/datatypes/lorodoc",
    "https://atomicdata.dev/properties/description": "A Loro CRDT document binary, serialized as a base64 string.",
    "https://atomicdata.dev/properties/isA": [
      "https://atomicdata.dev/classes/Datatype"
    ],
    "https://atomicdata.dev/properties/parent": "https://atomicdata.dev/datatypes",
    "https://atomicdata.dev/properties/shortname": "lorodoc"
  },
  {
    "@id": "https://atomicdata.dev/datatypes/localizedText",
    "https://atomicdata.dev/properties/description": "Translated strings, as a JSON object mapping BCP 47 language tags (e.g. `en`, `nl-BE`) to strings: `{\"en\": \"Hello\", \"nl\": \"Hallo\"}`. Use for short user-facing text that varies per language while the rest of the resource is shared. For long-form content that diverges per language, prefer a separate resource per language linked with `translationOf`.",
    "https://atomicdata.dev/properties/isA": [
      "https://atomicdata.dev/classes/Datatype"
    ],
    "https://atomicdata.dev/properties/parent": "https://atomicdata.dev/datatypes",
    "https://atomicdata.dev/properties/shortname": "localized-text"
  },
  {
    "@id": "https://atomicdata.dev/ontology/canvas",
    "https://atomicdata.dev/properties/parent": "https://atomicdata.dev"
  },
  {
    "@id": "https://atomicdata.dev/ontology/canvas/strokeData",
    "https://atomicdata.dev/properties/datatype": "https://atomicdata.dev/datatypes/json",
    "https://atomicdata.dev/properties/description": "Array of stroke objects, each containing color (int), width (float), and path (array of [x, y] coordinate pairs). Stored as a LoroList of LoroMaps so concurrent strokes from multiple devices merge per-element.",
    "https://atomicdata.dev/properties/isA": [
      "https://atomicdata.dev/classes/Property"
    ],
    "https://atomicdata.dev/properties/parent": "https://atomicdata.dev/ontology/canvas",
    "https://atomicdata.dev/properties/shortname": "stroke-data"
  },
  {
    "@id": "https://atomicdata.dev/ontology/canvas/dateEdited",
    "https://atomicdata.dev/properties/datatype": "https://atomicdata.dev/datatypes/timestamp",
    "https://atomicdata.dev/properties/description": "Unix milliseconds when this canvas was last edited (strokes, folder, etc.). Used for gallery sort order.",
    "https://atomicdata.dev/properties/isA": [
      "https://atomicdata.dev/classes/Property"
    ],
    "https://atomicdata.dev/properties/parent": "https://atomicdata.dev/ontology/canvas",
    "https://atomicdata.dev/properties/shortname": "date-edited"
  },
  {
    "@id": "https://atomicdata.dev/ontology/canvas/Canvas",
    "https://atomicdata.dev/properties/description": "An infinite canvas drawing. Contains stroke data for pen/brush drawings with color, width, and path points.",
    "https://atomicdata.dev/properties/isA": [
      "https://atomicdata.dev/classes/Class"
    ],
    "https://atomicdata.dev/properties/parent": "https://atomicdata.dev/ontology/canvas",
    "https://atomicdata.dev/properties/recommends": [
      "https://atomicdata.dev/properties/name",
      "https://atomicdata.dev/ontology/canvas/strokeData",
      "https://atomicdata.dev/ontology/canvas/dateEdited"
    ],
    "https://atomicdata.dev/properties/requires": [],
    "https://atomicdata.dev/properties/shortname": "canvas"
  },
  {
    "@id": "https://atomicdata.dev/property/display-style",
    "https://atomicdata.dev/properties/datatype": "https://atomicdata.dev/datatypes/atomicURL",
    "https://atomicdata.dev/properties/description": "How a folder (or similar container) should visually display its contents. Points to a DisplayStyle.",
    "https://atomicdata.dev/properties/isA": [
      "https://atomicdata.dev/classes/Property"
    ],
    "https://atomicdata.dev/properties/parent": "https://atomicdata.dev",
    "https://atomicdata.dev/properties/shortname": "display-style"
  },
  {
    "@id": "https://atomicdata.dev/property/preview",
    "https://atomicdata.dev/properties/datatype": "https://atomicdata.dev/datatypes/markdown",
    "https://atomicdata.dev/properties/description": "A rendered preview (markdown) of a linked resource, e.g. the body of a Bookmark's target URL.",
    "https://atomicdata.dev/properties/isA": [
      "https://atomicdata.dev/classes/Property"
    ],
    "https://atomicdata.dev/properties/parent": "https://atomicdata.dev",
    "https://atomicdata.dev/properties/shortname": "preview"
  },
  {
    "@id": "https://atomicdata.dev/properties/icon",
    "https://atomicdata.dev/properties/classtype": "https://atomicdata.dev/classes/File",
    "https://atomicdata.dev/properties/datatype": "https://atomicdata.dev/datatypes/atomicURL",
    "https://atomicdata.dev/properties/description": "A small square image File shown as this resource's icon or avatar wherever its name appears. Takes precedence over an emoji.",
    "https://atomicdata.dev/properties/isA": [
      "https://atomicdata.dev/classes/Property"
    ],
    "https://atomicdata.dev/properties/parent": "https://atomicdata.dev/properties",
    "https://atomicdata.dev/properties/shortname": "icon"
  },
  {
    "@id": "https://atomicdata.dev/properties/coverImage",
    "https://atomicdata.dev/properties/classtype": "https://atomicdata.dev/classes/File",
    "https://atomicdata.dev/properties/datatype": "https://atomicdata.dev/datatypes/atomicURL",
    "https://atomicdata.dev/properties/description": "An image File shown as a decorative banner at the top of this resource's page.",
    "https://atomicdata.dev/properties/isA": [
      "https://atomicdata.dev/classes/Property"
    ],
    "https://atomicdata.dev/properties/parent": "https://atomicdata.dev/properties",
    "https://atomicdata.dev/properties/shortname": "cover-image"
  },
  {
    "@id": "https://atomicdata.dev/properties/coverImageFocus",
    "https://atomicdata.dev/properties/datatype": "https://atomicdata.dev/datatypes/float",
    "https://atomicdata.dev/properties/description": "Vertical focal point (0-1) of the cover image, used as the CSS object-position Y value when rendering the banner. Default 0.5 (centered).",
    "https://atomicdata.dev/properties/isA": [
      "https://atomicdata.dev/classes/Property"
    ],
    "https://atomicdata.dev/properties/parent": "https://atomicdata.dev/properties",
    "https://atomicdata.dev/properties/shortname": "cover-image-focus"
  },
  {
    "@id": "https://atomicdata.dev/property/url",
    "https://atomicdata.dev/properties/datatype": "https://atomicdata.dev/datatypes/string",
    "https://atomicdata.dev/properties/description": "An absolute URL pointing to an external web resource.",
    "https://atomicdata.dev/properties/isA": [
      "https://atomicdata.dev/classes/Property"
    ],
    "https://atomicdata.dev/properties/parent": "https://atomicdata.dev",
    "https://atomicdata.dev/properties/shortname": "url"
  },
  {
    "@id": "https://atomicdata.dev/class/DisplayStyle",
    "https://atomicdata.dev/properties/description": "One of the display modes a Folder (or similar container) can render its children in — e.g. list, grid, card.",
    "https://atomicdata.dev/properties/isA": [
      "https://atomicdata.dev/classes/Class"
    ],
    "https://atomicdata.dev/properties/parent": "https://atomicdata.dev",
    "https://atomicdata.dev/properties/recommends": [],
    "https://atomicdata.dev/properties/requires": [
      "https://atomicdata.dev/properties/name"
    ],
    "https://atomicdata.dev/properties/shortname": "display-style"
  },
  {
    "@id": "https://atomicdata.dev/properties/sortOrder",
    "https://atomicdata.dev/properties/datatype": "https://atomicdata.dev/datatypes/float",
    "https://atomicdata.dev/properties/parent": "https://atomicdata.dev/properties",
    "https://atomicdata.dev/properties/description": "Fractional sort key used to order a resource among its siblings under the same parent. Lower values come first. On reorder, set the dragged item's sortOrder to the midpoint between its new neighbors' sortOrders (or the surrounding values' `createdAt` if a neighbor has none yet) so existing siblings never need to be renumbered.",
    "https://atomicdata.dev/properties/isA": [
      "https://atomicdata.dev/classes/Property"
    ],
    "https://atomicdata.dev/properties/shortname": "sort-order"
  },
  {
    "@id": "https://atomicdata.dev/properties/llm-txt",
    "https://atomicdata.dev/properties/datatype": "https://atomicdata.dev/datatypes/markdown",
    "https://atomicdata.dev/properties/description": "Information for an AI agent about a drive. This could include things like common patterns or where to find important resources.",
    "https://atomicdata.dev/properties/isA": [
      "https://atomicdata.dev/classes/Property"
    ],
    "https://atomicdata.dev/properties/parent": "https://atomicdata.dev/properties",
    "https://atomicdata.dev/properties/shortname": "llm-txt"
  },
  {
    "@id": "https://atomicdata.dev/classes/PlainText",
    "https://atomicdata.dev/properties/description": "A simple class with a name and a description used to store plain text as resource.",
    "https://atomicdata.dev/properties/isA": [
      "https://atomicdata.dev/classes/Class"
    ],
    "https://atomicdata.dev/properties/parent": "https://atomicdata.dev/classes",
    "https://atomicdata.dev/properties/requires": [
      "https://atomicdata.dev/properties/name",
      "https://atomicdata.dev/properties/description"
    ],
    "https://atomicdata.dev/properties/shortname": "plain-text"
  },
  {
    "@id": "https://atomicdata.dev/properties/search/chunks",
    "https://atomicdata.dev/properties/datatype": "https://atomicdata.dev/datatypes/json",
    "https://atomicdata.dev/properties/description": "A JSON Array of text-chunks returned from a (vector)search endpoint",
    "https://atomicdata.dev/properties/isA": [
      "https://atomicdata.dev/classes/Property"
    ],
    "https://atomicdata.dev/properties/isDynamic": true,
    "https://atomicdata.dev/properties/isLocked": true,
    "https://atomicdata.dev/properties/parent": "https://atomicdata.dev/properties",
    "https://atomicdata.dev/properties/shortname": "search-chunks"
  },
  {
    "@id": "https://atomicdata.dev/properties/server/nodeId",
    "https://atomicdata.dev/properties/datatype": "https://atomicdata.dev/datatypes/string",
    "https://atomicdata.dev/properties/description": "The Iroh node identifier of this server, as a `did:ad:node:...` DID. Peers use it to reach this node directly. Not set if the peer-to-peer transport is not running.",
    "https://atomicdata.dev/properties/isA": [
      "https://atomicdata.dev/classes/Property"
    ],
    "https://atomicdata.dev/properties/parent": "https://atomicdata.dev/properties",
    "https://atomicdata.dev/properties/shortname": "node-id"
  },
  {
    "@id": "https://atomicdata.dev/properties/server/version",
    "https://atomicdata.dev/properties/datatype": "https://atomicdata.dev/datatypes/string",
    "https://atomicdata.dev/properties/description": "The version of atomic-server this node is running.",
    "https://atomicdata.dev/properties/isA": [
      "https://atomicdata.dev/classes/Property"
    ],
    "https://atomicdata.dev/properties/parent": "https://atomicdata.dev/properties",
    "https://atomicdata.dev/properties/shortname": "version"
  },
  {
    "@id": "https://atomicdata.dev/properties/server/managed",
    "https://atomicdata.dev/properties/datatype": "https://atomicdata.dev/datatypes/boolean",
    "https://atomicdata.dev/properties/description": "True if this node is managed by a control plane, rather than self-hosted.",
    "https://atomicdata.dev/properties/isA": [
      "https://atomicdata.dev/classes/Property"
    ],
    "https://atomicdata.dev/properties/parent": "https://atomicdata.dev/properties",
    "https://atomicdata.dev/properties/shortname": "managed"
  },
  {
    "@id": "https://atomicdata.dev/properties/server/portalUrl",
    "https://atomicdata.dev/properties/datatype": "https://atomicdata.dev/datatypes/string",
    "https://atomicdata.dev/properties/description": "The user-facing portal where a managed node is administered. Only set on managed nodes.",
    "https://atomicdata.dev/properties/isA": [
      "https://atomicdata.dev/classes/Property"
    ],
    "https://atomicdata.dev/properties/parent": "https://atomicdata.dev/properties",
    "https://atomicdata.dev/properties/shortname": "portal-url"
  },
  {
    "@id": "https://atomicdata.dev/properties/versionId",
    "https://atomicdata.dev/properties/datatype": "https://atomicdata.dev/datatypes/string",
    "https://atomicdata.dev/properties/description": "Identifies one version in a resource's Loro history. Opaque (base64url-encoded Loro Frontiers) — pass it to the `/version` endpoint, do not parse it.",
    "https://atomicdata.dev/properties/isA": [
      "https://atomicdata.dev/classes/Property"
    ],
    "https://atomicdata.dev/properties/parent": "https://atomicdata.dev/properties",
    "https://atomicdata.dev/properties/shortname": "version-id"
  },
  {
    "@id": "https://atomicdata.dev/properties/server/peers",
    "https://atomicdata.dev/properties/datatype": "https://atomicdata.dev/datatypes/resourceArray",
    "https://atomicdata.dev/properties/description": "The devices this node syncs with directly, as nested `Peer` resources. Reported by the `/server` endpoint, so a client — which is not itself a node — can see what its node is paired with.",
    "https://atomicdata.dev/properties/isA": [
      "https://atomicdata.dev/classes/Property"
    ],
    "https://atomicdata.dev/properties/parent": "https://atomicdata.dev/properties",
    "https://atomicdata.dev/properties/shortname": "peers"
  },
  {
    "@id": "https://atomicdata.dev/properties/server/hostMode",
    "https://atomicdata.dev/properties/datatype": "https://atomicdata.dev/datatypes/string",
    "https://atomicdata.dev/properties/description": "Who may create a new Drive on this node: `open` (anyone who can reach it) or `owner` (only the agent that owns the node). Absent on older nodes, which behave as `open`.",
    "https://atomicdata.dev/properties/isA": [
      "https://atomicdata.dev/classes/Property"
    ],
    "https://atomicdata.dev/properties/parent": "https://atomicdata.dev/properties",
    "https://atomicdata.dev/properties/shortname": "host-mode"
  },
  {
    "@id": "https://atomicdata.dev/properties/server/acceptsNewDrives",
    "https://atomicdata.dev/properties/datatype": "https://atomicdata.dev/datatypes/boolean",
    "https://atomicdata.dev/properties/description": "True if this node accepts a new Drive from whoever asks. False in owner mode, where new Drives are the owner's alone. Reading shared data and using an invited Drive are unaffected either way.",
    "https://atomicdata.dev/properties/isA": [
      "https://atomicdata.dev/classes/Property"
    ],
    "https://atomicdata.dev/properties/parent": "https://atomicdata.dev/properties",
    "https://atomicdata.dev/properties/shortname": "accepts-new-drives"
  },
  {
    "@id": "https://atomicdata.dev/properties/server/ownerSet",
    "https://atomicdata.dev/properties/datatype": "https://atomicdata.dev/datatypes/boolean",
    "https://atomicdata.dev/properties/description": "True if this node has been told which agent owns it.",
    "https://atomicdata.dev/properties/isA": [
      "https://atomicdata.dev/classes/Property"
    ],
    "https://atomicdata.dev/properties/parent": "https://atomicdata.dev/properties",
    "https://atomicdata.dev/properties/shortname": "owner-set"
  },
  {
    "@id": "https://atomicdata.dev/properties/peer/live",
    "https://atomicdata.dev/properties/datatype": "https://atomicdata.dev/datatypes/boolean",
    "https://atomicdata.dev/properties/description": "True while this peer holds an open connection to the node reporting it.",
    "https://atomicdata.dev/properties/isA": [
      "https://atomicdata.dev/classes/Property"
    ],
    "https://atomicdata.dev/properties/parent": "https://atomicdata.dev/properties",
    "https://atomicdata.dev/properties/shortname": "live"
  },
  {
    "@id": "https://atomicdata.dev/properties/peer/nodeId",
    "https://atomicdata.dev/properties/datatype": "https://atomicdata.dev/datatypes/string",
    "https://atomicdata.dev/properties/description": "A peer's Iroh node identity, as a `did:ad:node:...` DID.",
    "https://atomicdata.dev/properties/isA": [
      "https://atomicdata.dev/classes/Property"
    ],
    "https://atomicdata.dev/properties/parent": "https://atomicdata.dev/properties",
    "https://atomicdata.dev/properties/shortname": "node-id"
  },
  {
    "@id": "https://atomicdata.dev/properties/peer/deviceName",
    "https://atomicdata.dev/properties/datatype": "https://atomicdata.dev/datatypes/string",
    "https://atomicdata.dev/properties/description": "What a peer calls itself, learnt when it introduced itself over HELLO.",
    "https://atomicdata.dev/properties/isA": [
      "https://atomicdata.dev/classes/Property"
    ],
    "https://atomicdata.dev/properties/parent": "https://atomicdata.dev/properties",
    "https://atomicdata.dev/properties/shortname": "device-name"
  },
  {
    "@id": "https://atomicdata.dev/classes/Peer",
    "https://atomicdata.dev/properties/description": "Another device a node syncs with directly, over a peer-to-peer connection.",
    "https://atomicdata.dev/properties/isA": [
      "https://atomicdata.dev/classes/Class"
    ],
    "https://atomicdata.dev/properties/recommends": [
      "https://atomicdata.dev/properties/peer/nodeId",
      "https://atomicdata.dev/properties/peer/deviceName",
      "https://atomicdata.dev/properties/peer/live"
    ],
    "https://atomicdata.dev/properties/requires": [],
    "https://atomicdata.dev/properties/parent": "https://atomicdata.dev/classes",
    "https://atomicdata.dev/properties/shortname": "peer"
  }
]