-
Notifications
You must be signed in to change notification settings - Fork 6
/
PLOVER_MANUAL.tex
1727 lines (1231 loc) · 121 KB
/
PLOVER_MANUAL.tex
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
\documentclass[11pt]{report}
\usepackage[left=1in,top=1in,right=1in,bottom=1in]{geometry} % see geometry.pdf on how to lay out the page. There's lots.
\geometry{letterpaper} % or letter or a5paper or ... etc
\pagestyle{headings}
\usepackage{geometry}
\usepackage{graphicx}
\usepackage[usenames]{color}
\definecolor{purple}{rgb}{.5, 0, .5}
\usepackage{longtable}
\usepackage{multirow}
\usepackage{multicol}
\usepackage{booktabs}
\usepackage[table]{xcolor}
\usepackage{verbatim} % for comment blocks
\usepackage{natbib}
\usepackage{datetime} % To set the document dates automagically
\usepackage[hidelinks]{hyperref} % for real url support in the pdf
\usepackage[normalem]{ulem} % for \sout{} strikethrough
% Define a new column type with fixed width (like p{{}), but which doesn't justify text
\usepackage{array}
\newcolumntype{L}[1]{>{\raggedright\arraybackslash}p{#1}}
\newcommand{\plcat}[1]{\textsf{#1}}
\newcommand{\plcon}[1]{\textbf{#1}}
\newcommand{\plmod}[1]{\texttt{#1}}
\newcommand{\ti}[1]{\textit{#1}}
\newcommand{\txt}[1]{\texttt{#1}}
\newcommand{\fn}[1]{\footnote{#1}}
\newdateformat{monthyeardate}{%
\THEDAY~\monthname[\THEMONTH] \THEYEAR}
\newcommand{\andy}[1]{\textcolor{red}{#1}}
\begin{document}
\pagenumbering{gobble}
\vspace{-10pt}
\begin{center}
{\Huge \bfseries PLOVER\ }\\[2ex]
{\LARGE Political Language Ontology for Verifiable Event Records\\ [2ex]Event, Actor and Data Interchange Specification}\\[10ex]
{\LARGE Open Event Data Alliance} \\[2ex]
{\Large \url{http://openeventdata.org/} }\\[2ex]
{\LARGE DRAFT Version: 2.0\\ [2EX]\monthyeardate\today}
\end{center}
\begin{figure}[h!]
\centering
\includegraphics[width=0.40\textwidth]{media/plover_icon}
\end{figure}
\vspace{20pt}
\begin{figure}[h!]
\centering
\includegraphics[width=0.6\textwidth]{media/cc_license}
\end{figure}
%\pagenumbering{roman}
%\tableofcontents
%\setcounter{tocdepth}{3}
%\listoftables
\chapter*{Acknowledgments}
\noindent Contributors to the development of PLOVER include, in alphabetical order, Benjamin Bagozzi, Andreas Beger, John Beieler, Liz Boschee, Patrick Brandt, Andrew Halterman, Jill Irvine, Jennifer Holmes, Javier Osorio, Tom Parris, Grace Scarborough, and Philip Schrodt.\\
\noindent The Open Event Data Alliance is an educational and open research corporation chartered in the Commonwealth of Virginia, United States.\\
\noindent The PLOVER logo is based on a drawing found at\\ {\footnotesize \url{http://www.rspb.org.uk/discoverandenjoynature/discoverandlearn/birdguide/name/r/ringedplover/}}\\
\noindent Funding for PLOVER was initially provided in part by the U.S. National Science Foundation award SBE-1539302, ``RIDIR: Modernizing Political Event Data for Big Data Social Science Research''. Any opinions, findings, conclusions or recommendations in this document are those of [at least one of] the authors and do not necessarily reflect the views of the National Science Foundation, or any company or government agency employing or funding the authors or otherwise contributing to the document.\\
\noindent Additional work was sponsored by the Political Instability Task Force (PITF). The PITF is funded by the Central Intelligence Agency. The views expressed in this codebook are the authors' alone and do not
represent the views of the US Government.\\
\noindent Readers interested in the POLECAT data that were generated using the PLOVER ontology should see \citet{ScarboroughEtAl2023} and \citet{HaltermanEtAl2023}.\\
\noindent This document is hosted at the following GitHub repository: \txt{\footnotesize https://github.com/openeventdata/PLOVER}\\
\noindent This work is licensed under a Creative Commons Attribution-ShareAlike 4.0 International License.\\
\noindent Copyright \copyright ~2021 by the Open Event Data Alliance \\
\noindent Latest update: \today~(UTC)
\chapter{Introduction}
\pagenumbering{arabic}
The concept of political event data originated in the academic quantitative international relations community in the mid-1960s. While a number of projects produced some event data, often for specialized applications, eventually two coding frameworks dominated the production of general-purpose event data sets: Charles McClelland's WEIS \citep{McClelland67,McClelland76} and the Conflict and Peace Data Bank (COPDAB) developed by Edward Azar \citep{AzarSloan75, Azar80, Azar82}. Both were created during the Cold War and assumed a ``Westphalian-Clausewitzian'' political world in which sovereign states reacted to each other primarily through official diplomacy
and military threats. Consequently these coding systems proved less than optimal for dealing with post-Cold-War issues such as ethnic conflict, low-intensity violence, internal conflict and repression, and multilateral intervention.
During the early 2000s, the CAMEO framework---Conflict and Mediation Event Observations---was developed \citep{SGY09} to support an NSF-funded project at the University of Kansas on the study of inter-state conflict mediation, not as a general-purpose event ontology. Nonetheless, it was gradually adopted as a ``next generation'' coding scheme, notably for the DARPA-funded Integrated Conflict Early Warning System (ICEWS) project \citep{OBrien10} because it corrected some of the long-recognized ambiguities in WEIS and COPDAB, and was explicitly designed both for automated coding and for the detailed coding of sub-state actors. It was continued in the widely-used public ICEWS data (\txt{https://dataverse.harvard.edu/dataverse/icews}) coded using the BBN SERIF/ACCENT coder, with BBN doing considerable additional work on various details of the system.
As event data came into wider use in the 2010s, several problems with CAMEO became apparent, largely dealing with the complexity of the system, the absence of a standard format beyond the original date-source-target-event fields (for example, representing geographical location), and continuing interest on coding substate activities not present in the earlier systems.
To address these concerns, an informal group of academic, government and private sector producers and users of event data met and circulated drafts during the fall of 2016 to develop a new, simplified and more flexible event data specification to replace CAMEO, which became PLOVER and the basis of this document: Section \ref{ssec:ctp} summarizes the major changes. Additional extensive
work was done in 2021 as PLOVER was adopted by the Political Instability Task Force to replace
CAMEO in its new coder for iDATA (the next generation ICEWS).
Because the PLOVER event categories are generally a simplification of CAMEO our expectation is that it will be relatively easy to splice existing CAMEO data sets to PLOVER equivalents by simply collapsing the two- and three-digit categories. The scaled ``PLOVER scores'' are also designed for splicing with time series generated from the CAMEO ``Goldstein scores.'' The standardization of the JSON field names---as well as adoption of JSON as the data interchange format---will allow the development of general-purpose utilities that can work with all formats, in contrast with the current proliferation of incompatible and error-prone CSV and tab-delimited formats.
Compared to the Kansas and BBN CAMEO manuals---though curiously, consistent with the public documentation for WEIS and COPAB in the ICPSR archive---at this point we have provided only general guidance on the content of the various categories, modes, and contexts. With the current state of automated natural language processing, any 2020s automated coding system will almost certainly be implemented using machine learning systems trained on a labeled set of news texts and those training cases effectively are the detailed examples. This differs from the older systems which classified events using dictionaries which were abstracted, by human developers, from the texts. We eventually hope to provide a set of training cases, possibly synthetic, that will be free of intellectual property constraints; at present a small set of cases extracted from the Kansas CAMEO manual is available on the PLOVER GitHub site \txt{https://github.com/openeventdata/PLOVER} but it is not sufficient for training a system, at least with 2021 technologies.
\section{Why ``PLOVER''?}
Plovers (\textit{Charadriidae}) are a globally-distributed family of short-billed gregarious wading birds who spend their lives frantically poking through endless stretches of sand and muck trying to find something of interest. It is difficult to imagine a better analogy to the process of coding event data.
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
\chapter{Event, Mode, and Context}
\section{Overview}\label{ssec:ecm}
A major difference between PLOVER and the earlier widely-used event coding systems is moving the information in the hierarchical 3- and 4-digit categories of CAMEO into three components: \txt{event-mode-context} generally corresponding to ``\texttt{what-how-why}.'' We anticipate at least five advantages to this approach:
\begin{enumerate}
\item The three \texttt{what-how-why} components are now distinct, whereas various CAMEO subcategories inconsistently used the $how$ and $why$ to distinguish between subcategories.
\item Because a \txt{context} can be applied to any event category and, where relevant, any \txt{mode}, PLOVER has far more combinations of codes for describing events than the fixed hierarchy of CAMEO.
\item We are probably increasing the ability of general machine-learning classifiers---as distinct from the older customized dictionary-based parser/coders---to assign \txt{mode} and \txt{context} compared to their ability to assign subcategories.
\item In initial experiments, it appears this approach is \textit{much} easier for humans to code than the hierarchical structure of CAMEO because a human coder can hold most of the relevant categories in working memory. More generally, \txt{event-mode-context} coding uses words, not numerical codes, so coders will probably be using the parts of the brain (Broca's area) which are specialized for processing words. No known specialized cognitive facility exists for handling some 250 2-to-4-digit codes.
\item Because the words used to differentiate \txt{mode} and \txt{context} are generally very basic, translations of the coding protocols into languages other than English is likely to be easier than translating the subcategory descriptions found in CAMEO.
\end{enumerate}
While both \txt{mode} and \txt{context} will usually take a single value, in some instances multiple values will be appropriate and this is allowed. Both fields are optional, and if no existing values seem appropriate, the field should be left null, though perhaps with some details provided in the JSON \texttt{comment} field, particularly when the record is generated using human coding.
\section{Context codes that can be used with any category}
The \txt{context} field re-introduces, albeit in a greatly extended form, a concept found in the original COPDAB data (but absent from WEIS and hence CAMEO) which allows, for example, a distinction in the event record between a meeting dealing with military issues and a meeting dealing with economic issues. Human analysts naturally incorporate this information in their reading of an article. Based on some initial experiments, we believe that with contemporary text classification algorithms this should be relatively easy to implement.
Additional details and clarifications for some of the more ambiguous or complicated general contexts listed in \autoref{tab:general-contexts} can be found in \autoref{chapter:contexts}.
%%%%%%%%%%%% START CONTEXTS TABLE %%%%%%
\begin{longtable}{|p{.21\textwidth}|L{.73\textwidth}|}
\caption{General contexts\\ (Each context has additional details in \autoref{chapter:contexts})}
\label{tab:general-contexts} \\
\hline
Name & Content \\
\hline
\endhead
\hline \multicolumn{2}{|l|}{{Continued on next page}} \\ \hline
\endfoot
\hline
\endlastfoot
\hyperref[context:military]{military} & military, including military assistance; only covers official state military bodies, \textit{excluding} paramilitary or militia organizations, law enforcement, or non-state armed actors \\
\hyperref[context:intelligence]{intelligence} & gathering of information by state intelligence organizations, including more general discussions of those agencies \\
\hyperref[context:executive]{executive} & executive agencies and bureaucracies, executives and their families, as well as personal and political issues involving non-elected heads of state \\
\hyperref[context:legislative]{legislative} & legislative debate, parliamentary coalition formation \\
\hyperref[context:election]{election} & elections and campaigns \\
\hyperref[context:political-institutions]{political\_institutions} & changes to---as well as non-routine interactions between and within---formal political bodies, including political parties \\
\hyperref[context:pro-democracy]{pro\_democracy} & processes and initiatives associated with democratization \\
\hyperref[context:pro-autocracy]{pro\_autocracy} & processes and initiatives associated with autocratization \\
\hyperref[context:economic]{economic} & economic news, trade, finance, economic development, inflation/GDP/recessions, or monetary policy. \emph{Exclude} news solely about individual companies \\
\hyperref[context:legal]{legal} & courts and judiciary; national and international law\\
reparations & reparations, i.e., monetary or non-monetary compensation for past harm inflicted \\
\hyperref[context:hr]{human\_rights} & unspecified human rights in a general sense, often but not always literally including the term ``human rights'' \\
\hyperref[context:rightsfree]{rights\_freedoms} & political rights and freedoms, civil liberties, press/media freedom, restrictions on civil rights, gatherings, etc.\\
\hyperref[context:repression]{repression} & forceful repression of groups, individuals, or societies by security forces \\
\hyperref[context:human-sec]{human\_security} & access to water, food, housing, energy, land/property tenure (e.g. seizure of crops), etc. \\
gender & mentions of gender, women's issues, gender equality, etc., including abortion and issues of reproductive rights\\
\hyperref[context:lgbt]{lgbt} & LGBTQ issues such as related laws, discrimination, and protests\\
\hyperref[context:religethno]{religion\_ethnicity} & religious, ethnic, caste, or linguistic issues, including discrimination, violence, cooperation, or more broadly important mentions \\
\hyperref[context:inequality]{inequality} & the unequal distribution of resources and opportunities \\
\hyperref[context:diplomatic]{diplomatic} & diplomacy, which can be both international and domestic \\
\hyperref[context:territory]{territory} & international and domestic territorial disputes, protests and rebellions over territory, and forced displacements\\
peacekeeping & peacekeeping, typically multilateral operations \\
\hyperref[context:health]{health} & public health, disease outbreaks and epidemics, disease in general \\
\hyperref[context:asylum]{asylum} & discussions of seeking or granting asylum \\
\hyperref[context:migration]{migration} & migration, refugees, and displaced people \\
\hyperref[context:disasters]{disasters} & disasters including both ``natural" and accidents/spills etc. \\
\hyperref[context:natural-resource]{natural\_resource} & natural resource extraction, trade, dependence, and pollution \\
\hyperref[context:environment]{environment} & pollution and related environmental problems; environmental policy, environmental cooperation, and environmental protest \\
\hyperref[context:tech]{technology} & technological development, new technology, high-tech industry\\
\hyperref[context:terrorism]{terrorism} & events related to terrorist groups; anti-terrorism actions and policies \\
\hyperref[context:cbrn]{cbrn} & chemical, biological, radiation, and nuclear weapons or attacks \\
\hyperref[context:cyber]{cyber} & cyber attacks and crime; events with this context are not necessarily cyber events (e.g. hacking) themselves\\
\hyperref[context:misinfo]{misinformation} & misinformation, influence operations, fake news; events with this context are not necessarily misinformation themselves\\
\hyperref[context:crime]{crime} & Any discussion of crimes or criminals, \textit{excluding} events that have one of the more specific crime contexts like trafficking \\
\hyperref[context:corruption]{corruption} & misuse/abuse of public office, including corruption, bribery, cronyism, nepotism, abuse of public office \\
\hyperref[context:drugs]{illegal\_drugs} & criminal possession, distribution, sale, or manufacturing of illegal drugs \\
\hyperref[context:trafficking]{trafficking} & trafficking or smuggling of humans, drugs, animals, or other goods; both domestic and international \\
\end{longtable}
%%%%%%%%%%%% END CONTEXTS TABLE %%%%%%
How these contexts are used in practice will depend on how a coder implements them. If they are applied using document-level classifiers, researchers/analysts could misinterpret the meaning of contexts. For example, an \plcat{ASSAULT} event with an ``elections'' context does not necessarily imply electoral violence. It could be an article about, for instance, violence in Afghanistan in the context of an article on US election politics. Thus, the interpretation of ``context'' may depend on how it's implemented in practice. Certain types of events, particularly general protests and meetings, will also have multiple contexts: this is a feature, not a bug.
Based on our past experience developing event-oriented data sets, we are almost certain to find some additional contexts as we start coding data, so this list is likely to change somewhat. In many cases, it may be possible to extract the information needed for specialized applications by simply modifying the \txt{context} coding---which should be relatively easy---rather than modifying the event category coding, which is more difficult but was the only option in the older hierarchical systems.
\newpage
\section{Auxiliary modes}\label{ssec:special}
\textbf{Note: these Auxiliary modes have not yet been fully implemented in any PLOVER-based coding projects to date.}
PLOVER also includes four \emph{auxiliary modes}, which provide information about whether a reported event is \plcon{historical}, \plcon{future}, \plcon{hypothetical}, or has a \plcon{negation}. PLOVER assumes that the coding engine will be able to resolve these and put that information in the \txt{context}. Negated events can be excluded from the final event dataset. Examples:
\begin{itemize}
\item \plcon{historical}: ``During the decolonization struggle, Angolan forces..."
\item \plcon{future}: ``Members of the G-7 will meet in Ottawa next month..."
\item \plcon{hypothetical}: ``If Russian forces were to cross the border, that would represent a major..."
\item \plcon{negation}: ``Thus far, fighting has not re-emerged in the tense region."
\end{itemize}
Theoretically, some event types can be represented as other event types plus an auxiliary mode: \plcat{AGREE} could be \plcat{SUPPORT} + \plcon{future} or \plcat{THREATEN} could be \plcat{ASSAULT} + \plcon{hypothetical}. In situations like these, the coder should always return the single event category, not a category+auxiliary.
We anticipate that in general---and consistent with earlier event coding schemes---it will be possible to code \txt{mode} from the same sentence used to code the event, or possibly that sentence and one before it. \txt{context}, in contrast, will usually be coded at the paragraph- or document-level: this differs from earlier automated coding, though probably is similar to human-coded data such as COPDAB and BCOW \citep{Leng87} where \txt{context}-like fields were coded.
\section{Changes in treatment of political entities}\label{ssec:change}
\subsection{``actor'' and ``recipient'' replace ``source'' and ``target''}
In order to reduce overlap with how the policy community uses the terms ``source'' and ``target'', we are using the word \txt{actor} to refer to the entity or entities who initiated the event, and \txt{recipient} to refer to the
the entity or entities to whom the event is directed, if this is clear. \txt{recipient} is optional for many events. We are using the term ``entity'' to refer to the class of potential actors and recipients.
\subsection{Compound and Reciprocal Actors}\label{sec:recip}
Following the dyadic approach which originated in WEIS and COPDAB, most CAMEO-based coders dealt with compound entities---``The United States and France accused Russia\ldots''---by generating multiple events: this example would generate two events of the form
\begin{verbatim}
USA RUS 112
FRA RUS 112
\end{verbatim}
This approach, however, gets very problematic in the not-uncommon situation where an alliance is involved and is expanded to all of its constituent members: a single reference to the G20 expands to at least twenty events, and a \textit{meeting} of the G20, generating reciprocal events, expands to 380 events, which is one of the reasons ``consult'' events are so frequent in CAMEO-coded data.
In PLOVER, compound entities generate a single actor or recipient, but with multiple members: the actor and recipient are a list of entities rather than a single entities. Depending on the application, a user might expand this in a post-processing phase to multiple events with single entity codes following the earlier conventions, but the initial coding of the event uses the list.
PLOVER also uses actor lists to deal with reciprocal events. In CAMEO, a meeting ``President Obama met with Japanese Prime Minister Abe at the White House'' generated two events
\begin{verbatim}
JAP USA 042
USA JAP 043
\end{verbatim}
where 042 and 043 are the CAMEO codes for ``visit'' and ``host'' respectively.\footnote{This example optimistically assumes the coding system was clever enough to recognize the significance of the phrase ``at the White House.''} While the PLOVER \plcat{CONSULT} mode provides for a host/visit distinction, this is not required. In such instances, all of the entities are considered as the actor and no recipient is included.
%In \plcat{ASSAULT} events, reciprocal violence---as distinct from one-sided violence---is handled in a similar fashion, with both entities as \texttt{actor}: this applies in any event where both sides are using force, even if one side ``started it'', an assessment often as not contested anyway. One-sided violence, such as assassinations or police firing on demonstrators, will have the perpetrator as the \texttt{actor} and the victims as \texttt{recipient}. The \plmod{sideAB} mode in \plcat{ASSAULT} is used in conjunction with the \texttt{recipient} field when there are two clear ``sides'' in the conflict.
%\clearpage
\section{Numeric conflict/cooperation scores}
%Researchers and analysts often want to represent events along a conflict/cooperation scale. In CAMEO, these were called ``Goldstein scores'' since they were an extension of the WEIS scores in \cite{Goldstein92} which mapped the CAMEO codes to a $-$10 to $+$10 scale (though in fact the most cooperative action had score of only $+$8.5). The ``PLOVER scores'' given in Table \ref{tab:ploverscores} provide comparable scaled conflict/cooperation scores for PLOVER. They were created by taking a weighted average of the CAMEO/Goldstein scores for each PLOVER category, with the weights being the empirical frequency of the CAMEO event type in an 18 month sample (October-2017 to March-2019). Two additional changes were made based on our knowledge of the categories: COERCE and MOBILIZE were flipped, so COERCE was increased in magnitude from -5.3 to -7.2 and MOBILIZE moved from -7.2 to -5.3.
Researchers and analysts often want to represent events along a conflict/cooperation scale. In CAMEO, these were called ``Goldstein scores'' since they were an extension of the WEIS scores in \cite{Goldstein92} which mapped the CAMEO codes to a $-$10 to $+$10 scale. The ``PLOVER scores'' given in Table \ref{tab:ploverscores} provide comparable scaled conflict/cooperation scores for PLOVER. An initial mapping was created by taking a weighted average of the CAMEO-based Goldstein scores for each PLOVER category, with the weights being the empirical frequency of the CAMEO event type in an 18 month sample of data (October-2017 to March-2019).
Using this initial mapping and the original CAMEO-based Goldstein scores as starting points, a subject matter expert then qualitatively developed a set of PLOVER scores for each of PLOVER's event types and modes. A second subject matter expert simultaneously developed an alternative set of proposed PLOVER scores through a combination of (i) pairwise comparisons of PLOVER event type-mode combinations and (ii) a Bradley-Terry model to estimate locations of each PLOVER event type-mode on a cooperative--conflictual scale. The two separately developed sets of PLOVER scores were then reviewed by a team of five subject matter experts (including the two mentioned above) to reconcile discrepancies. Ultimately, the final PLOVER scores presented below reflect a re-scaled average of the two sets of expert-derived PLOVER scores, with a small number of qualitative score adjustments that were implemented by the larger team of experts upon discussion. By and large, these final PLOVER scores reflect the original ``Goldstein scores'' in ranging from $-$10 to $+$10, with more positive values reflecting more cooperative actions and more negative values reflecting more conflictual actions.
%\begin{table}[htp]
%\begin{center}
%\caption{PLOVER conflict--cooperation scores}
%\begin{tabular}{lc}
%\hline
%\textbf{PLOVER category} & \textbf{PLOVER scores} \\
%\hline
%ASSAULT & -9.3\\
%COERCE & -7.2\\
%PROTEST & -6.6\\
%MOBILIZE & -5.3\\
%SANCTION & -5.2\\
%THREATEN & -5.1\\
%REQUEST & -5.0\\
%REJECT & -4.2\\
%ACCUSE & -2.0\\
%CONSULT & +2.1\\
%AGREE & +4.2\\
%SUPPORT & +4.6\\
%CONCEDE & +5.0\\
%COOPERATE & +6.8\\
%AID & +7.4\\
%RETREAT & +7.6 \\
%\hline
%\end{tabular}
%\end{center}
%\label{tab:ploverscores}
%\end{table}
\begin{table}[htp]
\begin{center}
\caption{PLOVER conflict--cooperation scores}
\hspace*{-1.2cm}
\begin{tabular}{|lc|lc|lc|}
\hline
\textbf{CATEGORY: Mode} & \textbf{Score} & \textbf{CATEGORY: Mode} & \textbf{Score} & \textbf{CATEGORY: Mode} & \textbf{Score} \\
\hline
\cellcolor{gray!25}AGREE & \cellcolor{gray!25}2.5 & \cellcolor{gray!25}REJECT & \cellcolor{gray!25}-2 & \cellcolor{gray!25}COERCE & \cellcolor{gray!25}-7 \\
\cellcolor{gray!25}CONSULT & \cellcolor{gray!25}2.5 & REJECT: Assist & -1.5 & COERCE: Seize & -7 \\
CONSULT: Visit & 4 & REJECT: Change & -2 & COERCE: Restrict & -7 \\
CONSULT: Third-party & 1 & REJECT: Yield & -2 & COERCE: Censor & -6.5 \\
CONSULT: Multilateral & 4 & REJECT: Meet & -2 & COERCE: Curfew & -6.5 \\
CONSULT: Phone & 1.5 & \cellcolor{gray!25}THREATEN & \cellcolor{gray!25}-3.5 & COERCE: Martial-law & -7.5 \\
\cellcolor{gray!25}SUPPORT & \cellcolor{gray!25}5 & THREATEN: Restrict & -3 & COERCE: Arrest & -7 \\
\cellcolor{gray!25}CONCEDE & \cellcolor{gray!25}4.5 & THREATEN: Arrest & -3.5 & COERCE: Deport & -7 \\
\cellcolor{gray!25}COOPERATE & \cellcolor{gray!25}9.5 & THREATEN: Relations & -3.5 & COERCE: Withhold & -7 \\
\cellcolor{gray!25}AID & \cellcolor{gray!25}10 & THREATEN: Expel & -3.5 & COERCE: Misinformation & -6.5 \\
\cellcolor{gray!25}RETREAT & \cellcolor{gray!25}6.5 & THREATEN: Territory & -4 & COERCE: Cyber & -7 \\
RETREAT: Withdraw & 8 & THREATEN: Violence & -3.5 & \cellcolor{gray!25}ASSAULT & \cellcolor{gray!25}-9 \\
RETREAT: Release & 6.5 & \cellcolor{gray!25}PROTEST & \cellcolor{gray!25}-5 & ASSAULT: Abduct & -8.5 \\
RETREAT: Disarm & 10 & PROTEST: Demo & -5 & ASSAULT: Beat & -7.5 \\
RETREAT: Ceasefire & 7.5 & PROTEST: Riot & -7 & ASSAULT: Torture & -8.5 \\
RETREAT: Access & 6.5 & PROTEST: Strike & -5 & ASSAULT: Sexual & -8.5 \\
RETREAT: Resign & 4.5 & PROTEST: Hunger & -4.5 & ASSAULT: Targeted & -9.5 \\
\cellcolor{gray!25}REQUEST & \cellcolor{gray!25}0 &PROTEST: Boycott & -4.5 & ASSAULT: Destroy & -8.5 \\
REQUEST: Assist & 0.5 & PROTEST: Obstruct & -4.5 & ASSAULT: Primitive & -8 \\
REQUEST: Change & -1 & \cellcolor{gray!25}SANCTION & \cellcolor{gray!25}-6 & ASSAULT: Firearms & -9 \\
REQUEST: Yield & -1 & SANCTION: Convict & -6 & ASSAULT: Explosives & -9 \\
REQUEST: Meet & 0 & SANCTION: Expel & -5.5 & ASSAULT: Suicide-attack & -9.5 \\
\cellcolor{gray!25}ACCUSE & \cellcolor{gray!25}3& SANCTION: Withdraw & -6 & ASSAULT: Aerial & -9.5 \\
ACCUSE: Disapprove & -2 & SANCTION: Discontinue & -6 & ASSAULT: Drone & -9.5 \\
ACCUSE: Investigate & -3.5 & \cellcolor{gray!25}MOBILIZE & \cellcolor{gray!25}-5.5 & ASSAULT: Heavy-weapons & -9.5 \\
ACCUSE: Allege & -3.5 & MOBILIZE: Troops & -6.5 & ASSAULT: Crowd-control & -7.5 \\
& & MOBILIZE: Weapons & -6.5 & ASSAULT: Unconventional & -10 \\
& & MOBILIZE: Police & -5.5 & &\\
& & MOBILIZE: Militia & -6 & &\\
\hline
\end{tabular}
\end{center}
\label{tab:ploverscores}
\end{table}
\chapter{Event Categories}
\section{AGREE}
Agree to, offer, promise, or otherwise indicate willingness or commitment to cooperate, including promises to sign or ratify agreements. Cooperative actions of types \plcat{CONSULT}, \plcat{SUPPORT}, \plcat{COOPERATE}, and \plcat{AID} reported in future tense are also taken to imply intentions and should be coded as \plcat{AGREE}.
\subsection{Potential ambiguities}
\begin{itemize}
\item As noted in Section \ref{ssec:special}, there's the potential for some events to fit both the definition of \plcat{AGREE} and \plcat{SUPPORT} + \plcon{future}. For example, ``Russia and the United States \emph{will sign an agreement} limiting certain kinds of weapons...". When situations like this occur, the coder should always return the single event category that fits, rather than a category+auxiliary mode.
\item Future cooperative actions of type \plcat{RETREAT} + \plcon{future} and \plcat{CONCEDE} + \plcon{future} should be left as they are, i.e. they do not reduce to \plcat{AGREE}.
% AB 2021-09-22: not sure whether to include this
%\item There is some ambiguity in what should be coded as \plcon{future} versus realized or imminently realized cooperation. If the event concerns a specific action and it is clear that it will be realized, retain the original event category; otherwise code as \plcat{AGREE}. For example, ``France has said that it will provide \$ 5 million in military equipment to Ukraine'' should be coded as \plcat{AGREE}, while the more generic ``France has said that it will provide military aid to Ukraine'' should be coded as \plcat{AGREE}.
\end{itemize}
\subsection{Requires recipient: No}
\subsection{Supplementary fields: None}
\subsection{Quad category: VERBAL COOPERATION}
\newpage
\section{CONSULT}
All consultations and meetings: this includes visiting and hosting visits, as well as meeting at a neutral location, and consultation by phone or other media. Because this type of political event is both frequent and easily (and safely\ldots) covered in the international press, it is the largest category in most event data sets. Additional useful keywords for identifying \plcat{CONSULT}: ``Holding talks'' and ``discussions'', ``negotiations, bargaining, or discussions''. See the discussion in Section \ref{sec:recip} on the treatment of actors in \plcat{CONSULT} events.
\subsection{Potential ambiguities}
\begin{itemize}
\item References to future meetings, summits, state visits, etc. and invitations for state visits should be coded as \plcat{AGREE}.
\item Consultations with ambassadors already in a country---typically this is done to complain about an action---should be coded for the content of the action. Since this is typically done to complain about actors, this would usually be \plcat{ACCUSE} or \plcat{REJECT} with modes such as \txt{ACCUSE-disapprove} or \txt{ACCUSE-allege}
\end{itemize}
\subsection{Requires recipient: No}
In \plcat{CONSULT} events where there is no clear distinction between whether an entity is hosting or visiting, all participants are coded in the \txt{actor} field. In events where one side is hosting and one is visiting, the visitor will always be coded as the \txt{actor} and the host will be the \txt{recipient}.
\subsection{Supplementary fields: modes}
\begin{table}[htp]
\caption{CONSULT modes}
\begin{center}
\begin{tabular}{|l|p{13cm}|}
\hline
Name & Content \\
\hline
visit & \txt{actor} is visiting, \txt{recipient} is hosting.\\
third-party & Meeting is hosted by a third party\\
multilateral & Meeting occurs in a multilateral context, typically an alliance or IGO\\
phone & Consultation occurs via phone or some other remote medium\\
\hline
\end{tabular}
\end{center}
\label{tab:consultmode}
Adapted from CAMEO.
\end{table}%
\subsection{Quad category: VERBAL COOPERATION}
\newpage
\section{SUPPORT}
Initiate, resume, improve, or expand diplomatic, non-material cooperation; express support for, commend, approve policy, action, or actor, or ratify, sign, or finalize an agreement or treaty. Use this code only for political, diplomatic, and non-material support, including recognition of newly independent states, new governments that might have come to power through unconventional means, and initiation of diplomatic ties with an entity for the first time.
\plcat{SUPPORT} is distinct from the CAMEO \plcat{APPEAL} category, where the actor simply \textit{requested} support from the recipient.
\subsection{Requires recipient: No}
\subsection{Potential ambiguities}
The term used for this category, \plcat{SUPPORT}, is a somewhat ambiguous. Although it may imply a material event, but this category should only be used for verbal cooperation.
\begin{itemize}
\item Formal pardons and amnesties of arrested persons should be coded as \plcat{CONCEDE}; the actual release or exchange of prisoners should be coded as \plcat{RETREAT}.
\item Expressions of regret or remorse for an action or situation should be coded as \plcat{CONCEDE}.
\item Promises to sign or ratify agreements and treaties are coded as \plcat{AGREE}
\item Military cooperation or defense should be coded as \plcat{COOPERATE} with a \txt{military} $context.$
\end{itemize}
\subsection{Supplementary fields: None}
\subsection{Quad category: VERBAL COOPERATION}
\newpage
\section{CONCEDE}
This covers verbal concessions which have no immediate material consequences, including the promise of future concessions such easing of administrative or legal restrictions on persons and organizations, removing curfews, suspending protests, and declarations (but not implementations) of ceasefires and withdrawals from territory.
\plcat{CONCEDE}, like the verbal components CAMEO/WEIS predecessor \plcat{YIELD}, is inherently problematic since many concessions deal with promises that certain things will \ti{not} happen, or will happen in the distant future (e.g. many policy changes). So, for example, the lifting of a curfew is, effectively, a promise that people will not be arrested for violating the curfew, which itself is not an event. We're treating such concessions as verbal rather than material even though sometimes they have material consequences, e.g. people coming out in the streets after a curfew is lifted, provide they believe the entity lifting the curfew actually has done so.
\subsection{Requires recipient: No}
\subsection{Potential ambiguities}
\begin{itemize}
\item Formal pardons, acquittals, and amnesties of arrested persons should be coded as \plcat{CONCEDE}; the actual release or exchange of prisoners should be coded as \plcat{RETREAT}.
\item Expressions of regret or remorse for an action or situation should be coded as \plcat{CONCEDE}.
\item Future concessions, i.e. \plcat{CONCEDE} + \plcon{future} should be left as they are, i.e. they do not reduce to \plcat{AGREE}.
\item Announcements of future retreats should be coded as \plcat{CONCEDE}. E.g., ``announced...would withdraw troops" is \plcat{RETREAT} + \plcat{FUTURE} and should be coded as \plcat{CONCEDE}.
\end{itemize}
\subsection{Supplementary fields: None}
\subsection{Quad category: VERBAL COOPERATION}
\newpage
\section{COOPERATE}
Initiate, resume, improve, or expand \ti{mutual} material cooperation or exchange, including
\begin{itemize}
\item Initiate, resume, improve, or expand economic exchange or cooperation.
\item Military exchanges such as joint military games and maneuvers.
\item Cooperation on judicial matters, such as extraditions and war crimes.
\item Voluntary exchanges or sharing of intelligence and other significant information.
\end{itemize}
\subsection{Potential ambiguities}
\begin{itemize}
\item \plcat{COOPERATE} is distinguished from \plcat{AID} because the activity is generally understood to directly benefit both parties, whereas \plcat{AID} is understood to primarily benefit only the recipient.
\item Promises, offers, or agreement for future cooperation should be coded as \plcat{AGREE}.
\end{itemize}
\subsection{Requires recipient: Yes}
\subsection{Supplementary fields: None}
\subsection{Quad category: MATERIAL COOPERATION}
\newpage
\section{AID}
All provisions of providing material aid whose material benefits primarily accrue to the recipient. Examples include:
\begin{itemize}
\item Monetary aid and financial guarantees, grants, gifts and credit, including reparations.
\item Military and police assistance including arms and personnel.
\item Humanitarian aid such as emergency assistance.
\item Asylum, both to persons in its territories (territorial asylum) and diplomatic asylum on the premises of an embassy.
\end{itemize}
\subsection{Requires recipient: Yes}
\subsection{Potential ambiguities}
\begin{itemize}
\item While reparations or voluntary settlements should be coded as \plcat{AID}, court-ordered payments should be coded as \plcat{SANCTION} events with the winner and court as actor and guilty party as recipient.
\item Broad promises of future \plcat{AID} should be coded as \plcat{AGREE}.
\item Debt forgiveness and loan cancellations, e.g. ``The Paris Club has agreed to forgive \$200 of Nigeria’s \$350 million in loan obligations, \dots'' should be coded as \plcat{AID}.
\item Hostage rescues, e.g. ``Pakistan’s military rescued 10 hostages from the border region with Afghanistan yesterday'' or ``Police in Barcelona freed 10 human trafficking victims during an operation yesterday'' should be coded as \plcat{AID}.
\end{itemize}
\subsection{Supplementary fields: None}
\subsection{Quad category: MATERIAL COOPERATION}
\newpage
\section{RETREAT}
\plcat{RETREAT} covers any events---not just military ``retreat'' from territory---which have an immediate (not simply promised) material consequences, such as the release of prisoners and hostages, repatriation of refugees, the return of confiscated property, allowing the entry of observers, peacekeepers, or humanitarian workers, disarming, observing a ceasefire or otherwise ending active conflicts, and, of course, a military retreat from, or ceding, territory. \plcat{RETREAT} also covers resignations of government officials.
\subsection{Requires recipient: No}
\subsection{Potential ambiguities}
\begin{itemize}
\item Announcements of future retreats should be coded as \plcat{CONCEDE}. E.g., ``announced...would withdraw troops" is \plcat{RETREAT} + \plcat{FUTURE} and should be coded as \plcat{CONCEDE}.
\item Debt forgiveness and loan cancellations, e.g. ``The Paris Club has agreed to forgive \$200 of Nigeria’s \$350 million in loan obligations, \dots'' should be coded as \plcat{AID}.
\item Hostage rescues, e.g. ``Pakistan’s military rescued 10 hostages from the border region with Afghanistan yesterday'' or ``Police in Barcelona freed 10 human trafficking victims during an operation yesterday'' should be coded as \plcat{AID}.
\item Refugees or similar actors that are characterized fleeing a country or subnational location should be coded \plcat{SANCTION} `expel' with the causative agent as the actor rather than \plcat{SANCTION} `withdraw' or \plcat{RETREAT} `withdraw' with the actor coded as the fleeing party.
\end{itemize}
\subsection{Supplementary fields: modes}
\begin{table}[htp]
\caption{RETREAT modes}
\begin{center}
\begin{tabular}{|l|p{13cm}|}
\hline
Name & Content \\
\hline
withdraw & Retreat from territory or withdraw forces from an area\\
release & Release captives \\
%return & Return property \\
disarm & Disarm militarily or give up weapons\\
ceasefire & Implement ceasefire\\
access & Allow third party (e.g., observers, peacekeepers, humanitarian workers) access \\
resign & Official resignation \\
\hline
\end{tabular}
\end{center}
\label{tab:retreatmode}
\end{table}%
\subsection{Quad category: MATERIAL COOPERATION}
\newpage
\section{REQUEST}
All requests, demands, and orders. Requests, demands, and orders are less forceful than threats and potentially carry less serious repercussions. Coding will need to rely primarily on the language used by reporters to make this distinction. All requests are verbal acts.
\subsection{Requires recipient: No}
\subsection{Potential ambiguities}
\begin{itemize}
\item This category only applies to verbal demands: demands that take the form of demonstrations, protests, etc. are coded as \plcat{PROTEST}.
\item When one or more parties to a conflict call for ending the conflict, that is taken to be an expression of intent on the part of the \txt{actor} and is thus coded as \plcat{AGREE}.
\item Withdrawing a demand should be coded as \plcat{CONCEDE}.
\item \plcat{REQUEST} `change' includes calls for dismissal of officials (as in, a request for change in leadership).
\end{itemize}
\subsection{Supplementary fields: modes}
\begin{table}[htp]
\caption{REQUEST modes. These modes are shared with REJECT.}
\begin{center}
\begin{tabular}{|l|p{13cm}|}
\hline
Name & Content \\
\hline
assist & Any form of exchange, relations, or assistance\\
change & Any changes in policy, government, or institutions that are not concessions \\
yield & Release of prisoners, ending sanctions, easing curfews and boycotts, ceasefires\\
meet & Meetings and negotiations\\
\hline
\end{tabular}
\end{center}
\label{tab:requestmode2}
\end{table}%
\subsection{Quad category: VERBAL CONFLICT}
\newpage
\section{ACCUSE}
\begin{itemize}
\item Express disapprovals, objections, and complaints; condemn, decry a policy or an action; criticize, defame, denigrate responsible parties.
\item Accuse, allege, or charge, both judicially and informally
\item Sue or bring to court
\item All investigations, including those of historical cases. Examples include investigations of criminal activity (theft, killing, etc.) and corruption, human rights abuses, war crime, and violations of basic freedoms, military activities such as violations of ceasefire, seizures, and invasions.
\end{itemize}
\subsection{Requires recipient: No}
\subsection{Potential ambiguities}
\begin{itemize}
\item \plcat{ACCUSE} `disapprove' is used for diplomatic protests, as well as delegations presenting a disagreement to an organization or authority, or protests carried out in social media. As noted under \plcat{CONSULT}, summoning an in-country ambassador to present such grievances is just coded \plcat{ACCUSE}, not \plcat{CONSULT}
\item Candidates for \plcat{ACCUSE} `allege' + context: ``misinformation" events could also be \plcat{COERCE} `misinformation,' depending on the wording of the relevant text.
\item When an accusation or allegation is also reported alongside a formal conviction, \plcat{ACCUSE} `allege' should not be coded as these are cases where the allegation was proven to be true.
\end{itemize}
\subsection{Supplementary fields: modes}
\begin{table}[htp]
\caption{\plcat{ACCUSE} modes}
\begin{center}
\begin{tabular}{|l|p{13cm}|}
\hline
Name & Content \\
\hline
disapprove & Express disapproval; condemn; complain\\
investigate & Any investigation, including commissions, grand juries, judicial or political\\
allege & Formally or informally accuse; sue, indict, or charge; bring to trial\\
\hline
\end{tabular}
\end{center}
\label{tab:accusemode}
\end{table}%
\subsection{Quad category: VERBAL CONFLICT}
\newpage
\section{REJECT}
All rejections and refusals.
\subsection{Requires recipient: No}
\subsection{Potential ambiguities}
\begin{itemize}
\item Withdrawal of military aid or other assistance is coded as \plcat{SANCTION}.
\item An instance where a country or similar entity bars a group or organization from entering its territory should be coded as \plcat{REJECT} whereas instances where a group or organization is expelled from a country or similar entity should be coded as \plcat{COERCE}.
\end{itemize}
\subsection{Supplementary fields: modes}
\begin{table}[htp]
\caption{\plcat{REJECT} modes. These modes are shared with \plcat{REQUEST}.}
\begin{center}
\begin{tabular}{|l|p{13cm}|}
\hline
Name & Content \\
\hline
assist & Any form of exchange, relations, or assistance\\
change & Any changes in policy, government, or institutions that are not concessions \\
yield & Release of prisoners, ending sanctions, easing curfews and boycotts, ceasefires\\
meet & Meetings and negotiations\\
\hline
\end{tabular}
\end{center}
\label{tab:rejectmode}
\end{table}%
\subsection{Quad category: VERBAL CONFLICT}
\newpage
\section{THREATEN}
All threats, coercive or forceful warnings with serious potential repercussions. Threats are generally verbal acts except for purely symbolic material actions such as having an unarmed group place a flag on some territory.
\subsection{Requires recipient: No}
\subsection{Potential ambiguities}
\begin{itemize}
\item Issuing an in-absentia arrest should be coded as a \plcat{THREAT} `arrest' rather than \plcat{COERCE} `arrest'.
\end{itemize}
\subsection{Supplementary fields: mode}
Note that in \plcat{THREATEN} the mode is the \ti{content} of the threat, rather than how it has been expressed.
\begin{table}[htp]
\caption{THREATEN modes}
\begin{center}
\begin{tabular}{|l|l|}
\hline
Name & Content \\
\hline
restrict & Restrict movement of people or goods---including boycotts, strikes, blockades, and \\
& curfews---as well as the banning of political activities of particular parties or individuals \\
arrest & Arrest, detain, imprison \\
relations & Threaten to suspend relations or ongoing talks, meetings, or negotiations\\
expel & Expel diplomats, peacekeepers, NGOs \\
territory & Threaten to occupy, seize control of the whole or part of a territory \\
violence & Threaten violence \\
\hline
\end{tabular}
\end{center}
\label{tab:threatmode}
\end{table}%
\subsection{Quad category: VERBAL CONFLICT}
\newpage
\section{PROTEST}
All civilian demonstrations and other collective actions carried out as protests against the recipient: Dissent collectively, publicly show negative feelings or opinions; rally, gather to protest a policy, action, or actor(s).
\subsection{Requires recipient: No}
\subsection{Potential ambiguities}
\begin{itemize}
\item Diplomatic protests, as well as delegations presenting a disagreement to an organization or authority, or protests carried out in social media, are coded as \plcat{ACCUSE} `disapprove.' \plcat{PROTEST} presumes significant physical/material activity, not just an expression of opinion.
\item When coding additional events within a text describing a protest, generally the \textit{topic} of the protest---which will typically be a REQUEST---is not coded as a separate event. However, discrete events that are the motivatation for the protest---for example a visit by a foreign dignitary, earlier actions by the police or military, or an earlier arrest---should be coded.
\end{itemize}
\subsection{Supplementary fields:}
\begin{description}
\item[mode:] Mode of protest: see Table \ref{tab:protestmode}
\item[event\_loc:] Location[s] of event
\end{description}
%The protest contexts that were included in older versions of this manual were removed in favor of a single set of PLOVER-base context tags. See Section \ref{sec:adding_to_plover} for a discussion of how custom, event-specific context codes can be added.
\begin{table}[htp]
\caption{PROTEST modes}
\begin{center}
\begin{tabular}{|l|p{13cm}|}
\hline
Name & Content \\
\hline
demo & Organized demonstration. Distinct, continuous, and largely peaceful action directed toward
members of a distinct `other' group or government authorities \\
riot & Violent riot. Distinct, continuous and violent action directed toward members of
a distinct `other' group or government authorities. The participants intend to cause physical injury and/or property damage \\
strike & Members of an organization or union engage in the abandonment of
workplaces, either within specific sectors/industries or across sectors/industries\\
hunger & Hunger strike\\
boycott & The boycott of an activity, person, country, or organization via the withdrawal of commercial or social relations\\
obstruct & Obstruct passage or access to a particular locale \\
vandalize & Damage or destroy property as a \textit{symbolic} act (for example damaging of artworks) rather destruction incidental to a riot \\
\hline
\end{tabular}
\end{center}
\label{tab:protestmode}
\raggedright{Adapted from Salehyan and Hendix, \textit{Social Conflict Analysis Database} (SCAD)
Version 3.2: \url{https://www.strausscenter.org/images/codebooks/SCAD\_32\_Codebook.pdf}}\\~
\end{table}%
\subsection{Quad category: MATERIAL CONFLICT}
\newpage
\section{SANCTION}
All reductions in existing, routine, or cooperative relations. Note that this is not confined to formal ``sanctions''---\plcat{SANCTION} was just the best word we could find for WEIS and CAMEO's ``REDUCE RELATIONS''
\subsection{Requires recipient: Yes}
\subsection{Potential ambiguities}
\begin{itemize}
\item Convictions that result in imprisonment should also be coded as \plcat{COERCE} `arrest'.
\item Expulsions or deportations of individuals---typically a legal matter---are coded as \plcat{COERCE}.
\item Cancellation of meetings are \plcat{REJECT} and therefore verbal conflict.
\item While reparations or voluntary settlements should be coded as \plcat{AID}, court-ordered payments should be coded as \plcat{SANCTION} events with the winner and court as actor and guilty party as recipient.
\item Refugees or similar actors that are characterized fleeing a country or subnational location should be coded \plcat{SANCTION} `expel' with the causative agent as the actor rather than \plcat{SANCTION} `withdraw' or \plcat{RETREAT} `withdraw' with the actor coded as the fleeing party.
\end{itemize}
\subsection{Supplementary fields: mode}
\begin{table}[htp]
\caption{SANCTION modes}
\begin{center}
\begin{tabular}{|l|p{13cm}|}
\hline
Name & Content \\
\hline
convict & Find an entity or behavior guilty, unconstitutional, or liable in a court of law or legally constituted tribunal. This includes not only formal convictions but also instances where an entity is discussed as being found guilty and sentenced or sanctioned via court-order, though court sentences that include imprisonment will also receive a \plcat{COERCE} `arrest' mode, (see ambiguities above)\\
expel & Permanently or temporarily expel an entity from a group, organization, political party, or country. Aside from the expulsion of ambassadors or similar diplomats, this mode excludes individual deportations, which are coded as a mode under \plcat{COERCE}\\
withdraw & Withdraw oneself or one's non-military resources (e.g., aid, observers, diplomats, peacekeepers) from a group, mediation activity, organization, or country. This excludes official resignations from an occupation or elected position, which are coded as a mode under \plcat{RETREAT}\\
discontinue & Curtail, decrease, break, or terminate diplomatic, commercial, or material exchanges in manners not specified above. International (political or economic) sanctions are coded as `discontinue', although they can occasionally receive additional \plcat{SANCTION} modes depending on the nature of the sanctions \\
\hline
\end{tabular}
\end{center}
\label{tab:sanctionmode}
\end{table}%
\subsection{Quad category: MATERIAL CONFLICT}
\newpage
\section{MOBILIZE}
All military or police moves that fall short of the actual use of force.
This category is different from \plcat{ASSAULT}, which refers to actual uses of force, while military posturing falls short of actual use of force and is typically a demonstration of military capabilities and readiness. \plcat{MOBILIZE} is also distinct from \plcat{THREAT} in that the latter is typically verbal, and does not involve any activity that is undertaken to demonstrate military power.
\txt{actor} entities are not necessarily militaries affiliated with states: they can be any organized armed groups (for example militias or gangs).
The \txt{recipient} are entities against whom the \txt{actor} mobilizes its military capabilities in a threatening manner if that is clear, but a group may mobilize with no specific entity stated.
\subsection{Potential ambiguities}
\begin{itemize}
\item Joint military operations are coded as \plcat{COOPERATE} but single-country exercises should be coded as \plcat{MOBILIZE}.
\item Events that involved ``mobilizing supporters to demonstrate" should be coded as \plcat{PROTEST}.
\item If a document reports a \plcat{MOBILIZE} event in the context of an \plcat{ASSAULT}, only the \plcat{ASSAULT} should be coded. For example: ``military units in the area were activated and returned fire on the rebels" should not report a separate \plcat{MOBILIZE} event.
\item Mobilizing police or military forces for disaster relief should be coded as \plcat{AID}.
\item Mobilizing weapons, ships, or vehicles should be coded as \plcat{MOBILIZE} `weapons' rather than \plcat{MOBILIZE} `troops,' unless there's a separate mention of troops being mobilized.
\end{itemize}
\subsection{Requires recipient: No}
\subsection{Supplementary fields: modes }
\begin{table}[htp]
\caption{MOBILIZE modes}
\begin{center}
\begin{tabular}{|l|p{13cm}|}
\hline
Name & Content \\
\hline
troops & Mobilize armed personnel or units\\
weapons & Increase readiness of weapons systems (can occur with a \plcon{cyber} context) \\
police & Mobilize or increase readiness of police or security units\\
militia & Mobilize or increase readiness of any non-state entity with significant military capability\\
\hline
\end{tabular}
\end{center}
\label{tab:mobilizemode}
Adapted from CAMEO cue category 15
\end{table}
\subsection{Quad category: MATERIAL CONFLICT}
\newpage
\section{COERCE}
Repression, restrictions on rights, or coercive uses of power falling short of violence.
\subsection{Requires recipient: No}
Most cases of \plcat{COERCE} have a clear intended \txt{recipient}, but occasionally, for example in shutting off internet access, the entities intended to be affected by the action are so broad as to be unclear.
\subsection{Potential ambiguities}
\begin{itemize}
\item Candidates for \plcat{COERCE} `misinformation' could also be \plcat{ACCUSE} `allege' $+$ context: ``misinformation'' events, depending on the wording of the relevant text.
\item Combatants captured during conflict should be coded as \plcat{ASSAULT} `abduct' rather than \plcat{COERCE} `arrest.'
\item The ``cyber'' and ``misinformation'' modes both have corresponding contexts with the same name. The modes capture specific instances of ``cyber'' or ``misinformation'' actions, e.g. a report of a website denial of service attack or a social media disinformation campaign. The contexts are broader, and also capture other actions related to ``cyber'' or ``misinformation'' events, like for example the arrest of a person for hacking or cybercrime, or a threat by the recipient of a misinformation campaign to the responsible actor to cease it.
\item State of emergencies in relation to national disasters should generally not be coded as \plcat{COERCE} `restrict' absent evidence for their use as a repressive tactic.
\item Issuing an in-absentia arrest should be coded as a \plcat{THREAT} `arrest' rather than \plcat{COERCE} `arrest'.
\item An instance where a country or similar entity bars a group or organization from entering its territory should be coded as \plcat{REJECT} whereas instances where a group or organization is expelled from a country or similar entity should be coded as \plcat{COERCE}.
\end{itemize}
\subsection{Supplementary fields: }
\begin{table}[htp]
\caption{COERCE modes}
\begin{center}
\begin{tabular}{|p{.21\textwidth}|L{.73\textwidth}|}
\hline
Name & Content \\
\hline
seize & Execute search, confiscate property, raid \\
restrict & Impose restrictions on political freedoms or movement, including cordoning off areas and the banning of individuals or organizations from political life \\
censor & Censor, ban or restrict access to publications or other information \\
curfew & Impose curfew \\
martial-law & Impose state of emergency or martial law \\
arrest & Arrest, detain \\
deport & Expel or deport individuals \\
withhold & Withhold public goods/services, e.g. shut off power/internet/water/ utilities or withhold food/medical supplies \\
misinformation & deception/manipulation/misinformation (will also automatically add ``misinformation'' context) \\
cyber & cyber attacks and crime, including hacking, security breaches, website attacks, etc. (will also automatically add ``cyber'' context) \\
\hline
\end{tabular}
\end{center}
\label{tab:coerce}
Adapted from CAMEO cue category 17
\end{table}%
\subsection{Quad category: MATERIAL CONFLICT}
\newpage
\section{ASSAULT}
\plcat{ASSAULT} events are deliberate actions which can potentially result in substantial physical harm.
\subsection{Requires recipient: No}
In \plcat{ASSAULT} events where the violence is two-sided, all participants are coded in the \txt{actor} field except when a ``Side A/Side B'' can be distinguished per the conventions of the Correlates of War project, in which case the \plmod{sideAB} mode is added to any other relevant modes. In one-sided violence, the perpetrator is coded as the \txt{actor} and the victim as the \txt{recipient}.
% AH: I think the sideAB thing is confusing. I'm not sure how it's different from the distinction we get from two actors vs. actor and recipient.
\subsection{Potential ambiguities}
\begin{itemize}
\item General or ambiguous mentions of beatings/assaults without any mention of specific tools or methods only receive the \plcat{ASSAULT} `beat' mode.
\item Mentions of beatings/assaults that use fists, kicks, punches, and similar methods also only receive the \plcat{ASSAULT} `beat' mode.
\item Mentions of beatings/assualts that use blunt instruments such as bats, clubs, and so on receive both \plcat{ASSAULT} `beat' and \plcat{ASSAULT} `primitive' modes.
\item Mentions of assaults, murders, or clashes that involve knives, machetes, fire, rocks and similar instruments only receive the \plcat{ASSAULT} ``primitive'' mode.
\item Usage of \plcat{ASSAULT} `crowd-control' should be reserved for instances where there is an explicit mention of a crowd control weapon or tactic. Cases that discuss more ambiguous interactions such as ``police pushed back protesters'' would be coded as \plcat{RESTRICT}.
\item Combatants captured during conflict should be coded as \plcat{ASSAULT} `abduct' rather than \plcat{COERCE} `arrest.'
\item Incidental damage to houses/property should not automatically be coded as \plcat{ASSAULT} `destroy.' \plcat{ASSAULT} `destroy' should be used either as a residual mode when the method or weapon of \plcat{ASSAULT} is unknown but property or infrastructure is destroyed, or when destruction is the intention of the \plcat{ASSAULT} (e.g., the bombing energy infrastructure; demolition of housing settlements).
\end{itemize}
\subsection{Supplementary fields:}
\begin{table}[htp]
\caption{ASSAULT modes}
\begin{center}
\begin{tabular}{|p{.18\textwidth}|p{.76\textwidth}|}
\hline
Name & Content \\
\hline
abduct & Abduct, kidnap, hijack \\
beat & Physically assault by striking individuals or groups with one-off or repeated blows, typically administered manually or by blunt instrument\\
torture & Torture \\
%execute & Judicially-sanctioned execution \\
sexual & Sexual violence\\
targeted & Targeted killings, including (successful and attempted) assassinations and executions, as well as deliberate mass killings of defenseless actors \\
destroy & Intentional destruction of property \\
primitive & Primitive weapons: fire, edged weapons, rocks, farm implements \\
firearms & Rifles, pistols, light machine guns\\
explosives & Any explosive not incorporated in a heavy weapon: mines, IEDS, car bombs \\
suicide-attack & Individual and vehicular suicide attacks \\
aerial & Manned aerial vehicles, e.g. aircraft, helicopters \\
drone & Unmanned aerial vehicles (UAVs), drones \\
heavy-weapons & Artillery, rocket launchers, armored vehicles, tanks, and similar weapons \\
crowd-control & Weapons and tactics intended to be less lethal crowd control, including tear gas, water cannons, firing weapons in the air, lathi charges, etc. \\
%cleansing & Mass expulsions or deportations, ethnic cleansing \\
%massacre & Instances of mass killing or massacres \\
unconventional & Chemical, biological, radiation, and nuclear weapons \\
%sideAB & Two-sided violence: \txt{actor} and \txt{recipient} are ``Side A'' and ``Side B'' \\
\hline
\end{tabular}
\end{center}
\label{tab:violmode}
\raggedright{Adapted from Political Instability Task Force Atrocities Database: \url{http://eventdata.parusanalytics.com/data.dir/atrocities.html}}.
\end{table}%
\begin{description}
\item[mode:] Mode of violence: see Table \ref{tab:violmode}
%\item[dead:] number killed (integer or code)
%\item[injured:] number injured (integer or code)
%\item[size:] used when total casualties are reported, combining dead and wounded
\item[event\_loc:] Location of event
\end{description}
\subsection{Quad category: MATERIAL CONFLICT}
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%