forked from ietf-tools/datatracker
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathnames.json
More file actions
17761 lines (17761 loc) · 363 KB
/
names.json
File metadata and controls
17761 lines (17761 loc) · 363 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
[
{
"fields": {
"content": "{% autoescape off %}{{ assigner.ascii }} has assigned {{ reviewer.person.ascii }} as a reviewer for this document.\r\n\r\n{% if prev_team_reviews %}This team has completed other reviews of this document:{% endif %}{% for assignment in prev_team_reviews %}\r\n- {{ assignment.completed_on }} {{ assignment.reviewer.person.ascii }} -{% if assignment.reviewed_rev %}{{ assignment.reviewed_rev }}{% else %}{{ assignment.review_request.requested_rev }}{% endif %} {{ assignment.result.name }} \r\n{% endfor %}{% endautoescape %}",
"group": null,
"path": "/group/defaults/email/review_assigned.txt",
"title": "Default template for review assignment email",
"type": "django",
"variables": ""
},
"model": "dbtemplate.dbtemplate",
"pk": 354
},
{
"fields": {
"doc_type": "charter",
"name": "Ready for external review",
"order": 1,
"positions": [
"yes",
"noobj",
"block",
"abstain",
"norecord"
],
"question": "Is this charter ready for external review?",
"slug": "r-extrev",
"used": true
},
"model": "doc.ballottype",
"pk": 1
},
{
"fields": {
"doc_type": "charter",
"name": "Ready w/o external review",
"order": 2,
"positions": [
"yes",
"noobj",
"block",
"abstain",
"norecord"
],
"question": "Is this charter ready for external review? Is this charter ready for approval without external review?",
"slug": "r-wo-ext",
"used": true
},
"model": "doc.ballottype",
"pk": 2
},
{
"fields": {
"doc_type": "charter",
"name": "Approve",
"order": 3,
"positions": [
"yes",
"noobj",
"block",
"abstain",
"norecord"
],
"question": "Do we approve of this charter?",
"slug": "approve",
"used": true
},
"model": "doc.ballottype",
"pk": 3
},
{
"fields": {
"doc_type": "draft",
"name": "Approve",
"order": 1,
"positions": [
"yes",
"noobj",
"discuss",
"abstain",
"recuse",
"norecord"
],
"question": "",
"slug": "approve",
"used": true
},
"model": "doc.ballottype",
"pk": 4
},
{
"fields": {
"doc_type": "conflrev",
"name": "Approve",
"order": 0,
"positions": [
"yes",
"noobj",
"discuss",
"abstain",
"recuse",
"norecord"
],
"question": "Is this the correct conflict review response?",
"slug": "conflrev",
"used": true
},
"model": "doc.ballottype",
"pk": 5
},
{
"fields": {
"doc_type": "statchg",
"name": "Approve",
"order": 0,
"positions": [
"yes",
"noobj",
"discuss",
"abstain",
"recuse",
"norecord"
],
"question": "Do we approve these RFC status changes?",
"slug": "statchg",
"used": true
},
"model": "doc.ballottype",
"pk": 6
},
{
"fields": {
"doc_type": "draft",
"name": "IRSG Approve",
"order": 0,
"positions": [
"moretime",
"notready",
"yes",
"noobj",
"recuse"
],
"question": "Is this draft ready for publication in the IRTF stream?",
"slug": "irsg-approve",
"used": true
},
"model": "doc.ballottype",
"pk": 7
},
{
"fields": {
"doc_type": "draft",
"name": "RSAB Approve",
"order": 0,
"positions": [
"concern",
"yes",
"recuse"
],
"question": "Is this draft ready for publication in the Editorial stream?",
"slug": "rsab-approve",
"used": true
},
"model": "doc.ballottype",
"pk": 8
},
{
"fields": {
"desc": "",
"name": "Active",
"next_states": [],
"order": 1,
"slug": "active",
"type": "draft",
"used": true
},
"model": "doc.state",
"pk": 1
},
{
"fields": {
"desc": "",
"name": "Expired",
"next_states": [],
"order": 2,
"slug": "expired",
"type": "draft",
"used": true
},
"model": "doc.state",
"pk": 2
},
{
"fields": {
"desc": "",
"name": "RFC",
"next_states": [],
"order": 3,
"slug": "rfc",
"type": "draft",
"used": true
},
"model": "doc.state",
"pk": 3
},
{
"fields": {
"desc": "",
"name": "Replaced",
"next_states": [],
"order": 4,
"slug": "repl",
"type": "draft",
"used": true
},
"model": "doc.state",
"pk": 4
},
{
"fields": {
"desc": "",
"name": "Withdrawn by Submitter",
"next_states": [],
"order": 5,
"slug": "auth-rm",
"type": "draft",
"used": true
},
"model": "doc.state",
"pk": 5
},
{
"fields": {
"desc": "",
"name": "Withdrawn by IETF",
"next_states": [],
"order": 6,
"slug": "ietf-rm",
"type": "draft",
"used": true
},
"model": "doc.state",
"pk": 6
},
{
"fields": {
"desc": "The ID has been published as an RFC.",
"name": "RFC Published",
"next_states": [
8
],
"order": 32,
"slug": "pub",
"type": "draft-iesg",
"used": true
},
"model": "doc.state",
"pk": 7
},
{
"fields": {
"desc": "Document is \"dead\" and is no longer being tracked. (E.g., it has been replaced by another document with a different name, it has been withdrawn, etc.)",
"name": "Dead",
"next_states": [
16
],
"order": 99,
"slug": "dead",
"type": "draft-iesg",
"used": true
},
"model": "doc.state",
"pk": 8
},
{
"fields": {
"desc": "The IESG has approved the document for publication, but the Secretariat has not yet sent out on official approval message.",
"name": "Approved-announcement to be sent",
"next_states": [
10
],
"order": 27,
"slug": "approved",
"type": "draft-iesg",
"used": true
},
"model": "doc.state",
"pk": 9
},
{
"fields": {
"desc": "The IESG has approved the document for publication, and the Secretariat has sent out the official approval message to the RFC editor.",
"name": "Approved-announcement sent",
"next_states": [
17
],
"order": 30,
"slug": "ann",
"type": "draft-iesg",
"used": true
},
"model": "doc.state",
"pk": 10
},
{
"fields": {
"desc": "An AD is aware of the document and has chosen to place the document in a separate state in order to keep a closer eye on it (for whatever reason). Documents in this state are still not being actively tracked in the sense that no formal request has been made to publish or advance the document. The sole difference between this state and \"I-D Exists\" is that an AD has chosen to put it in a separate state, to make it easier to keep track of (for the AD's own reasons).",
"name": "AD is watching",
"next_states": [
16
],
"order": 42,
"slug": "watching",
"type": "draft-iesg",
"used": false
},
"model": "doc.state",
"pk": 11
},
{
"fields": {
"desc": "The document is now (finally!) being formally reviewed by the entire IESG. Documents are discussed in email or during a bi-weekly IESG telechat. In this phase, each AD reviews the document and airs any issues they may have. Unresolvable issues are documented as \"discuss\" comments that can be forwarded to the authors/WG. See the description of substates for additional details about the current state of the IESG discussion.",
"name": "IESG Evaluation",
"next_states": [
18,
9,
22
],
"order": 20,
"slug": "iesg-eva",
"type": "draft-iesg",
"used": true
},
"model": "doc.state",
"pk": 12
},
{
"fields": {
"desc": "A specific AD (e.g., the Area Advisor for the WG) has begun reviewing the document to verify that it is ready for advancement. The shepherding AD is responsible for doing any necessary review before starting an IETF Last Call or sending the document directly to the IESG as a whole.",
"name": "AD Evaluation",
"next_states": [
21,
14,
12,
11
],
"order": 11,
"slug": "ad-eval",
"type": "draft-iesg",
"used": true
},
"model": "doc.state",
"pk": 13
},
{
"fields": {
"desc": "The AD has requested that the Secretariat start an IETF Last Call, but the the actual Last Call message has not been sent yet.",
"name": "Last Call Requested",
"next_states": [
15
],
"order": 15,
"slug": "lc-req",
"type": "draft-iesg",
"used": true
},
"model": "doc.state",
"pk": 14
},
{
"fields": {
"desc": "The document is currently waiting for IETF Last Call to complete. Last Calls for WG documents typically last 2 weeks, those for individual submissions last 4 weeks.",
"name": "In Last Call",
"next_states": [
19,
20
],
"order": 16,
"slug": "lc",
"type": "draft-iesg",
"used": true
},
"model": "doc.state",
"pk": 15
},
{
"fields": {
"desc": "A formal request has been made to advance/publish the document, following the procedures in Section 7.5 of RFC 2418. The request could be from a WG chair, from an individual through the RFC Editor, etc. (The Secretariat (iesg-secretary@ietf.org) is copied on these requests to ensure that the request makes it into the ID tracker.) A document in this state has not (yet) been reviewed by an AD nor has any official action been taken on it yet (other than to note that its publication has been requested.",
"name": "Publication Requested",
"next_states": [
13,
11,
8
],
"order": 10,
"slug": "pub-req",
"type": "draft-iesg",
"used": true
},
"model": "doc.state",
"pk": 16
},
{
"fields": {
"desc": "The document is in the RFC editor Queue (as confirmed by https://www.rfc-editor.org/queue.html).",
"name": "RFC Ed Queue",
"next_states": [
7
],
"order": 31,
"slug": "rfcqueue",
"type": "draft-iesg",
"used": true
},
"model": "doc.state",
"pk": 17
},
{
"fields": {
"desc": "During a telechat, one or more ADs requested an additional 2 weeks to review the document. A defer is designed to be an exception mechanism, and can only be invoked once, the first time the document comes up for discussion during a telechat.",
"name": "IESG Evaluation - Defer",
"next_states": [
12
],
"order": 21,
"slug": "defer",
"type": "draft-iesg",
"used": true
},
"model": "doc.state",
"pk": 18
},
{
"fields": {
"desc": "Before a standards-track or BCP document is formally considered by the entire IESG, the AD must write up a protocol action. The protocol action is included in the approval message that the Secretariat sends out when the document is approved for publication as an RFC.",
"name": "Waiting for Writeup",
"next_states": [
20
],
"order": 18,
"slug": "writeupw",
"type": "draft-iesg",
"used": true
},
"model": "doc.state",
"pk": 19
},
{
"fields": {
"desc": "As a result of the IETF Last Call, comments may need to be responded to and a revision of the ID may be needed as well. The AD is responsible for verifying that all Last Call comments have been adequately addressed and that the (possibly revised) document is in the ID directory and ready for consideration by the IESG as a whole.",
"name": "Waiting for AD Go-Ahead",
"next_states": [
12
],
"order": 19,
"slug": "goaheadw",
"type": "draft-iesg",
"used": true
},
"model": "doc.state",
"pk": 20
},
{
"fields": {
"desc": "An AD sometimes asks for an external review by an outside party as part of evaluating whether a document is ready for advancement. MIBs, for example, are reviewed by the \"MIB doctors\". Other types of reviews may also be requested (e.g., security, operations impact, etc.). Documents stay in this state until the review is complete and possibly until the issues raised in the review are addressed. See the \"note\" field for specific details on the nature of the review.",
"name": "Expert Review",
"next_states": [
13
],
"order": 12,
"slug": "review-e",
"type": "draft-iesg",
"used": true
},
"model": "doc.state",
"pk": 21
},
{
"fields": {
"desc": "Do Not Publish: The IESG recommends against publishing the document, but the writeup explaining its reasoning has not yet been produced. DNPs apply primarily to individual submissions received through the RFC editor. See the \"note\" field for more details on who has the action item.",
"name": "DNP-waiting for AD note",
"next_states": [
23
],
"order": 33,
"slug": "nopubadw",
"type": "draft-iesg",
"used": true
},
"model": "doc.state",
"pk": 22
},
{
"fields": {
"desc": "The IESG recommends against publishing the document, the writeup explaining its reasoning has been produced, but the Secretariat has not yet sent out the official \"do not publish\" recommendation message.",
"name": "DNP-announcement to be sent",
"next_states": [
8
],
"order": 34,
"slug": "nopubanw",
"type": "draft-iesg",
"used": true
},
"model": "doc.state",
"pk": 23
},
{
"fields": {
"desc": "Awaiting author action",
"name": "AUTH",
"next_states": [],
"order": 0,
"slug": "auth",
"type": "draft-rfceditor",
"used": true
},
"model": "doc.state",
"pk": 24
},
{
"fields": {
"desc": "Awaiting final author approval",
"name": "AUTH48",
"next_states": [],
"order": 0,
"slug": "auth48",
"type": "draft-rfceditor",
"used": true
},
"model": "doc.state",
"pk": 25
},
{
"fields": {
"desc": "Approved by the stream manager (e.g., IESG, IAB, IRSG, ISE), awaiting processing and publishing",
"name": "EDIT",
"next_states": [],
"order": 0,
"slug": "edit",
"type": "draft-rfceditor",
"used": false
},
"model": "doc.state",
"pk": 26
},
{
"fields": {
"desc": "Document has been edited, but is holding for completion of IANA actions",
"name": "IANA",
"next_states": [],
"order": 0,
"slug": "iana",
"type": "draft-rfceditor",
"used": true
},
"model": "doc.state",
"pk": 27
},
{
"fields": {
"desc": "Awaiting IESG action",
"name": "IESG",
"next_states": [],
"order": 0,
"slug": "iesg",
"type": "draft-rfceditor",
"used": false
},
"model": "doc.state",
"pk": 28
},
{
"fields": {
"desc": "Independent Submission Review by the ISE ",
"name": "ISR",
"next_states": [],
"order": 0,
"slug": "isr",
"type": "draft-rfceditor",
"used": true
},
"model": "doc.state",
"pk": 29
},
{
"fields": {
"desc": "Independent submission awaiting author action, or in discussion between author and ISE",
"name": "ISR-AUTH",
"next_states": [],
"order": 0,
"slug": "isr-auth",
"type": "draft-rfceditor",
"used": false
},
"model": "doc.state",
"pk": 30
},
{
"fields": {
"desc": "Holding for normative reference",
"name": "REF",
"next_states": [],
"order": 0,
"slug": "ref",
"type": "draft-rfceditor",
"used": true
},
"model": "doc.state",
"pk": 31
},
{
"fields": {
"desc": "Awaiting final RFC Editor review before AUTH48",
"name": "RFC-EDITOR",
"next_states": [],
"order": 0,
"slug": "rfc-edit",
"type": "draft-rfceditor",
"used": true
},
"model": "doc.state",
"pk": 32
},
{
"fields": {
"desc": "Time-out period during which the IESG reviews document for conflict/concurrence with other IETF working group work",
"name": "TO",
"next_states": [],
"order": 0,
"slug": "timeout",
"type": "draft-rfceditor",
"used": true
},
"model": "doc.state",
"pk": 33
},
{
"fields": {
"desc": "Awaiting missing normative reference",
"name": "MISSREF",
"next_states": [],
"order": 0,
"slug": "missref",
"type": "draft-rfceditor",
"used": true
},
"model": "doc.state",
"pk": 34
},
{
"fields": {
"desc": "A call for adoption of the individual submission document has been issued by the Working Group (WG) chairs. This call is still running but the WG has not yet reached consensus for adoption.",
"name": "Call For Adoption By WG Issued",
"next_states": [
36,
37
],
"order": 1,
"slug": "c-adopt",
"type": "draft-stream-ietf",
"used": true
},
"model": "doc.state",
"pk": 35
},
{
"fields": {
"desc": "The individual submission document has been adopted by the Working Group (WG), but a WG document replacing this document with the typical naming convention of 'draft- ietf-wgname-topic-nn' has not yet been submitted.",
"name": "Adopted by a WG",
"next_states": [
38
],
"order": 2,
"slug": "adopt-wg",
"type": "draft-stream-ietf",
"used": true
},
"model": "doc.state",
"pk": 36
},
{
"fields": {
"desc": "The document is adopted by the Working Group (WG) for its internal use. The WG has decided that it will not pursue publication of it as an RFC.",
"name": "Adopted for WG Info Only",
"next_states": [],
"order": 3,
"slug": "info",
"type": "draft-stream-ietf",
"used": true
},
"model": "doc.state",
"pk": 37
},
{
"fields": {
"desc": "The document has been adopted by the Working Group (WG) and is under development. A document can only be adopted by one WG at a time. However, a document may be transferred between WGs.",
"name": "WG Document",
"next_states": [
39,
40,
41,
43
],
"order": 4,
"slug": "wg-doc",
"type": "draft-stream-ietf",
"used": true
},
"model": "doc.state",
"pk": 38
},
{
"fields": {
"desc": "The Working Group (WG) document is in a temporary state where it will not be actively developed. The reason for the pause is explained via a datatracker comments section.",
"name": "Parked WG Document",
"next_states": [
38
],
"order": 5,
"slug": "parked",
"type": "draft-stream-ietf",
"used": true
},
"model": "doc.state",
"pk": 39
},
{
"fields": {
"desc": "The Working Group (WG) document has been abandoned by the WG. No further development is planned in this WG. A decision to resume work on this document and move it out of this state is possible.",
"name": "Dead WG Document",
"next_states": [
38
],
"order": 6,
"slug": "dead",
"type": "draft-stream-ietf",
"used": true
},
"model": "doc.state",
"pk": 40
},
{
"fields": {
"desc": "The Working Group (WG) document is currently subject to an active WG Last Call (WGLC) review per Section 7.4 of RFC2418.",
"name": "In WG Last Call",
"next_states": [
38,
42,
43
],
"order": 7,
"slug": "wg-lc",
"type": "draft-stream-ietf",
"used": true
},
"model": "doc.state",
"pk": 41
},
{
"fields": {
"desc": "The Working Group (WG) document has completed Working Group Last Call (WGLC), but the WG chair(s) are not yet ready to call consensus on the document. The reasons for this may include comments from the WGLC need to be responded to, or a revision to the document is needed",
"name": "Waiting for WG Chair Go-Ahead",
"next_states": [
41,
43
],
"order": 10,
"slug": "chair-w",
"type": "draft-stream-ietf",
"used": true
},
"model": "doc.state",
"pk": 42
},
{
"fields": {
"desc": "The Working Group (WG) document has consensus to proceed to publication. However, the document is waiting for a document shepherd write-up per RFC4858.",
"name": "WG Consensus: Waiting for Write-Up",
"next_states": [
44
],
"order": 11,
"slug": "writeupw",
"type": "draft-stream-ietf",
"used": true
},
"model": "doc.state",
"pk": 43
},
{
"fields": {
"desc": "The Working Group (WG) document has left the WG and been submitted to the Internet Engineering Steering Group (IESG) for evaluation and publication. See the “IESG State” or “RFC Editor State” for further details on the state of the document.",
"name": "Submitted to IESG for Publication",
"next_states": [
38
],
"order": 12,
"slug": "sub-pub",
"type": "draft-stream-ietf",
"used": true
},
"model": "doc.state",
"pk": 44
},
{
"fields": {
"desc": "A document being considered for the IAB stream.",
"name": "Candidate IAB Document",
"next_states": [],
"order": 1,
"slug": "candidat",
"type": "draft-stream-iab",
"used": true
},
"model": "doc.state",
"pk": 45
},
{
"fields": {
"desc": "This document has been adopted by the IAB and is being actively developed.",
"name": "Active IAB Document",
"next_states": [],
"order": 2,
"slug": "active",
"type": "draft-stream-iab",
"used": true
},
"model": "doc.state",
"pk": 46
},
{
"fields": {
"desc": "This document has lost its author or editor, is waiting for another document to be written, or cannot currently be worked on by the IAB for some other reason. Annotations probably explain why this document is parked.",
"name": "Parked IAB Document",
"next_states": [],
"order": 3,
"slug": "parked",
"type": "draft-stream-iab",
"used": true
},
"model": "doc.state",
"pk": 47
},
{
"fields": {
"desc": "The document has completed community review and is now being formally reviewed by the entire IAB in order to make a decision about whether it is ready to be published as an IAB-stream RFC.",
"name": "IAB Review",
"next_states": [],
"order": 5,
"slug": "review-i",
"type": "draft-stream-iab",
"used": true
},
"model": "doc.state",
"pk": 48
},
{
"fields": {
"desc": "This document has completed internal consensus within the IAB and is now under community review.",
"name": "Community Review",
"next_states": [],
"order": 4,
"slug": "review-c",
"type": "draft-stream-iab",
"used": true
},
"model": "doc.state",
"pk": 49
},
{
"fields": {
"desc": "The consideration of this document is complete, but it has not yet been sent to the RFC Editor for publication (although that is going to happen soon).",
"name": "Approved by IAB, To Be Sent to RFC Editor",
"next_states": [],
"order": 6,
"slug": "approved",
"type": "draft-stream-iab",
"used": true
},
"model": "doc.state",
"pk": 50
},
{
"fields": {
"desc": "The IAB does not expect to publish the document itself, but has passed it on to a different organization that might continue work on the document. The expectation is that the other organization will eventually publish the document.",
"name": "Sent to a Different Organization for Publication",
"next_states": [],
"order": 7,
"slug": "diff-org",
"type": "draft-stream-iab",
"used": true
},
"model": "doc.state",
"pk": 51
},
{
"fields": {
"desc": "The IAB processing of this document is complete and it has been sent to the RFC Editor for publication. The document may be in the RFC Editor's queue, or it may have been published as an RFC; this state doesn't distinguish between different states occurring after the document has left the IAB.",
"name": "Sent to the RFC Editor",
"next_states": [],
"order": 8,
"slug": "rfc-edit",
"type": "draft-stream-iab",
"used": true
},
"model": "doc.state",
"pk": 52
},
{
"fields": {
"desc": "The document has been published as an RFC.",
"name": "Published RFC",
"next_states": [],
"order": 9,
"slug": "pub",
"type": "draft-stream-iab",
"used": true
},
"model": "doc.state",
"pk": 53
},
{
"fields": {
"desc": "This document was an active IAB document, but for some reason it is no longer being pursued for the IAB stream. It is possible that the document might be revived later, possibly in another stream.",
"name": "Dead IAB Document",
"next_states": [],
"order": 10,
"slug": "dead",
"type": "draft-stream-iab",
"used": true
},
"model": "doc.state",
"pk": 54
},
{
"fields": {
"desc": "This document is under consideration in an RG for becoming an IRTF document. A document in this state does not imply any RG consensus and does not imply any precedence or selection. It's simply a way to indicate that somebody has asked for a document to be considered for adoption by an RG.",
"name": "Candidate RG Document",
"next_states": [],
"order": 1,
"slug": "candidat",
"type": "draft-stream-irtf",
"used": true
},
"model": "doc.state",
"pk": 55
},
{
"fields": {
"desc": "This document has been adopted by the RG and is being actively developed.",
"name": "Active RG Document",
"next_states": [],
"order": 2,
"slug": "active",
"type": "draft-stream-irtf",
"used": true
},
"model": "doc.state",
"pk": 56
},
{
"fields": {
"desc": "This document has lost its author or editor, is waiting for another document to be written, or cannot currently be worked on by the RG for some other reason.",
"name": "Parked RG Document",
"next_states": [],
"order": 3,
"slug": "parked",
"type": "draft-stream-irtf",
"used": true
},
"model": "doc.state",
"pk": 57
},
{
"fields": {
"desc": "The document is in its final review in the RG.",
"name": "In RG Last Call",
"next_states": [],
"order": 4,
"slug": "rg-lc",
"type": "draft-stream-irtf",
"used": true
},
"model": "doc.state",
"pk": 58
},
{
"fields": {
"desc": "IRTF documents have document shepherds who help RG documents through the process after the RG has finished with the document.",
"name": "Waiting for Document Shepherd",
"next_states": [],
"order": 5,
"slug": "sheph-w",
"type": "draft-stream-irtf",
"used": true
},
"model": "doc.state",
"pk": 59
},