-
Notifications
You must be signed in to change notification settings - Fork 14
/
schemas.json
6042 lines (6042 loc) · 198 KB
/
schemas.json
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
{
"Thing": {
"name": "Thing",
"description": "The most generic type of item.",
"depth": 0
},
"Action": {
"name": "Action",
"description": "An action performed by a direct agent and indirect participants upon a direct object...",
"depth": 1,
"subClassOf": "Thing"
},
"AchieveAction": {
"name": "AchieveAction",
"description": "The act of accomplishing something via previous efforts. It is an instantaneous action rather than an ongoing process.",
"depth": 2,
"subClassOf": "Action"
},
"LoseAction": {
"name": "LoseAction",
"description": "The act of being defeated in a competitive activity.",
"depth": 3,
"subClassOf": "AchieveAction"
},
"TieAction": {
"name": "TieAction",
"description": "The act of reaching a draw in a competitive activity.",
"depth": 3,
"subClassOf": "AchieveAction"
},
"WinAction": {
"name": "WinAction",
"description": "The act of achieving victory in a competitive activity.",
"depth": 3,
"subClassOf": "AchieveAction"
},
"AssessAction": {
"name": "AssessAction",
"description": "The act of forming one's opinion, reaction or sentiment.",
"depth": 2,
"subClassOf": "Action"
},
"ChooseAction": {
"name": "ChooseAction",
"description": "The act of expressing a preference from a set of options or a large or unbounded set of choices/options.",
"depth": 3,
"subClassOf": "AssessAction"
},
"VoteAction": {
"name": "VoteAction",
"description": "The act of expressing a preference from a fixed/finite/structured set of choices/options.",
"depth": 4,
"subClassOf": "ChooseAction"
},
"IgnoreAction": {
"name": "IgnoreAction",
"description": "The act of intentionally disregarding the object. An agent ignores an object.",
"depth": 3,
"subClassOf": "AssessAction"
},
"ReactAction": {
"name": "ReactAction",
"description": "The act of responding instinctively and emotionally to an object, expressing a sentiment.",
"depth": 3,
"subClassOf": "AssessAction"
},
"AgreeAction": {
"name": "AgreeAction",
"description": "The act of expressing a consistency of opinion with the object...",
"depth": 4,
"subClassOf": "ReactAction"
},
"DisagreeAction": {
"name": "DisagreeAction",
"description": "The act of expressing a difference of opinion with the object...",
"depth": 4,
"subClassOf": "ReactAction"
},
"DislikeAction": {
"name": "DislikeAction",
"description": "The act of expressing a negative sentiment about the object. An agent dislikes an object (a proposition, topic or theme) with participants.",
"depth": 4,
"subClassOf": "ReactAction"
},
"EndorseAction": {
"name": "EndorseAction",
"description": "An agent approves/certifies/likes/supports/sanction an object.",
"depth": 4,
"subClassOf": "ReactAction"
},
"LikeAction": {
"name": "LikeAction",
"description": "The act of expressing a positive sentiment about the object. An agent likes an object (a proposition, topic or theme) with participants.",
"depth": 4,
"subClassOf": "ReactAction"
},
"WantAction": {
"name": "WantAction",
"description": "The act of expressing a desire about the object. An agent wants an object.",
"depth": 4,
"subClassOf": "ReactAction"
},
"ReviewAction": {
"name": "ReviewAction",
"description": "The act of producing a balanced opinion about the object for an audience...",
"depth": 3,
"subClassOf": "AssessAction"
},
"ConsumeAction": {
"name": "ConsumeAction",
"description": "The act of ingesting information/resources/food.",
"depth": 2,
"subClassOf": "Action"
},
"DrinkAction": {
"name": "DrinkAction",
"description": "The act of swallowing liquids.",
"depth": 3,
"subClassOf": "ConsumeAction"
},
"EatAction": {
"name": "EatAction",
"description": "The act of swallowing solid objects.",
"depth": 3,
"subClassOf": "ConsumeAction"
},
"InstallAction": {
"name": "InstallAction",
"description": "The act of installing an application.",
"depth": 3,
"subClassOf": "ConsumeAction"
},
"ListenAction": {
"name": "ListenAction",
"description": "The act of consuming audio content.",
"depth": 3,
"subClassOf": "ConsumeAction"
},
"ReadAction": {
"name": "ReadAction",
"description": "The act of consuming written content.",
"depth": 3,
"subClassOf": "ConsumeAction"
},
"UseAction": {
"name": "UseAction",
"description": "The act of applying an object to its intended purpose.",
"depth": 3,
"subClassOf": "ConsumeAction"
},
"WearAction": {
"name": "WearAction",
"description": "The act of dressing oneself in clothing.",
"depth": 4,
"subClassOf": "UseAction"
},
"ViewAction": {
"name": "ViewAction",
"description": "The act of consuming static visual content.",
"depth": 3,
"subClassOf": "ConsumeAction"
},
"WatchAction": {
"name": "WatchAction",
"description": "The act of consuming dynamic/moving visual content.",
"depth": 3,
"subClassOf": "ConsumeAction"
},
"ControlAction": {
"name": "ControlAction",
"description": "An agent controls a device or application.",
"depth": 2,
"subClassOf": "Action"
},
"ActivateAction": {
"name": "ActivateAction",
"description": "The act of starting or activating a device or application (e.g...",
"depth": 3,
"subClassOf": "ControlAction"
},
"DeactivateAction": {
"name": "DeactivateAction",
"description": "The act of stopping or deactivating a device or application (e...",
"depth": 3,
"subClassOf": "ControlAction"
},
"ResumeAction": {
"name": "ResumeAction",
"description": "The act of resuming a device or application which was formerly paused (e...",
"depth": 3,
"subClassOf": "ControlAction"
},
"SuspendAction": {
"name": "SuspendAction",
"description": "The act of momentarily pausing a device or application (e.g. pause music playback or pause a timer).",
"depth": 3,
"subClassOf": "ControlAction"
},
"CreateAction": {
"name": "CreateAction",
"description": "The act of deliberately creating/producing/generating/building a result out of the agent.",
"depth": 2,
"subClassOf": "Action"
},
"CookAction": {
"name": "CookAction",
"description": "The act of producing/preparing food.",
"depth": 3,
"subClassOf": "CreateAction"
},
"DrawAction": {
"name": "DrawAction",
"description": "The act of producing a visual/graphical representation of an object, typically with a pen/pencil and paper as instruments.",
"depth": 3,
"subClassOf": "CreateAction"
},
"FilmAction": {
"name": "FilmAction",
"description": "The act of capturing sound and moving images on film, video, or digitally.",
"depth": 3,
"subClassOf": "CreateAction"
},
"PaintAction": {
"name": "PaintAction",
"description": "The act of producing a painting, typically with paint and canvas as instruments.",
"depth": 3,
"subClassOf": "CreateAction"
},
"PhotographAction": {
"name": "PhotographAction",
"description": "The act of capturing still images of objects using a camera.",
"depth": 3,
"subClassOf": "CreateAction"
},
"WriteAction": {
"name": "WriteAction",
"description": "The act of authoring written creative content.",
"depth": 3,
"subClassOf": "CreateAction"
},
"FindAction": {
"name": "FindAction",
"description": "The act of finding an object.\n\nRelated actions:\n\n\nSearchAction: FindAction is generally lead by a SearchAction, but not necessarily.",
"depth": 2,
"subClassOf": "Action"
},
"CheckAction": {
"name": "CheckAction",
"description": "An agent inspects, determines, investigates, inquires, or examines an object's accuracy, quality, condition, or state.",
"depth": 3,
"subClassOf": "FindAction"
},
"DiscoverAction": {
"name": "DiscoverAction",
"description": "The act of discovering/finding an object.",
"depth": 3,
"subClassOf": "FindAction"
},
"TrackAction": {
"name": "TrackAction",
"description": "An agent tracks an object for updates.\n\nRelated actions:\n\n\nFollowAction: Unlike FollowAction, TrackAction refers to the interest on the location of innanimates objects...",
"depth": 3,
"subClassOf": "FindAction"
},
"InteractAction": {
"name": "InteractAction",
"description": "The act of interacting with another person or organization.",
"depth": 2,
"subClassOf": "Action"
},
"BefriendAction": {
"name": "BefriendAction",
"description": "The act of forming a personal connection with someone (object) mutually/bidirectionally/symmetrically...",
"depth": 3,
"subClassOf": "InteractAction"
},
"CommunicateAction": {
"name": "CommunicateAction",
"description": "The act of conveying information to another person via a communication medium (instrument) such as speech, email, or telephone conversation.",
"depth": 3,
"subClassOf": "InteractAction"
},
"AskAction": {
"name": "AskAction",
"description": "The act of posing a question / favor to someone.\n\nRelated actions:\n\n\nReplyAction: Appears generally as a response to AskAction.",
"depth": 4,
"subClassOf": "CommunicateAction"
},
"CheckInAction": {
"name": "CheckInAction",
"description": "The act of an agent communicating (service provider, social media, etc) their arrival by registering/confirming for a previously reserved service (e...",
"depth": 4,
"subClassOf": "CommunicateAction"
},
"CheckOutAction": {
"name": "CheckOutAction",
"description": "The act of an agent communicating (service provider, social media, etc) their departure of a previously reserved service (e...",
"depth": 4,
"subClassOf": "CommunicateAction"
},
"CommentAction": {
"name": "CommentAction",
"description": "The act of generating a comment about a subject.",
"depth": 4,
"subClassOf": "CommunicateAction"
},
"InformAction": {
"name": "InformAction",
"description": "The act of notifying someone of information pertinent to them, with no expectation of a response.",
"depth": 4,
"subClassOf": "CommunicateAction"
},
"ConfirmAction": {
"name": "ConfirmAction",
"description": "The act of notifying someone that a future event/action is going to happen as expected...",
"depth": 5,
"subClassOf": "InformAction"
},
"RsvpAction": {
"name": "RsvpAction",
"description": "The act of notifying an event organizer as to whether you expect to attend the event.",
"depth": 5,
"subClassOf": "InformAction"
},
"InviteAction": {
"name": "InviteAction",
"description": "The act of asking someone to attend an event. Reciprocal of RsvpAction.",
"depth": 4,
"subClassOf": "CommunicateAction"
},
"ReplyAction": {
"name": "ReplyAction",
"description": "The act of responding to a question/message asked/sent by the object...",
"depth": 4,
"subClassOf": "CommunicateAction"
},
"ShareAction": {
"name": "ShareAction",
"description": "The act of distributing content to people for their amusement or edification.",
"depth": 4,
"subClassOf": "CommunicateAction"
},
"FollowAction": {
"name": "FollowAction",
"description": "The act of forming a personal connection with someone/something (object) unidirectionally/asymmetrically to get updates polled from...",
"depth": 3,
"subClassOf": "InteractAction"
},
"JoinAction": {
"name": "JoinAction",
"description": "An agent joins an event/group with participants/friends at a location...",
"depth": 3,
"subClassOf": "InteractAction"
},
"LeaveAction": {
"name": "LeaveAction",
"description": "An agent leaves an event / group with participants/friends at a location...",
"depth": 3,
"subClassOf": "InteractAction"
},
"MarryAction": {
"name": "MarryAction",
"description": "The act of marrying a person.",
"depth": 3,
"subClassOf": "InteractAction"
},
"RegisterAction": {
"name": "RegisterAction",
"description": "The act of registering to be a user of a service, product or web page...",
"depth": 3,
"subClassOf": "InteractAction"
},
"SubscribeAction": {
"name": "SubscribeAction",
"description": "The act of forming a personal connection with someone/something (object) unidirectionally/asymmetrically to get updates pushed to...",
"depth": 3,
"subClassOf": "InteractAction"
},
"UnRegisterAction": {
"name": "UnRegisterAction",
"description": "The act of un-registering from a service.\n\nRelated actions:\n\n\nRegisterAction: antonym of UnRegisterAction...",
"depth": 3,
"subClassOf": "InteractAction"
},
"MoveAction": {
"name": "MoveAction",
"description": "The act of an agent relocating to a place.\n\nRelated actions:\n\n\nTransferAction: Unlike TransferAction, the subject of the move is a living Person or Organization rather than an inanimate object.",
"depth": 2,
"subClassOf": "Action"
},
"ArriveAction": {
"name": "ArriveAction",
"description": "The act of arriving at a place. An agent arrives at a destination from a fromLocation, optionally with participants.",
"depth": 3,
"subClassOf": "MoveAction"
},
"DepartAction": {
"name": "DepartAction",
"description": "The act of departing from a place. An agent departs from an fromLocation for a destination, optionally with participants.",
"depth": 3,
"subClassOf": "MoveAction"
},
"TravelAction": {
"name": "TravelAction",
"description": "The act of traveling from an fromLocation to a destination by a specified mode of transport, optionally with participants.",
"depth": 3,
"subClassOf": "MoveAction"
},
"OrganizeAction": {
"name": "OrganizeAction",
"description": "The act of manipulating/administering/supervising/controlling one or more objects.",
"depth": 2,
"subClassOf": "Action"
},
"AllocateAction": {
"name": "AllocateAction",
"description": "The act of organizing tasks/objects/events by associating resources to it.",
"depth": 3,
"subClassOf": "OrganizeAction"
},
"AcceptAction": {
"name": "AcceptAction",
"description": "The act of committing to/adopting an object.\n\nRelated actions:\n\n\nRejectAction: The antonym of AcceptAction.",
"depth": 4,
"subClassOf": "AllocateAction"
},
"AssignAction": {
"name": "AssignAction",
"description": "The act of allocating an action/event/task to some destination (someone or something).",
"depth": 4,
"subClassOf": "AllocateAction"
},
"AuthorizeAction": {
"name": "AuthorizeAction",
"description": "The act of granting permission to an object.",
"depth": 4,
"subClassOf": "AllocateAction"
},
"RejectAction": {
"name": "RejectAction",
"description": "The act of rejecting to/adopting an object.\n\nRelated actions:\n\n\nAcceptAction: The antonym of RejectAction.",
"depth": 4,
"subClassOf": "AllocateAction"
},
"ApplyAction": {
"name": "ApplyAction",
"description": "The act of registering to an organization/service without the guarantee to receive it...",
"depth": 3,
"subClassOf": "OrganizeAction"
},
"BookmarkAction": {
"name": "BookmarkAction",
"description": "An agent bookmarks/flags/labels/tags/marks an object.",
"depth": 3,
"subClassOf": "OrganizeAction"
},
"PlanAction": {
"name": "PlanAction",
"description": "The act of planning the execution of an event/task/action/reservation/plan to a future date.",
"depth": 3,
"subClassOf": "OrganizeAction"
},
"CancelAction": {
"name": "CancelAction",
"description": "The act of asserting that a future event/action is no longer going to happen...",
"depth": 4,
"subClassOf": "PlanAction"
},
"ReserveAction": {
"name": "ReserveAction",
"description": "Reserving a concrete object.\n\nRelated actions:\n\n\nScheduleAction: Unlike ScheduleAction, ReserveAction reserves concrete objects (e...",
"depth": 4,
"subClassOf": "PlanAction"
},
"ScheduleAction": {
"name": "ScheduleAction",
"description": "Scheduling future actions, events, or tasks.\n\nRelated actions:\n\n\nReserveAction: Unlike ReserveAction, ScheduleAction allocates future actions (e...",
"depth": 4,
"subClassOf": "PlanAction"
},
"PlayAction": {
"name": "PlayAction",
"description": "The act of playing/exercising/training/performing for enjoyment, leisure, recreation, Competition or exercise...",
"depth": 2,
"subClassOf": "Action"
},
"ExerciseAction": {
"name": "ExerciseAction",
"description": "The act of participating in exertive activity for the purposes of improving health and fitness.",
"depth": 3,
"subClassOf": "PlayAction"
},
"PerformAction": {
"name": "PerformAction",
"description": "The act of participating in performance arts.",
"depth": 3,
"subClassOf": "PlayAction"
},
"SearchAction": {
"name": "SearchAction",
"description": "The act of searching for an object.\n\nRelated actions:\n\n\nFindAction: SearchAction generally leads to a FindAction, but not necessarily.",
"depth": 2,
"subClassOf": "Action"
},
"TradeAction": {
"name": "TradeAction",
"description": "The act of participating in an exchange of goods and services for monetary compensation...",
"depth": 2,
"subClassOf": "Action"
},
"BuyAction": {
"name": "BuyAction",
"description": "The act of giving money to a seller in exchange for goods or services rendered...",
"depth": 3,
"subClassOf": "TradeAction"
},
"DonateAction": {
"name": "DonateAction",
"description": "The act of providing goods, services, or money without compensation, often for philanthropic reasons.",
"depth": 3,
"subClassOf": "TradeAction"
},
"OrderAction": {
"name": "OrderAction",
"description": "An agent orders an object/product/service to be delivered/sent.",
"depth": 3,
"subClassOf": "TradeAction"
},
"PayAction": {
"name": "PayAction",
"description": "An agent pays a price to a participant.",
"depth": 3,
"subClassOf": "TradeAction"
},
"PreOrderAction": {
"name": "PreOrderAction",
"description": "An agent orders a (not yet released) object/product/service to be delivered/sent.",
"depth": 3,
"subClassOf": "TradeAction"
},
"QuoteAction": {
"name": "QuoteAction",
"description": "An agent quotes/estimates/appraises an object/product/service with a price at a location/store.",
"depth": 3,
"subClassOf": "TradeAction"
},
"RentAction": {
"name": "RentAction",
"description": "The act of giving money in return for temporary use, but not ownership, of an object such as a vehicle or property...",
"depth": 3,
"subClassOf": "TradeAction"
},
"SellAction": {
"name": "SellAction",
"description": "The act of taking money from a buyer in exchange for goods or services rendered...",
"depth": 3,
"subClassOf": "TradeAction"
},
"TipAction": {
"name": "TipAction",
"description": "The act of giving money voluntarily to a beneficiary in recognition of services rendered.",
"depth": 3,
"subClassOf": "TradeAction"
},
"TransferAction": {
"name": "TransferAction",
"description": "The act of transferring/moving (abstract or concrete) animate or inanimate objects from one place to another.",
"depth": 2,
"subClassOf": "Action"
},
"BorrowAction": {
"name": "BorrowAction",
"description": "The act of obtaining an object under an agreement to return it at a later date...",
"depth": 3,
"subClassOf": "TransferAction"
},
"DownloadAction": {
"name": "DownloadAction",
"description": "The act of downloading an object.",
"depth": 3,
"subClassOf": "TransferAction"
},
"GiveAction": {
"name": "GiveAction",
"description": "The act of transferring ownership of an object to a destination...",
"depth": 3,
"subClassOf": "TransferAction"
},
"LendAction": {
"name": "LendAction",
"description": "The act of providing an object under an agreement that it will be returned at a later date...",
"depth": 3,
"subClassOf": "TransferAction"
},
"MoneyTransfer": {
"name": "MoneyTransfer",
"description": "The act of transferring money from one place to another place...",
"depth": 3,
"subClassOf": "TransferAction"
},
"ReceiveAction": {
"name": "ReceiveAction",
"description": "The act of physically/electronically taking delivery of an object thathas been transferred from an origin to a destination...",
"depth": 3,
"subClassOf": "TransferAction"
},
"ReturnAction": {
"name": "ReturnAction",
"description": "The act of returning to the origin that which was previously received (concrete objects) or taken (ownership).",
"depth": 3,
"subClassOf": "TransferAction"
},
"SendAction": {
"name": "SendAction",
"description": "The act of physically/electronically dispatching an object for transfer from an origin to a destination...",
"depth": 3,
"subClassOf": "TransferAction"
},
"TakeAction": {
"name": "TakeAction",
"description": "The act of gaining ownership of an object from an origin. Reciprocal of GiveAction...",
"depth": 3,
"subClassOf": "TransferAction"
},
"UpdateAction": {
"name": "UpdateAction",
"description": "The act of managing by changing/editing the state of the object.",
"depth": 2,
"subClassOf": "Action"
},
"AddAction": {
"name": "AddAction",
"description": "The act of editing by adding an object to a collection.",
"depth": 3,
"subClassOf": "UpdateAction"
},
"InsertAction": {
"name": "InsertAction",
"description": "The act of adding at a specific location in an ordered collection.",
"depth": 4,
"subClassOf": "AddAction"
},
"AppendAction": {
"name": "AppendAction",
"description": "The act of inserting at the end if an ordered collection.",
"depth": 5,
"subClassOf": "InsertAction"
},
"PrependAction": {
"name": "PrependAction",
"description": "The act of inserting at the beginning if an ordered collection.",
"depth": 5,
"subClassOf": "InsertAction"
},
"DeleteAction": {
"name": "DeleteAction",
"description": "The act of editing a recipient by removing one of its objects.",
"depth": 3,
"subClassOf": "UpdateAction"
},
"ReplaceAction": {
"name": "ReplaceAction",
"description": "The act of editing a recipient by replacing an old object with a new object.",
"depth": 3,
"subClassOf": "UpdateAction"
},
"CreativeWork": {
"name": "CreativeWork",
"description": "The most generic kind of creative work, including books, movies, photographs, software programs, etc.",
"depth": 1,
"subClassOf": "Thing"
},
"3DModel": {
"name": "3DModel",
"description": "A 3D model represents some kind of 3D content, which may have encodings in one or more MediaObjects...",
"depth": 2,
"subClassOf": "CreativeWork"
},
"ArchiveComponent": {
"name": "ArchiveComponent",
"description": "An intangible type to be applied to any archive content, carrying with it a set of properties required to describe archival items and collections.",
"depth": 2,
"subClassOf": "CreativeWork"
},
"Article": {
"name": "Article",
"description": "An article, such as a news article or piece of investigative report...",
"depth": 2,
"subClassOf": "CreativeWork"
},
"AdvertiserContentArticle": {
"name": "AdvertiserContentArticle",
"description": "An Article that an external entity has paid to place or to produce to its specifications...",
"depth": 3,
"subClassOf": "Article"
},
"NewsArticle": {
"name": "NewsArticle",
"description": "A NewsArticle is an article whose content reports news, or provides background context and supporting materials for understanding the news...",
"depth": 3,
"subClassOf": "Article"
},
"AnalysisNewsArticle": {
"name": "AnalysisNewsArticle",
"description": "An AnalysisNewsArticle is a NewsArticle that, while based on factual reporting, incorporates the expertise of the author/producer, offering interpretations and conclusions.",
"depth": 4,
"subClassOf": "NewsArticle"
},
"AskPublicNewsArticle": {
"name": "AskPublicNewsArticle",
"description": "A NewsArticle expressing an open call by a NewsMediaOrganization asking the public for input, insights, clarifications, anecdotes, documentation, etc...",
"depth": 4,
"subClassOf": "NewsArticle"
},
"BackgroundNewsArticle": {
"name": "BackgroundNewsArticle",
"description": "A NewsArticle providing historical context, definition and detail on a specific topic (aka \"explainer\" or \"backgrounder\")...",
"depth": 4,
"subClassOf": "NewsArticle"
},
"OpinionNewsArticle": {
"name": "OpinionNewsArticle",
"description": "An OpinionNewsArticle is a NewsArticle that primarily expresses opinions rather than journalistic reporting of news and events...",
"depth": 4,
"subClassOf": "NewsArticle"
},
"ReportageNewsArticle": {
"name": "ReportageNewsArticle",
"description": "The ReportageNewsArticle type is a subtype of NewsArticle representing\n news articles which are the result of journalistic news reporting conventions...",
"depth": 4,
"subClassOf": "NewsArticle"
},
"ReviewNewsArticle": {
"name": "ReviewNewsArticle",
"description": "A NewsArticle and CriticReview providing a professional critic's assessment of a service, product, performance, or artistic or literary work.",
"depth": 4,
"subClassOf": "NewsArticle"
},
"Report": {
"name": "Report",
"description": "A Report generated by governmental or non-governmental organization.",
"depth": 3,
"subClassOf": "Article"
},
"SatiricalArticle": {
"name": "SatiricalArticle",
"description": "An Article whose content is primarily [satirical] in nature, i...",
"depth": 3,
"subClassOf": "Article"
},
"ScholarlyArticle": {
"name": "ScholarlyArticle",
"description": "A scholarly article.",
"depth": 3,
"subClassOf": "Article"
},
"MedicalScholarlyArticle": {
"name": "MedicalScholarlyArticle",
"description": "A scholarly article in the medical domain.",
"depth": 4,
"subClassOf": "ScholarlyArticle"
},
"SocialMediaPosting": {
"name": "SocialMediaPosting",
"description": "A post to a social media platform, including blog posts, tweets, Facebook posts, etc.",
"depth": 3,
"subClassOf": "Article"
},
"BlogPosting": {
"name": "BlogPosting",
"description": "A blog post.",
"depth": 4,
"subClassOf": "SocialMediaPosting"
},
"LiveBlogPosting": {
"name": "LiveBlogPosting",
"description": "A blog post intended to provide a rolling textual coverage of an ongoing event through continuous updates.",
"depth": 5,
"subClassOf": "BlogPosting"
},
"DiscussionForumPosting": {
"name": "DiscussionForumPosting",
"description": "A posting to a discussion forum.",
"depth": 4,
"subClassOf": "SocialMediaPosting"
},
"TechArticle": {
"name": "TechArticle",
"description": "A technical article - Example: How-to (task) topics, step-by-step, procedural troubleshooting, specifications, etc.",
"depth": 3,
"subClassOf": "Article"
},
"APIReference": {
"name": "APIReference",
"description": "Reference documentation for application programming interfaces (APIs).",
"depth": 4,
"subClassOf": "TechArticle"
},
"Atlas": {
"name": "Atlas",
"description": "A collection or bound volume of maps, charts, plates or tables, physical or in media form illustrating any subject.",
"depth": 2,
"subClassOf": "CreativeWork"
},
"Blog": {
"name": "Blog",
"description": "A blog.",
"depth": 2,
"subClassOf": "CreativeWork"
},
"Book": {
"name": "Book",
"description": "A book.",
"depth": 2,
"subClassOf": "CreativeWork"
},
"Audiobook": {
"name": "Audiobook",
"description": "An audiobook.",
"depth": 3,
"subClassOf": "Book"
},
"Chapter": {
"name": "Chapter",
"description": "One of the sections into which a book is divided. A chapter usually has a section number or a name.",
"depth": 2,
"subClassOf": "CreativeWork"
},
"Claim": {
"name": "Claim",
"description": "A Claim in Schema.org represents a specific, factually-oriented claim that could be the itemReviewed in a ClaimReview...",
"depth": 2,
"subClassOf": "CreativeWork"
},
"Clip": {
"name": "Clip",
"description": "A short TV or radio program or a segment/part of a program.",
"depth": 2,
"subClassOf": "CreativeWork"
},
"MovieClip": {
"name": "MovieClip",
"description": "A short segment/part of a movie.",
"depth": 3,
"subClassOf": "Clip"
},
"RadioClip": {
"name": "RadioClip",
"description": "A short radio program or a segment/part of a radio program.",
"depth": 3,
"subClassOf": "Clip"
},
"TVClip": {
"name": "TVClip",
"description": "A short TV program or a segment/part of a TV program.",
"depth": 3,
"subClassOf": "Clip"
},
"VideoGameClip": {
"name": "VideoGameClip",
"description": "A short segment/part of a video game.",
"depth": 3,
"subClassOf": "Clip"
},
"Code": {
"name": "Code",
"description": "Computer programming source code. Example: Full (compile ready) solutions, code snippet samples, scripts, templates.",
"depth": 2,
"subClassOf": "CreativeWork"
},
"Collection": {
"name": "Collection",
"description": "A created collection of Creative Works or other artefacts.",
"depth": 2,
"subClassOf": "CreativeWork"
},
"ComicStory": {
"name": "ComicStory",
"description": "The term \"story\" is any indivisible, re-printable\n unit of a comic, including the interior stories, covers, and backmatter...",
"depth": 2,
"subClassOf": "CreativeWork"
},
"ComicCoverArt": {
"name": "ComicCoverArt",
"description": "The artwork on the cover of a comic.",
"depth": 3,
"subClassOf": "ComicStory"
},
"Comment": {
"name": "Comment",
"description": "A comment on an item - for example, a comment on a blog post. The comment's content is expressed via the text property, and its topic via about, properties shared with all CreativeWorks.",
"depth": 2,
"subClassOf": "CreativeWork"
},
"Answer": {
"name": "Answer",
"description": "An answer offered to a question; perhaps correct, perhaps opinionated or wrong.",
"depth": 3,
"subClassOf": "Comment"
},
"CorrectionComment": {
"name": "CorrectionComment",
"description": "A comment that corrects CreativeWork.",
"depth": 3,
"subClassOf": "Comment"
},
"Conversation": {
"name": "Conversation",
"description": "One or more messages between organizations or people on a particular topic...",
"depth": 2,
"subClassOf": "CreativeWork"
},
"Course": {
"name": "Course",
"description": "A description of an educational course which may be offered as distinct instances at which take place at different times or take place at different locations, or be offered through different media or modes of study...",
"depth": 2,
"subClassOf": "CreativeWork"
},
"CreativeWorkSeason": {
"name": "CreativeWorkSeason",
"description": "A media season e.g. tv, radio, video game etc.",
"depth": 2,
"subClassOf": "CreativeWork"
},
"PodcastSeason": {
"name": "PodcastSeason",
"description": "A single season of a podcast. Many podcasts do not break down into separate seasons...",
"depth": 3,
"subClassOf": "CreativeWorkSeason"
},
"RadioSeason": {
"name": "RadioSeason",
"description": "Season dedicated to radio broadcast and associated online delivery.",
"depth": 3,
"subClassOf": "CreativeWorkSeason"
},
"TVSeason": {
"name": "TVSeason",
"description": "Season dedicated to TV broadcast and associated online delivery.",
"depth": 3,
"subClassOf": "CreativeWorkSeason"
},
"CreativeWorkSeries": {
"name": "CreativeWorkSeries",
"description": "A CreativeWorkSeries in schema.org is a group of related items, typically but not necessarily of the same kind...",
"depth": 2,
"subClassOf": "CreativeWork"
},
"BookSeries": {
"name": "BookSeries",
"description": "A series of books. Included books can be indicated with the hasPart property.",
"depth": 3,
"subClassOf": "CreativeWorkSeries"
},
"MovieSeries": {
"name": "MovieSeries",
"description": "A series of movies. Included movies can be indicated with the hasPart property.",
"depth": 3,
"subClassOf": "CreativeWorkSeries"
},
"Periodical": {
"name": "Periodical",
"description": "A publication in any medium issued in successive parts bearing numerical or chronological designations and intended, such as a magazine, scholarly journal, or newspaper to continue indefinitely...",
"depth": 3,
"subClassOf": "CreativeWorkSeries"
},
"ComicSeries": {
"name": "ComicSeries",
"description": "A sequential publication of comic stories under a\n unifying title, for example \"The Amazing Spider-Man\" or \"Groo the\n Wanderer\".",
"depth": 4,
"subClassOf": "Periodical"
},
"Newspaper": {
"name": "Newspaper",
"description": "A publication containing information about varied topics that are pertinent to general information, a geographic area, or a specific subject matter (i...",
"depth": 4,
"subClassOf": "Periodical"
},
"PodcastSeries": {
"name": "PodcastSeries",
"description": "A podcast is an episodic series of digital audio or video files which a user can download and listen to.",
"depth": 3,
"subClassOf": "CreativeWorkSeries"
},
"RadioSeries": {
"name": "RadioSeries",
"description": "CreativeWorkSeries dedicated to radio broadcast and associated online delivery.",
"depth": 3,
"subClassOf": "CreativeWorkSeries"
},
"TVSeries": {
"name": "TVSeries",
"description": "CreativeWorkSeries dedicated to TV broadcast and associated online delivery.",
"depth": 3,
"subClassOf": "CreativeWorkSeries"
},
"VideoGameSeries": {
"name": "VideoGameSeries",
"description": "A video game series.",
"depth": 3,