atomic_lib 0.40.0

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
[
    {
        "@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/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/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/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/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/read",
        "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 read 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": "read"
    },
    {
        "@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/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/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/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/published-at",
        "https://atomicdata.dev/properties/datatype": "https://atomicdata.dev/datatypes/timestamp",
        "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/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/remove",
            "https://atomicdata.dev/properties/set"
        ],
        "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.",
        "https://atomicdata.dev/properties/isA": [
            "https://atomicdata.dev/classes/Class"
        ],
        "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/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/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"
    }
]