forked from tobie/specref
-
Notifications
You must be signed in to change notification settings - Fork 0
/
scte.json
2600 lines (2600 loc) · 178 KB
/
scte.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
{
"scte01": {
"href": "https://scte-cms-resource-storage.s3.amazonaws.com/SCTE-01-2021-1618396377026.pdf",
"title": "SCTE 01 2021: Specification for \"F\" Port, Female, Outdoor",
"publisher": "SCTE",
"source": "https://dashifspecref.blob.core.windows.net/scte/scte.json?st=2019-04-01T00%3A00%3A00Z&se=2039-04-01T00%3A00%3A00Z&sp=rl&sv=2018-03-28&sr=b&sig=eIrXcpSm6WkcgRNBgNKlyMnIUGWLwgTurzYy8K2WApI%3D"
},
"scte02": {
"href": "https://scte-cms-resource-storage.s3.amazonaws.com/SCTE-02-2021-1618396460579.pdf",
"title": "SCTE 02 2021: Specification for \"F\" Port, Female, Indoor",
"publisher": "SCTE",
"source": "https://dashifspecref.blob.core.windows.net/scte/scte.json?st=2019-04-01T00%3A00%3A00Z&se=2039-04-01T00%3A00%3A00Z&sp=rl&sv=2018-03-28&sr=b&sig=eIrXcpSm6WkcgRNBgNKlyMnIUGWLwgTurzYy8K2WApI%3D"
},
"scte03": {
"href": "https://scte-cms-resource-storage.s3.amazonaws.com/Standards/ANSI_SCTE%2003%202016.pdf",
"title": "ANSI/SCTE 03 2016: Test Method for Coaxial Cable Structural Return Loss",
"publisher": "SCTE",
"source": "https://dashifspecref.blob.core.windows.net/scte/scte.json?st=2019-04-01T00%3A00%3A00Z&se=2039-04-01T00%3A00%3A00Z&sp=rl&sv=2018-03-28&sr=b&sig=eIrXcpSm6WkcgRNBgNKlyMnIUGWLwgTurzYy8K2WApI%3D"
},
"scte04": {
"href": "https://scte-cms-resource-storage.s3.amazonaws.com/ANSI_SCTE-04-2014-1575400156784.pdf",
"title": "ANSI/SCTE 04 2014: Test Method for \"F\" Connector Return Loss",
"publisher": "SCTE",
"source": "https://dashifspecref.blob.core.windows.net/scte/scte.json?st=2019-04-01T00%3A00%3A00Z&se=2039-04-01T00%3A00%3A00Z&sp=rl&sv=2018-03-28&sr=b&sig=eIrXcpSm6WkcgRNBgNKlyMnIUGWLwgTurzYy8K2WApI%3D"
},
"scte05": {
"href": "https://scte-cms-resource-storage.s3.amazonaws.com/ANSI_SCTE-05-2014-1575400255767.pdf",
"title": "ANSI/SCTE 05 2014: Test Method for \"F\" Connector Return Loss In-Line Pair",
"publisher": "SCTE",
"source": "https://dashifspecref.blob.core.windows.net/scte/scte.json?st=2019-04-01T00%3A00%3A00Z&se=2039-04-01T00%3A00%3A00Z&sp=rl&sv=2018-03-28&sr=b&sig=eIrXcpSm6WkcgRNBgNKlyMnIUGWLwgTurzYy8K2WApI%3D"
},
"scte06": {
"href": "https://scte-cms-resource-storage.s3.amazonaws.com/ANSI_SCTE-06-2019-1575400317536.pdf",
"title": "ANSI/SCTE 06 2019: Composite Distortion Measurements (CSO & CTB)",
"publisher": "SCTE",
"source": "https://dashifspecref.blob.core.windows.net/scte/scte.json?st=2019-04-01T00%3A00%3A00Z&se=2039-04-01T00%3A00%3A00Z&sp=rl&sv=2018-03-28&sr=b&sig=eIrXcpSm6WkcgRNBgNKlyMnIUGWLwgTurzYy8K2WApI%3D"
},
"scte07": {
"href": "https://scte-cms-resource-storage.s3.amazonaws.com/Standards/ANSI_SCTE%2007%202018.pdf",
"title": "ANSI/SCTE 07 2018: Digital Transmission Standard For Cable Television",
"publisher": "SCTE",
"source": "https://dashifspecref.blob.core.windows.net/scte/scte.json?st=2019-04-01T00%3A00%3A00Z&se=2039-04-01T00%3A00%3A00Z&sp=rl&sv=2018-03-28&sr=b&sig=eIrXcpSm6WkcgRNBgNKlyMnIUGWLwgTurzYy8K2WApI%3D"
},
"scte09": {
"href": "https://scte-cms-resource-storage.s3.amazonaws.com/Standards/ANSI_SCTE%2009%202016.pdf",
"title": "ANSI/SCTE 09 2016: Test Method for Cold Bend",
"publisher": "SCTE",
"source": "https://dashifspecref.blob.core.windows.net/scte/scte.json?st=2019-04-01T00%3A00%3A00Z&se=2039-04-01T00%3A00%3A00Z&sp=rl&sv=2018-03-28&sr=b&sig=eIrXcpSm6WkcgRNBgNKlyMnIUGWLwgTurzYy8K2WApI%3D"
},
"scte10": {
"href": "https://scte-cms-resource-storage.s3.amazonaws.com/ANSI_SCTE-10-2014-1575400537863.pdf",
"title": "ANSI/SCTE 10 2014: Test Method for Flexible Coaxial Cable Impact",
"publisher": "SCTE",
"source": "https://dashifspecref.blob.core.windows.net/scte/scte.json?st=2019-04-01T00%3A00%3A00Z&se=2039-04-01T00%3A00%3A00Z&sp=rl&sv=2018-03-28&sr=b&sig=eIrXcpSm6WkcgRNBgNKlyMnIUGWLwgTurzYy8K2WApI%3D"
},
"scte101": {
"href": "https://scte-cms-resource-storage.s3.amazonaws.com/ANSI_SCTE-101-2019-1586879062302.pdf",
"title": "ANSI/SCTE 101 2019: Hard Line Splice Connector Return Loss",
"publisher": "SCTE",
"source": "https://dashifspecref.blob.core.windows.net/scte/scte.json?st=2019-04-01T00%3A00%3A00Z&se=2039-04-01T00%3A00%3A00Z&sp=rl&sv=2018-03-28&sr=b&sig=eIrXcpSm6WkcgRNBgNKlyMnIUGWLwgTurzYy8K2WApI%3D"
},
"scte102": {
"href": "https://scte-cms-resource-storage.s3.amazonaws.com/Standards/ANSI_SCTE%20102%202016.pdf",
"title": "ANSI/SCTE 102 2016: Cable Retention Force Testing of Trunk & Distribution Connectors",
"publisher": "SCTE",
"source": "https://dashifspecref.blob.core.windows.net/scte/scte.json?st=2019-04-01T00%3A00%3A00Z&se=2039-04-01T00%3A00%3A00Z&sp=rl&sv=2018-03-28&sr=b&sig=eIrXcpSm6WkcgRNBgNKlyMnIUGWLwgTurzYy8K2WApI%3D"
},
"scte103": {
"href": "https://scte-cms-resource-storage.s3.amazonaws.com/Standards/ANSI_SCTE%20103%202018.pdf",
"title": "ANSI/SCTE 103 2018: Test Method for DC Contact Resistance, Drop cable to \"F\" connectors and F 81 Barrels",
"publisher": "SCTE",
"source": "https://dashifspecref.blob.core.windows.net/scte/scte.json?st=2019-04-01T00%3A00%3A00Z&se=2039-04-01T00%3A00%3A00Z&sp=rl&sv=2018-03-28&sr=b&sig=eIrXcpSm6WkcgRNBgNKlyMnIUGWLwgTurzYy8K2WApI%3D"
},
"scte104": {
"href": "https://scte-cms-resource-storage.s3.amazonaws.com/ANSI_SCTE-104-2019a-1582645426999.pdf",
"title": "ANSI/SCTE 104 2019a: Automation System to Compression System Communications Applications Program Interface (API)",
"publisher": "SCTE",
"source": "https://dashifspecref.blob.core.windows.net/scte/scte.json?st=2019-04-01T00%3A00%3A00Z&se=2039-04-01T00%3A00%3A00Z&sp=rl&sv=2018-03-28&sr=b&sig=eIrXcpSm6WkcgRNBgNKlyMnIUGWLwgTurzYy8K2WApI%3D"
},
"scte106": {
"href": "https://scte-cms-resource-storage.s3.amazonaws.com/Standards/ANSI_SCTE%20106%202018.pdf",
"title": "ANSI/SCTE 106 2018: DOCSIS® Set-Top Gateway (DSG) Specification",
"publisher": "SCTE",
"source": "https://dashifspecref.blob.core.windows.net/scte/scte.json?st=2019-04-01T00%3A00%3A00Z&se=2039-04-01T00%3A00%3A00Z&sp=rl&sv=2018-03-28&sr=b&sig=eIrXcpSm6WkcgRNBgNKlyMnIUGWLwgTurzYy8K2WApI%3D"
},
"scte107": {
"href": "https://scte-cms-resource-storage.s3.amazonaws.com/Standards/ANSI_SCTE%20107%202017.pdf",
"title": "ANSI/SCTE 107 2017: Embedded Cable Modem Devices",
"publisher": "SCTE",
"source": "https://dashifspecref.blob.core.windows.net/scte/scte.json?st=2019-04-01T00%3A00%3A00Z&se=2039-04-01T00%3A00%3A00Z&sp=rl&sv=2018-03-28&sr=b&sig=eIrXcpSm6WkcgRNBgNKlyMnIUGWLwgTurzYy8K2WApI%3D"
},
"scte108": {
"href": "https://scte-cms-resource-storage.s3.amazonaws.com/Standards/ANSI_SCTE%20108%202018%20.pdf",
"title": "ANSI/SCTE 108 2018: Test Method for Dielectric Withstand of Coaxial Cable",
"publisher": "SCTE",
"source": "https://dashifspecref.blob.core.windows.net/scte/scte.json?st=2019-04-01T00%3A00%3A00Z&se=2039-04-01T00%3A00%3A00Z&sp=rl&sv=2018-03-28&sr=b&sig=eIrXcpSm6WkcgRNBgNKlyMnIUGWLwgTurzYy8K2WApI%3D"
},
"scte109": {
"href": "https://scte-cms-resource-storage.s3.amazonaws.com/ANSI_SCTE-109-2019-1578342540208.pdf",
"title": "ANSI/SCTE 109 2019: Test Procedure for Common Path Distortion (CPD)",
"publisher": "SCTE",
"source": "https://dashifspecref.blob.core.windows.net/scte/scte.json?st=2019-04-01T00%3A00%3A00Z&se=2039-04-01T00%3A00%3A00Z&sp=rl&sv=2018-03-28&sr=b&sig=eIrXcpSm6WkcgRNBgNKlyMnIUGWLwgTurzYy8K2WApI%3D"
},
"scte11": {
"href": "https://scte-cms-resource-storage.s3.amazonaws.com/Standards/ANSI_SCTE%2011%202018.pdf",
"title": "ANSI/SCTE 11 2018: Test Method for Aerial Cable Corrosion Protection Flow",
"publisher": "SCTE",
"source": "https://dashifspecref.blob.core.windows.net/scte/scte.json?st=2019-04-01T00%3A00%3A00Z&se=2039-04-01T00%3A00%3A00Z&sp=rl&sv=2018-03-28&sr=b&sig=eIrXcpSm6WkcgRNBgNKlyMnIUGWLwgTurzYy8K2WApI%3D"
},
"scte110": {
"href": "https://scte-cms-resource-storage.s3.amazonaws.com/ANSI_SCTE-110-2020-1598229518954.pdf",
"title": "ANSI/SCTE 110 2020: Hybrid Fiber Coax Outside Plant Status Monitoring: Alternative Power Supply to Transponder Interface Bus (PSTIB) For HMS Transponders",
"publisher": "SCTE",
"source": "https://dashifspecref.blob.core.windows.net/scte/scte.json?st=2019-04-01T00%3A00%3A00Z&se=2039-04-01T00%3A00%3A00Z&sp=rl&sv=2018-03-28&sr=b&sig=eIrXcpSm6WkcgRNBgNKlyMnIUGWLwgTurzYy8K2WApI%3D"
},
"scte111": {
"href": "https://scte-cms-resource-storage.s3.amazonaws.com/Standards/ANSI_SCTE%20111%202017.pdf",
"title": "ANSI/SCTE 111 2017: Specification for 5/8-24 Plug, Male Adapters",
"publisher": "SCTE",
"source": "https://dashifspecref.blob.core.windows.net/scte/scte.json?st=2019-04-01T00%3A00%3A00Z&se=2039-04-01T00%3A00%3A00Z&sp=rl&sv=2018-03-28&sr=b&sig=eIrXcpSm6WkcgRNBgNKlyMnIUGWLwgTurzYy8K2WApI%3D"
},
"scte112": {
"href": "https://scte-cms-resource-storage.s3.amazonaws.com/Standards/ANSI_SCTE%20112%202017.pdf",
"title": "ANSI/SCTE 112 2017: HMS / DOCSIS® Transponder for Outside Plant Power Supply",
"publisher": "SCTE",
"source": "https://dashifspecref.blob.core.windows.net/scte/scte.json?st=2019-04-01T00%3A00%3A00Z&se=2039-04-01T00%3A00%3A00Z&sp=rl&sv=2018-03-28&sr=b&sig=eIrXcpSm6WkcgRNBgNKlyMnIUGWLwgTurzYy8K2WApI%3D"
},
"scte113": {
"href": "https://scte-cms-resource-storage.s3.amazonaws.com/Standards/ANSI_SCTE%20113%202017.pdf",
"title": "ANSI/SCTE 113 2017: HMS Digital Transport Management Information Base SCTE-HMS-HE-DIG-TRANSPORT-MIB",
"publisher": "SCTE",
"source": "https://dashifspecref.blob.core.windows.net/scte/scte.json?st=2019-04-01T00%3A00%3A00Z&se=2039-04-01T00%3A00%3A00Z&sp=rl&sv=2018-03-28&sr=b&sig=eIrXcpSm6WkcgRNBgNKlyMnIUGWLwgTurzYy8K2WApI%3D"
},
"scte115": {
"href": "https://scte-cms-resource-storage.s3.amazonaws.com/ANSI_SCTE-115-2019-1575483310335.pdf",
"title": "ANSI/SCTE 115 2019: Test Method for Reverse Path (Upstream) Intermodulation Using Two Carriers",
"publisher": "SCTE",
"source": "https://dashifspecref.blob.core.windows.net/scte/scte.json?st=2019-04-01T00%3A00%3A00Z&se=2039-04-01T00%3A00%3A00Z&sp=rl&sv=2018-03-28&sr=b&sig=eIrXcpSm6WkcgRNBgNKlyMnIUGWLwgTurzYy8K2WApI%3D"
},
"scte116": {
"href": "https://scte-cms-resource-storage.s3.amazonaws.com/Standards/ANSI_SCTE%20116%202018.pdf",
"title": "ANSI/SCTE 116 2018: Specification for 5/8-24 Port, Female Adapters",
"publisher": "SCTE",
"source": "https://dashifspecref.blob.core.windows.net/scte/scte.json?st=2019-04-01T00%3A00%3A00Z&se=2039-04-01T00%3A00%3A00Z&sp=rl&sv=2018-03-28&sr=b&sig=eIrXcpSm6WkcgRNBgNKlyMnIUGWLwgTurzYy8K2WApI%3D"
},
"scte117": {
"href": "https://scte-cms-resource-storage.s3.amazonaws.com/Standards/ANSI_SCTE%20117%202018.pdf",
"title": "ANSI/SCTE 117 2018: Specification for Braided 75 Ω, Mini-Series Quad Shield Coaxial Cable for CMTS and SDI cables",
"publisher": "SCTE",
"source": "https://dashifspecref.blob.core.windows.net/scte/scte.json?st=2019-04-01T00%3A00%3A00Z&se=2039-04-01T00%3A00%3A00Z&sp=rl&sv=2018-03-28&sr=b&sig=eIrXcpSm6WkcgRNBgNKlyMnIUGWLwgTurzYy8K2WApI%3D"
},
"scte118-01": {
"aliasOf": "scte118-1"
},
"scte118-02": {
"aliasOf": "scte118-2"
},
"scte118-03": {
"aliasOf": "scte118-3"
},
"scte118-1": {
"href": "https://scte-cms-resource-storage.s3.amazonaws.com/ANSI_SCTE-118-1-2019-1575483355361.pdf",
"title": "ANSI/SCTE 118-1 2019: Program-Specific Ad Insertion - Data Field Definitions,Functional Overview and Application Guidelines",
"publisher": "SCTE",
"source": "https://dashifspecref.blob.core.windows.net/scte/scte.json?st=2019-04-01T00%3A00%3A00Z&se=2039-04-01T00%3A00%3A00Z&sp=rl&sv=2018-03-28&sr=b&sig=eIrXcpSm6WkcgRNBgNKlyMnIUGWLwgTurzYy8K2WApI%3D"
},
"scte118-2": {
"href": "https://scte-cms-resource-storage.s3.amazonaws.com/ANSI_SCTE-118-2-2019-1575483411755.pdf",
"title": "ANSI/SCTE 118-2 2019: Program-Specific Ad Insertion - Content Provider to Traffic Communication Applications Data Model",
"publisher": "SCTE",
"source": "https://dashifspecref.blob.core.windows.net/scte/scte.json?st=2019-04-01T00%3A00%3A00Z&se=2039-04-01T00%3A00%3A00Z&sp=rl&sv=2018-03-28&sr=b&sig=eIrXcpSm6WkcgRNBgNKlyMnIUGWLwgTurzYy8K2WApI%3D"
},
"scte118-3": {
"href": "https://scte-cms-resource-storage.s3.amazonaws.com/ANSI_SCTE-118-3-2019-with-errata-notice-1601489661666.pdf",
"title": "ANSI/SCTE 118-3 2019: Program-Specific Ad Insertion - Traffic System to Ad Insertion System File Format Specification",
"publisher": "SCTE",
"source": "https://dashifspecref.blob.core.windows.net/scte/scte.json?st=2019-04-01T00%3A00%3A00Z&se=2039-04-01T00%3A00%3A00Z&sp=rl&sv=2018-03-28&sr=b&sig=eIrXcpSm6WkcgRNBgNKlyMnIUGWLwgTurzYy8K2WApI%3D"
},
"scte119": {
"href": "https://scte-cms-resource-storage.s3.amazonaws.com/Standards/ANSI_SCTE%20119%202018.pdf",
"title": "ANSI/SCTE 119 2018: Measurement Procedure for Noise Power Ratio",
"publisher": "SCTE",
"source": "https://dashifspecref.blob.core.windows.net/scte/scte.json?st=2019-04-01T00%3A00%3A00Z&se=2039-04-01T00%3A00%3A00Z&sp=rl&sv=2018-03-28&sr=b&sig=eIrXcpSm6WkcgRNBgNKlyMnIUGWLwgTurzYy8K2WApI%3D"
},
"scte12": {
"href": "https://scte-cms-resource-storage.s3.amazonaws.com/Standards/ANSI_SCTE%2012%202018.pdf",
"title": "ANSI/SCTE 12 2018: Test Method for Center Conductor Bond to Dielectric for Trunk, Feeder and Distribution Coaxial Cables",
"publisher": "SCTE",
"source": "https://dashifspecref.blob.core.windows.net/scte/scte.json?st=2019-04-01T00%3A00%3A00Z&se=2039-04-01T00%3A00%3A00Z&sp=rl&sv=2018-03-28&sr=b&sig=eIrXcpSm6WkcgRNBgNKlyMnIUGWLwgTurzYy8K2WApI%3D"
},
"scte121": {
"href": "https://scte-cms-resource-storage.s3.amazonaws.com/Standards/ANSI_SCTE%20121%202018.pdf",
"title": "ANSI/SCTE 121 2018: Test Method for Downstream Bit Error Ratio",
"publisher": "SCTE",
"source": "https://dashifspecref.blob.core.windows.net/scte/scte.json?st=2019-04-01T00%3A00%3A00Z&se=2039-04-01T00%3A00%3A00Z&sp=rl&sv=2018-03-28&sr=b&sig=eIrXcpSm6WkcgRNBgNKlyMnIUGWLwgTurzYy8K2WApI%3D"
},
"scte122": {
"href": "https://scte-cms-resource-storage.s3.amazonaws.com/ANSI_SCTE-122-2012-1576857951665.pdf",
"title": "ANSI/SCTE 122 2012: SCTE Recommended Optical Fiber Cable Types for Outside Plant Drop Applications",
"publisher": "SCTE",
"source": "https://dashifspecref.blob.core.windows.net/scte/scte.json?st=2019-04-01T00%3A00%3A00Z&se=2039-04-01T00%3A00%3A00Z&sp=rl&sv=2018-03-28&sr=b&sig=eIrXcpSm6WkcgRNBgNKlyMnIUGWLwgTurzYy8K2WApI%3D"
},
"scte123": {
"href": "https://scte-cms-resource-storage.s3.amazonaws.com/ANSI_SCTE-123-2021-1623977795154.pdf",
"title": "ANSI/SCTE 123 2021: Specification for \"F\" Connector, Male, Feed-Through",
"publisher": "SCTE",
"source": "https://dashifspecref.blob.core.windows.net/scte/scte.json?st=2019-04-01T00%3A00%3A00Z&se=2039-04-01T00%3A00%3A00Z&sp=rl&sv=2018-03-28&sr=b&sig=eIrXcpSm6WkcgRNBgNKlyMnIUGWLwgTurzYy8K2WApI%3D"
},
"scte124": {
"href": "https://scte-cms-resource-storage.s3.amazonaws.com/ANSI_SCTE-124-2021-1623977894990.pdf",
"title": "ANSI/SCTE 124 2021: Specification for \"F\" Connector, Male, Pin Type",
"publisher": "SCTE",
"source": "https://dashifspecref.blob.core.windows.net/scte/scte.json?st=2019-04-01T00%3A00%3A00Z&se=2039-04-01T00%3A00%3A00Z&sp=rl&sv=2018-03-28&sr=b&sig=eIrXcpSm6WkcgRNBgNKlyMnIUGWLwgTurzYy8K2WApI%3D"
},
"scte125": {
"href": "https://scte-cms-resource-storage.s3.amazonaws.com/Standards/ANSI_SCTE%20125%202018.pdf",
"title": "ANSI/SCTE 125 2018: Hard Line PIN (plug) Connector Return Loss",
"publisher": "SCTE",
"source": "https://dashifspecref.blob.core.windows.net/scte/scte.json?st=2019-04-01T00%3A00%3A00Z&se=2039-04-01T00%3A00%3A00Z&sp=rl&sv=2018-03-28&sr=b&sig=eIrXcpSm6WkcgRNBgNKlyMnIUGWLwgTurzYy8K2WApI%3D"
},
"scte126": {
"href": "https://scte-cms-resource-storage.s3.amazonaws.com/ANSI_SCTE%20126%202019.pdf",
"title": "ANSI/SCTE 126 2019: Test Method for Distortion of 2-way Amplifiers Caused by Insufficient Isolation of Built in Diplex Filter",
"publisher": "SCTE",
"source": "https://dashifspecref.blob.core.windows.net/scte/scte.json?st=2019-04-01T00%3A00%3A00Z&se=2039-04-01T00%3A00%3A00Z&sp=rl&sv=2018-03-28&sr=b&sig=eIrXcpSm6WkcgRNBgNKlyMnIUGWLwgTurzYy8K2WApI%3D"
},
"scte127": {
"href": "https://scte-cms-resource-storage.s3.amazonaws.com/SCTE-127-2019-1577989718554.pdf",
"title": "SCTE 127 2019: Carriage of Vertical Blanking Interval (VBI) Data in North American Digital Television Bitstreams",
"publisher": "SCTE",
"source": "https://dashifspecref.blob.core.windows.net/scte/scte.json?st=2019-04-01T00%3A00%3A00Z&se=2039-04-01T00%3A00%3A00Z&sp=rl&sv=2018-03-28&sr=b&sig=eIrXcpSm6WkcgRNBgNKlyMnIUGWLwgTurzYy8K2WApI%3D"
},
"scte128-01": {
"aliasOf": "scte128-1"
},
"scte128-02": {
"aliasOf": "scte128-2"
},
"scte128-1": {
"href": "https://scte-cms-resource-storage.s3.amazonaws.com/ANSI_SCTE-128-1-2020-1586877225672.pdf",
"title": "ANSI/SCTE 128-1 2020: AVC Video Constraints for Cable Television Part 1: Coding",
"publisher": "SCTE",
"source": "https://dashifspecref.blob.core.windows.net/scte/scte.json?st=2019-04-01T00%3A00%3A00Z&se=2039-04-01T00%3A00%3A00Z&sp=rl&sv=2018-03-28&sr=b&sig=eIrXcpSm6WkcgRNBgNKlyMnIUGWLwgTurzYy8K2WApI%3D"
},
"scte128-2": {
"href": "https://scte-cms-resource-storage.s3.amazonaws.com/Standards/ANSI_SCTE%20128-2%202018.pdf",
"title": "ANSI/SCTE 128-2 2018: AVC Video Constraints for Cable Television Part 2: Transport",
"publisher": "SCTE",
"source": "https://dashifspecref.blob.core.windows.net/scte/scte.json?st=2019-04-01T00%3A00%3A00Z&se=2039-04-01T00%3A00%3A00Z&sp=rl&sv=2018-03-28&sr=b&sig=eIrXcpSm6WkcgRNBgNKlyMnIUGWLwgTurzYy8K2WApI%3D"
},
"scte129": {
"href": "https://scte-cms-resource-storage.s3.amazonaws.com/SCTE-129-2021-1618396555870.pdf",
"title": "SCTE 129 2021: Drop Passives: Bonding Blocks (Without Surge Protection)",
"publisher": "SCTE",
"source": "https://dashifspecref.blob.core.windows.net/scte/scte.json?st=2019-04-01T00%3A00%3A00Z&se=2039-04-01T00%3A00%3A00Z&sp=rl&sv=2018-03-28&sr=b&sig=eIrXcpSm6WkcgRNBgNKlyMnIUGWLwgTurzYy8K2WApI%3D"
},
"scte13": {
"href": "https://scte-cms-resource-storage.s3.amazonaws.com/Standards/ANSI_SCTE%2013%202018.pdf",
"title": "ANSI/SCTE 13 2018: Dielectric Air Leakage Test Method For Trunk, Feeder and Distribution Coaxial Cable",
"publisher": "SCTE",
"source": "https://dashifspecref.blob.core.windows.net/scte/scte.json?st=2019-04-01T00%3A00%3A00Z&se=2039-04-01T00%3A00%3A00Z&sp=rl&sv=2018-03-28&sr=b&sig=eIrXcpSm6WkcgRNBgNKlyMnIUGWLwgTurzYy8K2WApI%3D"
},
"scte130-01": {
"aliasOf": "scte130-1"
},
"scte130-02": {
"aliasOf": "scte130-2"
},
"scte130-03": {
"aliasOf": "scte130-3"
},
"scte130-04": {
"aliasOf": "scte130-4"
},
"scte130-05": {
"aliasOf": "scte130-5"
},
"scte130-06": {
"aliasOf": "scte130-6"
},
"scte130-07": {
"aliasOf": "scte130-7"
},
"scte130-08": {
"aliasOf": "scte130-8"
},
"scte130-09": {
"aliasOf": "scte130-9"
},
"scte130-1": {
"href": "https://scte-cms-resource-storage.s3.amazonaws.com/ANSI_SCTE-130-1-2020-1599417300066.pdf",
"title": "ANSI/SCTE 130-1 2020: Digital Program Insertion – Advertising Systems Interfaces Part 1: Advertising Systems Overview",
"publisher": "SCTE",
"source": "https://dashifspecref.blob.core.windows.net/scte/scte.json?st=2019-04-01T00%3A00%3A00Z&se=2039-04-01T00%3A00%3A00Z&sp=rl&sv=2018-03-28&sr=b&sig=eIrXcpSm6WkcgRNBgNKlyMnIUGWLwgTurzYy8K2WApI%3D"
},
"scte130-10": {
"href": "https://scte-cms-resource-storage.s3.amazonaws.com/ANSI_SCTE-130-10-2020-with-errata-notice-1601490169675.pdf",
"title": "ANSI/SCTE 130-10 2020: Digital Program Insertion – Advertising Systems Interfaces Part 10: Stream Restriction Data Model (SRDM)",
"publisher": "SCTE",
"source": "https://dashifspecref.blob.core.windows.net/scte/scte.json?st=2019-04-01T00%3A00%3A00Z&se=2039-04-01T00%3A00%3A00Z&sp=rl&sv=2018-03-28&sr=b&sig=eIrXcpSm6WkcgRNBgNKlyMnIUGWLwgTurzYy8K2WApI%3D"
},
"scte130-2": {
"href": "https://scte-cms-resource-storage.s3.amazonaws.com/ANSI_SCTE-130-2-2020-1614882972972.pdf",
"title": "ANSI/SCTE 130-2 2020: Digital Program Insertion - Advertising Systems Interfaces Part 2: Core Messaging and Data Types",
"publisher": "SCTE",
"source": "https://dashifspecref.blob.core.windows.net/scte/scte.json?st=2019-04-01T00%3A00%3A00Z&se=2039-04-01T00%3A00%3A00Z&sp=rl&sv=2018-03-28&sr=b&sig=eIrXcpSm6WkcgRNBgNKlyMnIUGWLwgTurzYy8K2WApI%3D"
},
"scte130-3": {
"href": "https://scte-cms-resource-storage.s3.amazonaws.com/ANSI_SCTE-130-3-2020-1614883394818.pdf",
"title": "ANSI/SCTE 130-3 2020: Digital Program Insertion - Advertising Systems Interfaces Part 3: Ad Management Service (AM) and Ad Decision Service (ADS)",
"publisher": "SCTE",
"source": "https://dashifspecref.blob.core.windows.net/scte/scte.json?st=2019-04-01T00%3A00%3A00Z&se=2039-04-01T00%3A00%3A00Z&sp=rl&sv=2018-03-28&sr=b&sig=eIrXcpSm6WkcgRNBgNKlyMnIUGWLwgTurzYy8K2WApI%3D"
},
"scte130-4": {
"href": "https://scte-cms-resource-storage.s3.amazonaws.com/ANSI_SCTE-130-04-2020-with-errata-notice-1605187505995.pdf",
"title": "ANSI/SCTE 130-4 2020: Digital Program Insertion–Advertising Systems Interfaces Part 4 Content Information Service (CIS)",
"publisher": "SCTE",
"source": "https://dashifspecref.blob.core.windows.net/scte/scte.json?st=2019-04-01T00%3A00%3A00Z&se=2039-04-01T00%3A00%3A00Z&sp=rl&sv=2018-03-28&sr=b&sig=eIrXcpSm6WkcgRNBgNKlyMnIUGWLwgTurzYy8K2WApI%3D"
},
"scte130-5": {
"href": "https://scte-cms-resource-storage.s3.amazonaws.com/ANSI_SCTE-130-05-2020-with-errata-notice-1605187504536.pdf",
"title": "ANSI/SCTE 130-5 2020: Digital Program Insertion-Advertising Systems Interfaces Part 5-Placement Opportunity Information Service",
"publisher": "SCTE",
"source": "https://dashifspecref.blob.core.windows.net/scte/scte.json?st=2019-04-01T00%3A00%3A00Z&se=2039-04-01T00%3A00%3A00Z&sp=rl&sv=2018-03-28&sr=b&sig=eIrXcpSm6WkcgRNBgNKlyMnIUGWLwgTurzYy8K2WApI%3D"
},
"scte130-6": {
"href": "https://scte-cms-resource-storage.s3.amazonaws.com/ANSI_SCTE-130-6-2020-with-errata-notice-1601490087107.pdf",
"title": "ANSI_SCTE 130-6 2020: Digital Program Insertion–Advertising Systems Interfaces Part 6–Subscriber Information Service (SIS)",
"publisher": "SCTE",
"source": "https://dashifspecref.blob.core.windows.net/scte/scte.json?st=2019-04-01T00%3A00%3A00Z&se=2039-04-01T00%3A00%3A00Z&sp=rl&sv=2018-03-28&sr=b&sig=eIrXcpSm6WkcgRNBgNKlyMnIUGWLwgTurzYy8K2WApI%3D"
},
"scte130-7": {
"href": "https://scte-cms-resource-storage.s3.amazonaws.com/ANSI_SCTE-130-07-2020-with-errata-notice-1605187519752.pdf",
"title": "ANSI/SCTE 130-7 2020: Digital Program Insertion–Advertising Systems Interfaces Part 7 – Message Transport",
"publisher": "SCTE",
"source": "https://dashifspecref.blob.core.windows.net/scte/scte.json?st=2019-04-01T00%3A00%3A00Z&se=2039-04-01T00%3A00%3A00Z&sp=rl&sv=2018-03-28&sr=b&sig=eIrXcpSm6WkcgRNBgNKlyMnIUGWLwgTurzYy8K2WApI%3D"
},
"scte130-8": {
"href": "https://scte-cms-resource-storage.s3.amazonaws.com/ANSI_SCTE-130-8-2020-with-errata-notice-1601490155344.pdf",
"title": "ANSI/SCTE 130-8 2020: Digital Program Insertion-Advertising Systems Interfaces Part 8-General Information Service (GIS)",
"publisher": "SCTE",
"source": "https://dashifspecref.blob.core.windows.net/scte/scte.json?st=2019-04-01T00%3A00%3A00Z&se=2039-04-01T00%3A00%3A00Z&sp=rl&sv=2018-03-28&sr=b&sig=eIrXcpSm6WkcgRNBgNKlyMnIUGWLwgTurzYy8K2WApI%3D"
},
"scte130-9": {
"href": "https://scte-cms-resource-storage.s3.amazonaws.com/ANSI_SCTE-130-9-2020-1599500498956.pdf",
"title": "ANSI/SCTE 130-9 2020: Recommended Practices for SCTE 130 Digital Program Insertion—Advertising Systems Interfaces",
"publisher": "SCTE",
"source": "https://dashifspecref.blob.core.windows.net/scte/scte.json?st=2019-04-01T00%3A00%3A00Z&se=2039-04-01T00%3A00%3A00Z&sp=rl&sv=2018-03-28&sr=b&sig=eIrXcpSm6WkcgRNBgNKlyMnIUGWLwgTurzYy8K2WApI%3D"
},
"scte131": {
"href": "https://scte-cms-resource-storage.s3.amazonaws.com/Standards/ANSI_SCTE%20131%202017.pdf",
"title": "ANSI/SCTE 131 2017: HMS VoIP Test Management Information Base (MIB) Definition SCTE-HMS-VOIP-MIB",
"publisher": "SCTE",
"source": "https://dashifspecref.blob.core.windows.net/scte/scte.json?st=2019-04-01T00%3A00%3A00Z&se=2039-04-01T00%3A00%3A00Z&sp=rl&sv=2018-03-28&sr=b&sig=eIrXcpSm6WkcgRNBgNKlyMnIUGWLwgTurzYy8K2WApI%3D"
},
"scte132": {
"href": "https://scte-cms-resource-storage.s3.amazonaws.com/ANSI_SCTE-132-2019-1578342573668.pdf",
"title": "ANSI/SCTE 132 2019: Test Method For Reverse Path (Upstream) Bit Error Rate",
"publisher": "SCTE",
"source": "https://dashifspecref.blob.core.windows.net/scte/scte.json?st=2019-04-01T00%3A00%3A00Z&se=2039-04-01T00%3A00%3A00Z&sp=rl&sv=2018-03-28&sr=b&sig=eIrXcpSm6WkcgRNBgNKlyMnIUGWLwgTurzYy8K2WApI%3D"
},
"scte133": {
"href": "https://scte-cms-resource-storage.s3.amazonaws.com/Standards/ANSI_SCTE%20133%202017.pdf",
"title": "ANSI/SCTE 133 2017: Downstream RF Interface for Cable Modem Termination Systems",
"publisher": "SCTE",
"source": "https://dashifspecref.blob.core.windows.net/scte/scte.json?st=2019-04-01T00%3A00%3A00Z&se=2039-04-01T00%3A00%3A00Z&sp=rl&sv=2018-03-28&sr=b&sig=eIrXcpSm6WkcgRNBgNKlyMnIUGWLwgTurzYy8K2WApI%3D"
},
"scte134": {
"href": "https://scte-cms-resource-storage.s3.amazonaws.com/ANSI_SCTE-134-2021-1621536551206.pdf",
"title": "ANSI/SCTE 134 2021: Fusion Splicing Equipment and Applications for the Cable/Broadband Industry",
"publisher": "SCTE",
"source": "https://dashifspecref.blob.core.windows.net/scte/scte.json?st=2019-04-01T00%3A00%3A00Z&se=2039-04-01T00%3A00%3A00Z&sp=rl&sv=2018-03-28&sr=b&sig=eIrXcpSm6WkcgRNBgNKlyMnIUGWLwgTurzYy8K2WApI%3D"
},
"scte135-01": {
"aliasOf": "scte135-1"
},
"scte135-02": {
"href": "https://www2.scte.org/SCTEDocs/Standards/ANSI_SCTE%20135-02%202019.pdf",
"title": "ANSI/SCTE 135-02 2019: DOCSIS 3.0 Part 2: MAC and Upper Layer Protocols",
"publisher": "SCTE",
"source": "https://dashifspecref.blob.core.windows.net/scte/scte.json?st=2019-04-01T00%3A00%3A00Z&se=2039-04-01T00%3A00%3A00Z&sp=rl&sv=2018-03-28&sr=b&sig=eIrXcpSm6WkcgRNBgNKlyMnIUGWLwgTurzYy8K2WApI%3D"
},
"scte135-03": {
"href": "https://scte-cms-resource-storage.s3.amazonaws.com/ANSI_SCTE-135-03-2019-1576859513483.pdf",
"title": "ANSI/SCTE 135-03 2019: DOCSIS 3.0 Part 3: Security Services",
"publisher": "SCTE",
"source": "https://dashifspecref.blob.core.windows.net/scte/scte.json?st=2019-04-01T00%3A00%3A00Z&se=2039-04-01T00%3A00%3A00Z&sp=rl&sv=2018-03-28&sr=b&sig=eIrXcpSm6WkcgRNBgNKlyMnIUGWLwgTurzYy8K2WApI%3D"
},
"scte135-04": {
"aliasOf": "scte135-4"
},
"scte135-05": {
"aliasOf": "scte135-5"
},
"scte135-1": {
"href": "https://scte-cms-resource-storage.s3.amazonaws.com/Standards/ANSI_SCTE%20135-01%202018.pdf",
"title": "ANSI/SCTE 135-1 2018: DOCSIS 3.0 Part 1: Physical Layer Specification",
"publisher": "SCTE",
"source": "https://dashifspecref.blob.core.windows.net/scte/scte.json?st=2019-04-01T00%3A00%3A00Z&se=2039-04-01T00%3A00%3A00Z&sp=rl&sv=2018-03-28&sr=b&sig=eIrXcpSm6WkcgRNBgNKlyMnIUGWLwgTurzYy8K2WApI%3D"
},
"scte135-2": {
"aliasOf": "scte135-02"
},
"scte135-3": {
"aliasOf": "scte135-03"
},
"scte135-4": {
"href": "https://www2.scte.org/SCTEDocs/Standards/ANSI_SCTE%20135-4%202019.pdf",
"title": "ANSI/SCTE 135-4 2019: DOCSIS 3.0 Part 4: Operations Support Systems Interface",
"publisher": "SCTE",
"source": "https://dashifspecref.blob.core.windows.net/scte/scte.json?st=2019-04-01T00%3A00%3A00Z&se=2039-04-01T00%3A00%3A00Z&sp=rl&sv=2018-03-28&sr=b&sig=eIrXcpSm6WkcgRNBgNKlyMnIUGWLwgTurzYy8K2WApI%3D"
},
"scte135-5": {
"href": "https://scte-cms-resource-storage.s3.amazonaws.com/ANSI_SCTE-135-5-2017-1575473774413.pdf",
"title": "ANSI/SCTE 135-5-2017: DOCSIS 3.0 Part 5: Cable Modem to Customer Premise Equipment Interface",
"publisher": "SCTE",
"source": "https://dashifspecref.blob.core.windows.net/scte/scte.json?st=2019-04-01T00%3A00%3A00Z&se=2039-04-01T00%3A00%3A00Z&sp=rl&sv=2018-03-28&sr=b&sig=eIrXcpSm6WkcgRNBgNKlyMnIUGWLwgTurzYy8K2WApI%3D"
},
"scte136-01": {
"aliasOf": "scte136-1"
},
"scte136-02": {
"aliasOf": "scte136-2"
},
"scte136-1": {
"href": "https://scte-cms-resource-storage.s3.amazonaws.com/ANSI_SCTE%20136-1%202019.pdf",
"title": "ANSI/SCTE 136-1 2019: Layer 2 Virtual Private Networks for IP Cable Modem Systems",
"publisher": "SCTE",
"source": "https://dashifspecref.blob.core.windows.net/scte/scte.json?st=2019-04-01T00%3A00%3A00Z&se=2039-04-01T00%3A00%3A00Z&sp=rl&sv=2018-03-28&sr=b&sig=eIrXcpSm6WkcgRNBgNKlyMnIUGWLwgTurzYy8K2WApI%3D"
},
"scte136-2": {
"href": "https://scte-cms-resource-storage.s3.amazonaws.com/ANSI_SCTE%20136-2%202019.pdf",
"title": "ANSI/SCTE 136-2 2019: Cable Modem TDM Emulation Interface Standard",
"publisher": "SCTE",
"source": "https://dashifspecref.blob.core.windows.net/scte/scte.json?st=2019-04-01T00%3A00%3A00Z&se=2039-04-01T00%3A00%3A00Z&sp=rl&sv=2018-03-28&sr=b&sig=eIrXcpSm6WkcgRNBgNKlyMnIUGWLwgTurzYy8K2WApI%3D"
},
"scte137-01": {
"aliasOf": "scte137-1"
},
"scte137-02": {
"aliasOf": "scte137-2"
},
"scte137-03": {
"aliasOf": "scte137-3"
},
"scte137-04": {
"aliasOf": "scte137-4"
},
"scte137-05": {
"aliasOf": "scte137-5"
},
"scte137-06": {
"aliasOf": "scte137-6"
},
"scte137-07": {
"aliasOf": "scte137-7"
},
"scte137-1": {
"href": "https://scte-cms-resource-storage.s3.amazonaws.com/Standards/ANSI_SCTE%20137-1%202017.pdf",
"title": "ANSI/SCTE 137-1 2017: Modular Headend Architecture Part 1: DOCSIS Timing Interface",
"publisher": "SCTE",
"source": "https://dashifspecref.blob.core.windows.net/scte/scte.json?st=2019-04-01T00%3A00%3A00Z&se=2039-04-01T00%3A00%3A00Z&sp=rl&sv=2018-03-28&sr=b&sig=eIrXcpSm6WkcgRNBgNKlyMnIUGWLwgTurzYy8K2WApI%3D"
},
"scte137-2": {
"href": "https://scte-cms-resource-storage.s3.amazonaws.com/Standards/ANSI_SCTE%20137-2%202017.pdf",
"title": "ANSI/SCTE 137-2 2017: Modular Head End Architecture Part 2: M-CMTS Downstream External PHY Interface",
"publisher": "SCTE",
"source": "https://dashifspecref.blob.core.windows.net/scte/scte.json?st=2019-04-01T00%3A00%3A00Z&se=2039-04-01T00%3A00%3A00Z&sp=rl&sv=2018-03-28&sr=b&sig=eIrXcpSm6WkcgRNBgNKlyMnIUGWLwgTurzYy8K2WApI%3D"
},
"scte137-3": {
"href": "https://scte-cms-resource-storage.s3.amazonaws.com/Standards/ANSI_SCTE%20137-3%202017.pdf",
"title": "ANSI/SCTE 137-3 2017: Modular Headend Architecture Part 3: M-CMTS Operations Support System Interface",
"publisher": "SCTE",
"source": "https://dashifspecref.blob.core.windows.net/scte/scte.json?st=2019-04-01T00%3A00%3A00Z&se=2039-04-01T00%3A00%3A00Z&sp=rl&sv=2018-03-28&sr=b&sig=eIrXcpSm6WkcgRNBgNKlyMnIUGWLwgTurzYy8K2WApI%3D"
},
"scte137-4": {
"href": "https://scte-cms-resource-storage.s3.amazonaws.com/Standards/ANSI_SCTE%20137-4%202017.pdf",
"title": "ANSI/SCTE 137-4 2017: Modular Head End Architecture Part 4: Edge Resource Manager Interface",
"publisher": "SCTE",
"source": "https://dashifspecref.blob.core.windows.net/scte/scte.json?st=2019-04-01T00%3A00%3A00Z&se=2039-04-01T00%3A00%3A00Z&sp=rl&sv=2018-03-28&sr=b&sig=eIrXcpSm6WkcgRNBgNKlyMnIUGWLwgTurzYy8K2WApI%3D"
},
"scte137-5": {
"href": "https://scte-cms-resource-storage.s3.amazonaws.com/Standards/ANSI_SCTE%20137-5%202017.pdf",
"title": "ANSI/SCTE 137-5 2017: Modular Headend Architecture Part 5: Edge QAM Provisioning and Management Interface",
"publisher": "SCTE",
"source": "https://dashifspecref.blob.core.windows.net/scte/scte.json?st=2019-04-01T00%3A00%3A00Z&se=2039-04-01T00%3A00%3A00Z&sp=rl&sv=2018-03-28&sr=b&sig=eIrXcpSm6WkcgRNBgNKlyMnIUGWLwgTurzYy8K2WApI%3D"
},
"scte137-6": {
"href": "https://scte-cms-resource-storage.s3.amazonaws.com/ANSI_SCTE-137-6-2017-1576859692544.pdf",
"title": "ANSI/SCTE 137-6 2017: Modular Headend Architecture Part 6: Edge QAM Video Stream Interface",
"publisher": "SCTE",
"source": "https://dashifspecref.blob.core.windows.net/scte/scte.json?st=2019-04-01T00%3A00%3A00Z&se=2039-04-01T00%3A00%3A00Z&sp=rl&sv=2018-03-28&sr=b&sig=eIrXcpSm6WkcgRNBgNKlyMnIUGWLwgTurzYy8K2WApI%3D"
},
"scte137-7": {
"href": "https://scte-cms-resource-storage.s3.amazonaws.com/ANSI_SCTE-137-7-2017-1576859830501.pdf",
"title": "ANSI/SCTE 137-7 2017: Modular Headend Architecture Part 7: EQAM Architectural Overview Technical Report",
"publisher": "SCTE",
"source": "https://dashifspecref.blob.core.windows.net/scte/scte.json?st=2019-04-01T00%3A00%3A00Z&se=2039-04-01T00%3A00%3A00Z&sp=rl&sv=2018-03-28&sr=b&sig=eIrXcpSm6WkcgRNBgNKlyMnIUGWLwgTurzYy8K2WApI%3D"
},
"scte138": {
"href": "https://scte-cms-resource-storage.s3.amazonaws.com/ANSI_SCTE%20138%202019.pdf",
"title": "ANSI/SCTE 138 2019: Stream Conditioning for Switching of Addressable Content in Digital Television Receivers",
"publisher": "SCTE",
"source": "https://dashifspecref.blob.core.windows.net/scte/scte.json?st=2019-04-01T00%3A00%3A00Z&se=2039-04-01T00%3A00%3A00Z&sp=rl&sv=2018-03-28&sr=b&sig=eIrXcpSm6WkcgRNBgNKlyMnIUGWLwgTurzYy8K2WApI%3D"
},
"scte14": {
"href": "https://scte-cms-resource-storage.s3.amazonaws.com/Standards/ANSI_SCTE%2014%202016.pdf",
"title": "ANSI/SCTE 14 2016: Test Method for Hex Crimp Tool Verification/Calibration",
"publisher": "SCTE",
"source": "https://dashifspecref.blob.core.windows.net/scte/scte.json?st=2019-04-01T00%3A00%3A00Z&se=2039-04-01T00%3A00%3A00Z&sp=rl&sv=2018-03-28&sr=b&sig=eIrXcpSm6WkcgRNBgNKlyMnIUGWLwgTurzYy8K2WApI%3D"
},
"scte140": {
"href": "https://scte-cms-resource-storage.s3.amazonaws.com/ANSI_SCTE%20140%202019.pdf",
"title": "ANSI/SCTE 140 2019: Cable Modem IPv4 and IPv6 eRouter Specification",
"publisher": "SCTE",
"source": "https://dashifspecref.blob.core.windows.net/scte/scte.json?st=2019-04-01T00%3A00%3A00Z&se=2039-04-01T00%3A00%3A00Z&sp=rl&sv=2018-03-28&sr=b&sig=eIrXcpSm6WkcgRNBgNKlyMnIUGWLwgTurzYy8K2WApI%3D"
},
"scte142": {
"href": "https://scte-cms-resource-storage.s3.amazonaws.com/ANSI_SCTE-142-2017-1575473881521.pdf",
"title": "ANSI/SCTE 142 2017: Recommended Practice for Transport Stream Verification",
"publisher": "SCTE",
"source": "https://dashifspecref.blob.core.windows.net/scte/scte.json?st=2019-04-01T00%3A00%3A00Z&se=2039-04-01T00%3A00%3A00Z&sp=rl&sv=2018-03-28&sr=b&sig=eIrXcpSm6WkcgRNBgNKlyMnIUGWLwgTurzYy8K2WApI%3D"
},
"scte143": {
"href": "https://scte-cms-resource-storage.s3.amazonaws.com/Standards/ANSI_SCTE%20143%202018.pdf",
"title": "ANSI/SCTE 143 2018: Test Method for Salt Spray",
"publisher": "SCTE",
"source": "https://dashifspecref.blob.core.windows.net/scte/scte.json?st=2019-04-01T00%3A00%3A00Z&se=2039-04-01T00%3A00%3A00Z&sp=rl&sv=2018-03-28&sr=b&sig=eIrXcpSm6WkcgRNBgNKlyMnIUGWLwgTurzYy8K2WApI%3D"
},
"scte144": {
"href": "https://scte-cms-resource-storage.s3.amazonaws.com/ANSI_SCTE-144-2017-1575474002292.pdf",
"title": "ANSI/SCTE 144 2017: Test Procedure for Measuring Transmission and Reflection",
"publisher": "SCTE",
"source": "https://dashifspecref.blob.core.windows.net/scte/scte.json?st=2019-04-01T00%3A00%3A00Z&se=2039-04-01T00%3A00%3A00Z&sp=rl&sv=2018-03-28&sr=b&sig=eIrXcpSm6WkcgRNBgNKlyMnIUGWLwgTurzYy8K2WApI%3D"
},
"scte145": {
"href": "https://scte-cms-resource-storage.s3.amazonaws.com/Standards/ANSI_SCTE%20145%202015.pdf",
"title": "ANSI/SCTE 145 2015: Test Method for Second Harmonic Distortion of Passives Using a Single Carrier",
"publisher": "SCTE",
"source": "https://dashifspecref.blob.core.windows.net/scte/scte.json?st=2019-04-01T00%3A00%3A00Z&se=2039-04-01T00%3A00%3A00Z&sp=rl&sv=2018-03-28&sr=b&sig=eIrXcpSm6WkcgRNBgNKlyMnIUGWLwgTurzYy8K2WApI%3D"
},
"scte146": {
"href": "https://scte-cms-resource-storage.s3.amazonaws.com/SCTE-146-2021-1618396655770.pdf",
"title": "SCTE 146 2021: Outdoor \"F\" Female to \"F\" Female Inline Splice",
"publisher": "SCTE",
"source": "https://dashifspecref.blob.core.windows.net/scte/scte.json?st=2019-04-01T00%3A00%3A00Z&se=2039-04-01T00%3A00%3A00Z&sp=rl&sv=2018-03-28&sr=b&sig=eIrXcpSm6WkcgRNBgNKlyMnIUGWLwgTurzYy8K2WApI%3D"
},
"scte147": {
"href": "https://scte-cms-resource-storage.s3.amazonaws.com/ANSI_SCTE-147-2013-1575560465095.pdf",
"title": "ANSI/SCTE 147 2013: Specification for 75 ohm, Inline Attenuators",
"publisher": "SCTE",
"source": "https://dashifspecref.blob.core.windows.net/scte/scte.json?st=2019-04-01T00%3A00%3A00Z&se=2039-04-01T00%3A00%3A00Z&sp=rl&sv=2018-03-28&sr=b&sig=eIrXcpSm6WkcgRNBgNKlyMnIUGWLwgTurzYy8K2WApI%3D"
},
"scte148": {
"href": "https://scte-cms-resource-storage.s3.amazonaws.com/Standards/ANSI_SCTE%20148%202016.pdf",
"title": "ANSI/SCTE 148 2016: Specification for Male \"F\" Terminator, 75 Ohm",
"publisher": "SCTE",
"source": "https://dashifspecref.blob.core.windows.net/scte/scte.json?st=2019-04-01T00%3A00%3A00Z&se=2039-04-01T00%3A00%3A00Z&sp=rl&sv=2018-03-28&sr=b&sig=eIrXcpSm6WkcgRNBgNKlyMnIUGWLwgTurzYy8K2WApI%3D"
},
"scte149": {
"href": "https://scte-cms-resource-storage.s3.amazonaws.com/ANSI_SCTE-149-2019-1575560518507.pdf",
"title": "ANSI/SCTE 149 2019: Test Method for Withstanding Tightening Torque- \"F\" Female",
"publisher": "SCTE",
"source": "https://dashifspecref.blob.core.windows.net/scte/scte.json?st=2019-04-01T00%3A00%3A00Z&se=2039-04-01T00%3A00%3A00Z&sp=rl&sv=2018-03-28&sr=b&sig=eIrXcpSm6WkcgRNBgNKlyMnIUGWLwgTurzYy8K2WApI%3D"
},
"scte15": {
"href": "https://scte-cms-resource-storage.s3.amazonaws.com/ANSI_SCTE%2015%202019.pdf",
"title": "ANSI/SCTE 15 2019: Specification for Trunk, Feeder and Distribution Coaxial Cable",
"publisher": "SCTE",
"source": "https://dashifspecref.blob.core.windows.net/scte/scte.json?st=2019-04-01T00%3A00%3A00Z&se=2039-04-01T00%3A00%3A00Z&sp=rl&sv=2018-03-28&sr=b&sig=eIrXcpSm6WkcgRNBgNKlyMnIUGWLwgTurzYy8K2WApI%3D"
},
"scte150": {
"href": "https://scte-cms-resource-storage.s3.amazonaws.com/ANSI_SCTE-150-2013-1576860225162.pdf",
"title": "ANSI/SCTE 150 2013: Preparing a Line Extender Specification",
"publisher": "SCTE",
"source": "https://dashifspecref.blob.core.windows.net/scte/scte.json?st=2019-04-01T00%3A00%3A00Z&se=2039-04-01T00%3A00%3A00Z&sp=rl&sv=2018-03-28&sr=b&sig=eIrXcpSm6WkcgRNBgNKlyMnIUGWLwgTurzYy8K2WApI%3D"
},
"scte151": {
"href": "https://scte-cms-resource-storage.s3.amazonaws.com/ANSI_SCTE-151-2015-1575560598938.pdf",
"title": "ANSI/SCTE 151 2015: Mechanical, Electrical, and Environmental Requirements for RF Traps and Filters",
"publisher": "SCTE",
"source": "https://dashifspecref.blob.core.windows.net/scte/scte.json?st=2019-04-01T00%3A00%3A00Z&se=2039-04-01T00%3A00%3A00Z&sp=rl&sv=2018-03-28&sr=b&sig=eIrXcpSm6WkcgRNBgNKlyMnIUGWLwgTurzYy8K2WApI%3D"
},
"scte152": {
"href": "https://scte-cms-resource-storage.s3.amazonaws.com/ANSI_SCTE-152-2019-1575560649723.pdf",
"title": "ANSI/SCTE 152 2019: Test Procedure for Contact Resistance Measurement of Mainline Plug Interface",
"publisher": "SCTE",
"source": "https://dashifspecref.blob.core.windows.net/scte/scte.json?st=2019-04-01T00%3A00%3A00Z&se=2039-04-01T00%3A00%3A00Z&sp=rl&sv=2018-03-28&sr=b&sig=eIrXcpSm6WkcgRNBgNKlyMnIUGWLwgTurzYy8K2WApI%3D"
},
"scte153": {
"href": "https://scte-cms-resource-storage.s3.amazonaws.com/Standards/ANSI_SCTE%20153%202016.pdf",
"title": "ANSI/SCTE 153 2016: Drop Passives: Splitters, Couplers and Power Inserters",
"publisher": "SCTE",
"source": "https://dashifspecref.blob.core.windows.net/scte/scte.json?st=2019-04-01T00%3A00%3A00Z&se=2039-04-01T00%3A00%3A00Z&sp=rl&sv=2018-03-28&sr=b&sig=eIrXcpSm6WkcgRNBgNKlyMnIUGWLwgTurzYy8K2WApI%3D"
},
"scte154-01": {
"aliasOf": "scte154-1"
},
"scte154-02": {
"aliasOf": "scte154-2"
},
"scte154-03": {
"aliasOf": "scte154-3"
},
"scte154-04": {
"aliasOf": "scte154-4"
},
"scte154-05": {
"aliasOf": "scte154-5"
},
"scte154-1": {
"href": "https://scte-cms-resource-storage.s3.amazonaws.com/Standards/ANSI_SCTE%20154-1%202018.pdf",
"title": "ANSI/SCTE 154-1 2018: Digital Video Common MIB",
"publisher": "SCTE",
"source": "https://dashifspecref.blob.core.windows.net/scte/scte.json?st=2019-04-01T00%3A00%3A00Z&se=2039-04-01T00%3A00%3A00Z&sp=rl&sv=2018-03-28&sr=b&sig=eIrXcpSm6WkcgRNBgNKlyMnIUGWLwgTurzYy8K2WApI%3D"
},
"scte154-2": {
"href": "https://scte-cms-resource-storage.s3.amazonaws.com/Standards/ANSI_SCTE%20154-2%202018.pdf",
"title": "ANSI/SCTE 154-2 2018: SCTE-HMS-QAM-MIB",
"publisher": "SCTE",
"source": "https://dashifspecref.blob.core.windows.net/scte/scte.json?st=2019-04-01T00%3A00%3A00Z&se=2039-04-01T00%3A00%3A00Z&sp=rl&sv=2018-03-28&sr=b&sig=eIrXcpSm6WkcgRNBgNKlyMnIUGWLwgTurzYy8K2WApI%3D"
},
"scte154-3": {
"href": "https://scte-cms-resource-storage.s3.amazonaws.com/Standards/ANSI_SCTE%20154-3%202018.pdf",
"title": "ANSI/SCTE 154-3 2018: Encoder MIB",
"publisher": "SCTE",
"source": "https://dashifspecref.blob.core.windows.net/scte/scte.json?st=2019-04-01T00%3A00%3A00Z&se=2039-04-01T00%3A00%3A00Z&sp=rl&sv=2018-03-28&sr=b&sig=eIrXcpSm6WkcgRNBgNKlyMnIUGWLwgTurzYy8K2WApI%3D"
},
"scte154-4": {
"href": "https://scte-cms-resource-storage.s3.amazonaws.com/Standards/ANSI_SCTE%20154-4%202018.pdf",
"title": "ANSI/SCTE 154-4 2018: MPEG Management Information Base SCTE-HMS-MPEG MIB",
"publisher": "SCTE",
"source": "https://dashifspecref.blob.core.windows.net/scte/scte.json?st=2019-04-01T00%3A00%3A00Z&se=2039-04-01T00%3A00%3A00Z&sp=rl&sv=2018-03-28&sr=b&sig=eIrXcpSm6WkcgRNBgNKlyMnIUGWLwgTurzYy8K2WApI%3D"
},
"scte154-5": {
"href": "https://scte-cms-resource-storage.s3.amazonaws.com/Standards/ANSI_SCTE%20154-5%202018.pdf",
"title": "ANSI/SCTE 154-5 2018: SCTE-HMS-HEADENDIDENT TEXTUAL CONVENTIONS MIB",
"publisher": "SCTE",
"source": "https://dashifspecref.blob.core.windows.net/scte/scte.json?st=2019-04-01T00%3A00%3A00Z&se=2039-04-01T00%3A00%3A00Z&sp=rl&sv=2018-03-28&sr=b&sig=eIrXcpSm6WkcgRNBgNKlyMnIUGWLwgTurzYy8K2WApI%3D"
},
"scte155": {
"href": "https://scte-cms-resource-storage.s3.amazonaws.com/SCTE-155-2021-1618396721231.pdf",
"title": "SCTE 155 2021: Indoor \"F\" Female to \"F\" Female Inline Splice",
"publisher": "SCTE",
"source": "https://dashifspecref.blob.core.windows.net/scte/scte.json?st=2019-04-01T00%3A00%3A00Z&se=2039-04-01T00%3A00%3A00Z&sp=rl&sv=2018-03-28&sr=b&sig=eIrXcpSm6WkcgRNBgNKlyMnIUGWLwgTurzYy8K2WApI%3D"
},
"scte156": {
"href": "https://scte-cms-resource-storage.s3.amazonaws.com/ANSI_SCTE-156-2019-1575561181627.pdf",
"title": "ANSI/SCTE 156 2019: Specification for Mainline Plug (Male) to Cable Interface",
"publisher": "SCTE",
"source": "https://dashifspecref.blob.core.windows.net/scte/scte.json?st=2019-04-01T00%3A00%3A00Z&se=2039-04-01T00%3A00%3A00Z&sp=rl&sv=2018-03-28&sr=b&sig=eIrXcpSm6WkcgRNBgNKlyMnIUGWLwgTurzYy8K2WApI%3D"
},
"scte158": {
"href": "https://scte-cms-resource-storage.s3.amazonaws.com/Standards/ANSI_SCTE%20158%202016.pdf",
"title": "ANSI/SCTE 158 2016: Recommended Environmental Condition Ranges for Broadband Communications Equipment",
"publisher": "SCTE",
"source": "https://dashifspecref.blob.core.windows.net/scte/scte.json?st=2019-04-01T00%3A00%3A00Z&se=2039-04-01T00%3A00%3A00Z&sp=rl&sv=2018-03-28&sr=b&sig=eIrXcpSm6WkcgRNBgNKlyMnIUGWLwgTurzYy8K2WApI%3D"
},
"scte159-01": {
"href": "https://scte-cms-resource-storage.s3.amazonaws.com/Standards/ANSI_SCTE%20159-01%202017.pdf",
"title": "ANSI/SCTE 159-01 2017: Multimedia Application and Service Part 1: IPCablecom Multimedia",
"publisher": "SCTE",
"source": "https://dashifspecref.blob.core.windows.net/scte/scte.json?st=2019-04-01T00%3A00%3A00Z&se=2039-04-01T00%3A00%3A00Z&sp=rl&sv=2018-03-28&sr=b&sig=eIrXcpSm6WkcgRNBgNKlyMnIUGWLwgTurzYy8K2WApI%3D"
},
"scte159-02": {
"aliasOf": "scte159-2"
},
"scte159-1": {
"aliasOf": "scte159-01"
},
"scte159-2": {
"href": "https://scte-cms-resource-storage.s3.amazonaws.com/Standards/ANSI_SCTE%20159-2%202017.pdf",
"title": "ANSI/SCTE 159-2 2017: Multimedia Application and Service Part 2: IPCablecom Multimedia Web Services",
"publisher": "SCTE",
"source": "https://dashifspecref.blob.core.windows.net/scte/scte.json?st=2019-04-01T00%3A00%3A00Z&se=2039-04-01T00%3A00%3A00Z&sp=rl&sv=2018-03-28&sr=b&sig=eIrXcpSm6WkcgRNBgNKlyMnIUGWLwgTurzYy8K2WApI%3D"
},
"scte16": {
"href": "https://scte-cms-resource-storage.s3.amazonaws.com/Standards/ANSI_SCTE%2016%202018.pdf",
"title": "ANSI/SCTE 16 2018: Test Procedure for Hum Modulation",
"publisher": "SCTE",
"source": "https://dashifspecref.blob.core.windows.net/scte/scte.json?st=2019-04-01T00%3A00%3A00Z&se=2039-04-01T00%3A00%3A00Z&sp=rl&sv=2018-03-28&sr=b&sig=eIrXcpSm6WkcgRNBgNKlyMnIUGWLwgTurzYy8K2WApI%3D"
},
"scte160": {
"href": "https://scte-cms-resource-storage.s3.amazonaws.com/Standards/ANSI_SCTE%20160%202018.pdf",
"title": "ANSI/SCTE 160 2018: Specification for Mini ‘F’ Connector, Male, Pin Type",
"publisher": "SCTE",
"source": "https://dashifspecref.blob.core.windows.net/scte/scte.json?st=2019-04-01T00%3A00%3A00Z&se=2039-04-01T00%3A00%3A00Z&sp=rl&sv=2018-03-28&sr=b&sig=eIrXcpSm6WkcgRNBgNKlyMnIUGWLwgTurzYy8K2WApI%3D"
},
"scte161": {
"href": "https://scte-cms-resource-storage.s3.amazonaws.com/Standards/ANSI_SCTE%20161%202016.pdf",
"title": "ANSI/SCTE 161 2016: Drop Amplifiers",
"publisher": "SCTE",
"source": "https://dashifspecref.blob.core.windows.net/scte/scte.json?st=2019-04-01T00%3A00%3A00Z&se=2039-04-01T00%3A00%3A00Z&sp=rl&sv=2018-03-28&sr=b&sig=eIrXcpSm6WkcgRNBgNKlyMnIUGWLwgTurzYy8K2WApI%3D"
},
"scte162": {
"href": "https://scte-cms-resource-storage.s3.amazonaws.com/ANSI_SCTE-162-2019-1575561741880.pdf",
"title": "ANSI/SCTE 162 2019: Emergency Alert Signaling for the Home Network",
"publisher": "SCTE",
"source": "https://dashifspecref.blob.core.windows.net/scte/scte.json?st=2019-04-01T00%3A00%3A00Z&se=2039-04-01T00%3A00%3A00Z&sp=rl&sv=2018-03-28&sr=b&sig=eIrXcpSm6WkcgRNBgNKlyMnIUGWLwgTurzYy8K2WApI%3D"
},
"scte163": {
"href": "https://scte-cms-resource-storage.s3.amazonaws.com/Standards/ANSI_SCTE%20163%202018.pdf",
"title": "ANSI/SCTE 163 2018: SCTE HMS Switched Digital Video MIB",
"publisher": "SCTE",
"source": "https://dashifspecref.blob.core.windows.net/scte/scte.json?st=2019-04-01T00%3A00%3A00Z&se=2039-04-01T00%3A00%3A00Z&sp=rl&sv=2018-03-28&sr=b&sig=eIrXcpSm6WkcgRNBgNKlyMnIUGWLwgTurzYy8K2WApI%3D"
},
"scte164": {
"href": "https://scte-cms-resource-storage.s3.amazonaws.com/ANSI_SCTE-164-2019-1575475062260.pdf",
"title": "ANSI/SCTE 164 2019: Emergency Alert Metadata Descriptor",
"publisher": "SCTE",
"source": "https://dashifspecref.blob.core.windows.net/scte/scte.json?st=2019-04-01T00%3A00%3A00Z&se=2039-04-01T00%3A00%3A00Z&sp=rl&sv=2018-03-28&sr=b&sig=eIrXcpSm6WkcgRNBgNKlyMnIUGWLwgTurzYy8K2WApI%3D"
},
"scte165-01": {
"href": "https://scte-cms-resource-storage.s3.amazonaws.com/ANSI_SCTE-165-01-2019-1575561951453.pdf",
"title": "ANSI/SCTE 165-01 2019: IPCablecom 1.5 Part 1: Architecture Framework Technical Report",
"publisher": "SCTE",
"source": "https://dashifspecref.blob.core.windows.net/scte/scte.json?st=2019-04-01T00%3A00%3A00Z&se=2039-04-01T00%3A00%3A00Z&sp=rl&sv=2018-03-28&sr=b&sig=eIrXcpSm6WkcgRNBgNKlyMnIUGWLwgTurzYy8K2WApI%3D"
},
"scte165-02": {
"aliasOf": "scte165-2"
},
"scte165-03": {
"aliasOf": "scte165-3"
},
"scte165-04": {
"href": "https://scte-cms-resource-storage.s3.amazonaws.com/ANSI_SCTE-165-04-2019-1575561989326.pdf",
"title": "ANSI/SCTE 165-04 2019: IPCablecom 1.5 Part 4: Dynamic Quality-of-Service",
"publisher": "SCTE",
"source": "https://dashifspecref.blob.core.windows.net/scte/scte.json?st=2019-04-01T00%3A00%3A00Z&se=2039-04-01T00%3A00%3A00Z&sp=rl&sv=2018-03-28&sr=b&sig=eIrXcpSm6WkcgRNBgNKlyMnIUGWLwgTurzYy8K2WApI%3D"
},
"scte165-05": {
"href": "https://scte-cms-resource-storage.s3.amazonaws.com/ANSI_SCTE-165-05-2019-1575562019495.pdf",
"title": "ANSI/SCTE 165-05 2019: IPCablecom 1.5 Part 5: Media Terminal Adapter (MTA) Device Provisioning",
"publisher": "SCTE",
"source": "https://dashifspecref.blob.core.windows.net/scte/scte.json?st=2019-04-01T00%3A00%3A00Z&se=2039-04-01T00%3A00%3A00Z&sp=rl&sv=2018-03-28&sr=b&sig=eIrXcpSm6WkcgRNBgNKlyMnIUGWLwgTurzYy8K2WApI%3D"
},
"scte165-06": {
"href": "https://scte-cms-resource-storage.s3.amazonaws.com/ANSI_SCTE-165-06-2019-1575562056411.pdf",
"title": "ANSI/SCTE 165-06 2019: IPCablecom 1.5 Part 6: MIBS Framework",
"publisher": "SCTE",
"source": "https://dashifspecref.blob.core.windows.net/scte/scte.json?st=2019-04-01T00%3A00%3A00Z&se=2039-04-01T00%3A00%3A00Z&sp=rl&sv=2018-03-28&sr=b&sig=eIrXcpSm6WkcgRNBgNKlyMnIUGWLwgTurzYy8K2WApI%3D"
},
"scte165-07": {
"href": "https://scte-cms-resource-storage.s3.amazonaws.com/ANSI_SCTE-165-07-2019-1575562084884.pdf",
"title": "ANSI/SCTE 165-07 2019: IPCablecom 1.5 Part 7: MTA MIB",
"publisher": "SCTE",
"source": "https://dashifspecref.blob.core.windows.net/scte/scte.json?st=2019-04-01T00%3A00%3A00Z&se=2039-04-01T00%3A00%3A00Z&sp=rl&sv=2018-03-28&sr=b&sig=eIrXcpSm6WkcgRNBgNKlyMnIUGWLwgTurzYy8K2WApI%3D"
},
"scte165-08": {
"href": "https://scte-cms-resource-storage.s3.amazonaws.com/ANSI_SCTE-165-08-2019-1575562117450.pdf",
"title": "ANSI/SCTE 165-08 2019: IPCablecom 1.5 Part 8: Signaling MIB",
"publisher": "SCTE",
"source": "https://dashifspecref.blob.core.windows.net/scte/scte.json?st=2019-04-01T00%3A00%3A00Z&se=2039-04-01T00%3A00%3A00Z&sp=rl&sv=2018-03-28&sr=b&sig=eIrXcpSm6WkcgRNBgNKlyMnIUGWLwgTurzYy8K2WApI%3D"
},
"scte165-09": {
"href": "https://scte-cms-resource-storage.s3.amazonaws.com/ANSI_SCTE-165-09-2019-1575562151857.pdf",
"title": "ANSI/SCTE 165-09 2019: IPCablecom 1.5 Part 9: Event Messaging",
"publisher": "SCTE",
"source": "https://dashifspecref.blob.core.windows.net/scte/scte.json?st=2019-04-01T00%3A00%3A00Z&se=2039-04-01T00%3A00%3A00Z&sp=rl&sv=2018-03-28&sr=b&sig=eIrXcpSm6WkcgRNBgNKlyMnIUGWLwgTurzYy8K2WApI%3D"
},
"scte165-1": {
"aliasOf": "scte165-01"
},
"scte165-10": {
"href": "https://scte-cms-resource-storage.s3.amazonaws.com/ANSI_SCTE-165-10-2020-1603125334798.pdf",
"title": "ANSI/SCTE 165-10 2020: IPCablecom 1.5 Part 10: Security",
"publisher": "SCTE",
"source": "https://dashifspecref.blob.core.windows.net/scte/scte.json?st=2019-04-01T00%3A00%3A00Z&se=2039-04-01T00%3A00%3A00Z&sp=rl&sv=2018-03-28&sr=b&sig=eIrXcpSm6WkcgRNBgNKlyMnIUGWLwgTurzYy8K2WApI%3D"
},
"scte165-11": {
"href": "https://scte-cms-resource-storage.s3.amazonaws.com/ANSI_SCTE-165-11-2019-1575562230479.pdf",
"title": "ANSI/SCTE 165-11 2019: IPCablecom 1.5 Part 11: Analog Trunking for PBX Specification",
"publisher": "SCTE",
"source": "https://dashifspecref.blob.core.windows.net/scte/scte.json?st=2019-04-01T00%3A00%3A00Z&se=2039-04-01T00%3A00%3A00Z&sp=rl&sv=2018-03-28&sr=b&sig=eIrXcpSm6WkcgRNBgNKlyMnIUGWLwgTurzYy8K2WApI%3D"
},
"scte165-12": {
"href": "https://scte-cms-resource-storage.s3.amazonaws.com/Standards/ANSI_SCTE%20165-12%202016.pdf",
"title": "ANSI/SCTE 165-12 2016: IPCablecom 1.5 Part 12: PSTN Gateway Call Signaling Protocol",
"publisher": "SCTE",
"source": "https://dashifspecref.blob.core.windows.net/scte/scte.json?st=2019-04-01T00%3A00%3A00Z&se=2039-04-01T00%3A00%3A00Z&sp=rl&sv=2018-03-28&sr=b&sig=eIrXcpSm6WkcgRNBgNKlyMnIUGWLwgTurzYy8K2WApI%3D"
},
"scte165-13": {
"href": "https://scte-cms-resource-storage.s3.amazonaws.com/ANSI_SCTE-165-13-2019-1575562298918.pdf",
"title": "ANSI/SCTE 165-13 2019: IPCablecom 1.5 Part 13: Electronic Surveillance Standard",
"publisher": "SCTE",
"source": "https://dashifspecref.blob.core.windows.net/scte/scte.json?st=2019-04-01T00%3A00%3A00Z&se=2039-04-01T00%3A00%3A00Z&sp=rl&sv=2018-03-28&sr=b&sig=eIrXcpSm6WkcgRNBgNKlyMnIUGWLwgTurzYy8K2WApI%3D"
},
"scte165-14": {
"href": "https://scte-cms-resource-storage.s3.amazonaws.com/ANSI_SCTE-165-14-2019-1575562353265.pdf",
"title": "ANSI/SCTE 165-14 2019: IPCablecom 1.5 Part 14: Embedded MTA Analog Interface and Powering",
"publisher": "SCTE",
"source": "https://dashifspecref.blob.core.windows.net/scte/scte.json?st=2019-04-01T00%3A00%3A00Z&se=2039-04-01T00%3A00%3A00Z&sp=rl&sv=2018-03-28&sr=b&sig=eIrXcpSm6WkcgRNBgNKlyMnIUGWLwgTurzYy8K2WApI%3D"
},
"scte165-15": {
"href": "https://scte-cms-resource-storage.s3.amazonaws.com/ANSI_SCTE-165-15-2019-1575562386951.pdf",
"title": "ANSI/SCTE 165-15 2019: IPCablecom 1.5 Part 15: Management Event MIB Specification",
"publisher": "SCTE",
"source": "https://dashifspecref.blob.core.windows.net/scte/scte.json?st=2019-04-01T00%3A00%3A00Z&se=2039-04-01T00%3A00%3A00Z&sp=rl&sv=2018-03-28&sr=b&sig=eIrXcpSm6WkcgRNBgNKlyMnIUGWLwgTurzYy8K2WApI%3D"
},
"scte165-16": {
"href": "https://scte-cms-resource-storage.s3.amazonaws.com/ANSI_SCTE-165-16-2016-1575475244159.pdf",
"title": "ANSI/SCTE 165-16 2016: IPCablecom 1.5 Part 16: Management Event Mechanism",
"publisher": "SCTE",
"source": "https://dashifspecref.blob.core.windows.net/scte/scte.json?st=2019-04-01T00%3A00%3A00Z&se=2039-04-01T00%3A00%3A00Z&sp=rl&sv=2018-03-28&sr=b&sig=eIrXcpSm6WkcgRNBgNKlyMnIUGWLwgTurzYy8K2WApI%3D"
},
"scte165-17": {
"href": "https://scte-cms-resource-storage.s3.amazonaws.com/ANSI_SCTE-165-17-2019-1575562423136.pdf",
"title": "ANSI/SCTE 165-17 2019: IPCablecom 1.5 Part 17: Audio Server Protocol",
"publisher": "SCTE",
"source": "https://dashifspecref.blob.core.windows.net/scte/scte.json?st=2019-04-01T00%3A00%3A00Z&se=2039-04-01T00%3A00%3A00Z&sp=rl&sv=2018-03-28&sr=b&sig=eIrXcpSm6WkcgRNBgNKlyMnIUGWLwgTurzYy8K2WApI%3D"
},
"scte165-18": {
"href": "https://scte-cms-resource-storage.s3.amazonaws.com/Standards/ANSI_SCTE%20165-18%202016.pdf",
"title": "ANSI/SCTE 165-18 2016: IPCablecom 1.5 Part 18: CMS to CMS Signaling",
"publisher": "SCTE",
"source": "https://dashifspecref.blob.core.windows.net/scte/scte.json?st=2019-04-01T00%3A00%3A00Z&se=2039-04-01T00%3A00%3A00Z&sp=rl&sv=2018-03-28&sr=b&sig=eIrXcpSm6WkcgRNBgNKlyMnIUGWLwgTurzYy8K2WApI%3D"
},
"scte165-19": {
"href": "https://scte-cms-resource-storage.s3.amazonaws.com/ANSI_SCTE-165-19-2019-1575562460093.pdf",
"title": "ANSI/SCTE 165-19 2019: IPCablecom 1.5 Part 19: CMS Subscriber Provisioning Specification",
"publisher": "SCTE",
"source": "https://dashifspecref.blob.core.windows.net/scte/scte.json?st=2019-04-01T00%3A00%3A00Z&se=2039-04-01T00%3A00%3A00Z&sp=rl&sv=2018-03-28&sr=b&sig=eIrXcpSm6WkcgRNBgNKlyMnIUGWLwgTurzYy8K2WApI%3D"
},
"scte165-2": {
"href": "https://scte-cms-resource-storage.s3.amazonaws.com/Standards/ANSI_SCTE%20165-2%202016.pdf",
"title": "ANSI/SCTE 165-2 2016: IPCablecom 1.5 Part 2: Audio/Video Codecs",
"publisher": "SCTE",
"source": "https://dashifspecref.blob.core.windows.net/scte/scte.json?st=2019-04-01T00%3A00%3A00Z&se=2039-04-01T00%3A00%3A00Z&sp=rl&sv=2018-03-28&sr=b&sig=eIrXcpSm6WkcgRNBgNKlyMnIUGWLwgTurzYy8K2WApI%3D"
},
"scte165-20": {
"href": "https://scte-cms-resource-storage.s3.amazonaws.com/ANSI_SCTE-165-20-2019-1575562492082.pdf",
"title": "ANSI/SCTE 165-20 2019: IPCablecom 1.5 Part 20: MTA Extension MIB",
"publisher": "SCTE",
"source": "https://dashifspecref.blob.core.windows.net/scte/scte.json?st=2019-04-01T00%3A00%3A00Z&se=2039-04-01T00%3A00%3A00Z&sp=rl&sv=2018-03-28&sr=b&sig=eIrXcpSm6WkcgRNBgNKlyMnIUGWLwgTurzYy8K2WApI%3D"
},
"scte165-21": {
"href": "https://scte-cms-resource-storage.s3.amazonaws.com/Standards/ANSI_SCTE%20165-21%202016.pdf",
"title": "ANSI/SCTE 165-21 2016: IPCablecom 1.5 Part 21: Signaling Extension MIB",
"publisher": "SCTE",
"source": "https://dashifspecref.blob.core.windows.net/scte/scte.json?st=2019-04-01T00%3A00%3A00Z&se=2039-04-01T00%3A00%3A00Z&sp=rl&sv=2018-03-28&sr=b&sig=eIrXcpSm6WkcgRNBgNKlyMnIUGWLwgTurzYy8K2WApI%3D"
},
"scte165-3": {
"href": "https://scte-cms-resource-storage.s3.amazonaws.com/Standards/ANSI_SCTE%20165-3%202016.pdf",
"title": "ANSI/SCTE 165-3 2016: IPCablecom 1.5 Part 3: Network-Based Call Signaling Protocol",
"publisher": "SCTE",
"source": "https://dashifspecref.blob.core.windows.net/scte/scte.json?st=2019-04-01T00%3A00%3A00Z&se=2039-04-01T00%3A00%3A00Z&sp=rl&sv=2018-03-28&sr=b&sig=eIrXcpSm6WkcgRNBgNKlyMnIUGWLwgTurzYy8K2WApI%3D"
},
"scte165-4": {
"aliasOf": "scte165-04"
},
"scte165-5": {
"aliasOf": "scte165-05"
},
"scte165-6": {
"aliasOf": "scte165-06"
},
"scte165-7": {
"aliasOf": "scte165-07"
},
"scte165-8": {
"aliasOf": "scte165-08"
},
"scte165-9": {
"aliasOf": "scte165-09"
},
"scte166": {
"href": "https://scte-cms-resource-storage.s3.amazonaws.com/ANSI_SCTE-166-2020-1603125492803.pdf",
"title": "ANSI/SCTE 166 2020: Flexure Method for Drop Cable Conditioning",
"publisher": "SCTE",
"source": "https://dashifspecref.blob.core.windows.net/scte/scte.json?st=2019-04-01T00%3A00%3A00Z&se=2039-04-01T00%3A00%3A00Z&sp=rl&sv=2018-03-28&sr=b&sig=eIrXcpSm6WkcgRNBgNKlyMnIUGWLwgTurzYy8K2WApI%3D"
},
"scte168-04": {
"aliasOf": "scte168-4"
},
"scte168-06": {
"aliasOf": "scte168-6"
},
"scte168-07": {
"aliasOf": "scte168-7"
},
"scte168-4": {
"href": "https://scte-cms-resource-storage.s3.amazonaws.com/ANSI_SCTE-168-4-2019-1575475524837.pdf",
"title": "ANSI/SCTE 168-4 2019: Recommended Practice for Transport Stream Verification Metrics",
"publisher": "SCTE",
"source": "https://dashifspecref.blob.core.windows.net/scte/scte.json?st=2019-04-01T00%3A00%3A00Z&se=2039-04-01T00%3A00%3A00Z&sp=rl&sv=2018-03-28&sr=b&sig=eIrXcpSm6WkcgRNBgNKlyMnIUGWLwgTurzYy8K2WApI%3D"
},
"scte168-6": {
"href": "https://scte-cms-resource-storage.s3.amazonaws.com/Standards/ANSI_SCTE%20168-6%202017.pdf",
"title": "ANSI/SCTE 168-6 2017: Recommended Practice for Monitoring Multimedia Distribution Quality",
"publisher": "SCTE",
"source": "https://dashifspecref.blob.core.windows.net/scte/scte.json?st=2019-04-01T00%3A00%3A00Z&se=2039-04-01T00%3A00%3A00Z&sp=rl&sv=2018-03-28&sr=b&sig=eIrXcpSm6WkcgRNBgNKlyMnIUGWLwgTurzYy8K2WApI%3D"
},
"scte168-7": {
"href": "https://scte-cms-resource-storage.s3.amazonaws.com/Standards/ANSI_SCTE%20168-7%202017.pdf",
"title": "ANSI/SCTE 168-7 2017: Recommended Practice for Transport Stream Verification in an IP Transport Network",
"publisher": "SCTE",
"source": "https://dashifspecref.blob.core.windows.net/scte/scte.json?st=2019-04-01T00%3A00%3A00Z&se=2039-04-01T00%3A00%3A00Z&sp=rl&sv=2018-03-28&sr=b&sig=eIrXcpSm6WkcgRNBgNKlyMnIUGWLwgTurzYy8K2WApI%3D"
},
"scte17": {
"href": "https://scte-cms-resource-storage.s3.amazonaws.com/Standards/ANSI_SCTE%2017%202018.pdf",
"title": "ANSI/SCTE 17 2018: Test Procedure for Carrier to Noise (C/N, CCN, CIN, CTN)",
"publisher": "SCTE",
"source": "https://dashifspecref.blob.core.windows.net/scte/scte.json?st=2019-04-01T00%3A00%3A00Z&se=2039-04-01T00%3A00%3A00Z&sp=rl&sv=2018-03-28&sr=b&sig=eIrXcpSm6WkcgRNBgNKlyMnIUGWLwgTurzYy8K2WApI%3D"
},
"scte170": {
"href": "https://scte-cms-resource-storage.s3.amazonaws.com/ANSI_SCTE-170-2020-1594838273659.pdf",
"title": "ANSI/SCTE 170 2020: Preparing an MDU Amplifier Extender Specification",
"publisher": "SCTE",
"source": "https://dashifspecref.blob.core.windows.net/scte/scte.json?st=2019-04-01T00%3A00%3A00Z&se=2039-04-01T00%3A00%3A00Z&sp=rl&sv=2018-03-28&sr=b&sig=eIrXcpSm6WkcgRNBgNKlyMnIUGWLwgTurzYy8K2WApI%3D"
},
"scte171": {
"href": "https://scte-cms-resource-storage.s3.amazonaws.com/Standards/ANSI_SCTE%20171%202016.pdf",
"title": "ANSI/SCTE 171 2016: Passive Network Device (NID) Enclosure Specification",
"publisher": "SCTE",
"source": "https://dashifspecref.blob.core.windows.net/scte/scte.json?st=2019-04-01T00%3A00%3A00Z&se=2039-04-01T00%3A00%3A00Z&sp=rl&sv=2018-03-28&sr=b&sig=eIrXcpSm6WkcgRNBgNKlyMnIUGWLwgTurzYy8K2WApI%3D"
},
"scte172": {
"href": "https://scte-cms-resource-storage.s3.amazonaws.com/Standards/ANSI_SCTE%20172%202017.pdf",
"title": "ANSI/SCTE 172 2017: Constraints On AVC and HEVC Structured Video Coding for Digital Program Insertion",
"publisher": "SCTE",
"source": "https://dashifspecref.blob.core.windows.net/scte/scte.json?st=2019-04-01T00%3A00%3A00Z&se=2039-04-01T00%3A00%3A00Z&sp=rl&sv=2018-03-28&sr=b&sig=eIrXcpSm6WkcgRNBgNKlyMnIUGWLwgTurzYy8K2WApI%3D"
},
"scte173-01": {
"aliasOf": "scte173-1"
},
"scte173-02": {
"aliasOf": "scte173-2"
},
"scte173-03": {
"aliasOf": "scte173-3"
},
"scte173-04": {
"aliasOf": "scte173-4"
},
"scte173-1": {
"href": "https://scte-cms-resource-storage.s3.amazonaws.com/Standards/ANSI_SCTE%20173-1%202017.pdf",
"title": "ANSI/SCTE 173-1 2017: Requirements for Preferential Telecommunications over IPCablecom Networks",
"publisher": "SCTE",
"source": "https://dashifspecref.blob.core.windows.net/scte/scte.json?st=2019-04-01T00%3A00%3A00Z&se=2039-04-01T00%3A00%3A00Z&sp=rl&sv=2018-03-28&sr=b&sig=eIrXcpSm6WkcgRNBgNKlyMnIUGWLwgTurzYy8K2WApI%3D"
},
"scte173-2": {
"href": "https://scte-cms-resource-storage.s3.amazonaws.com/Standards/ANSI_SCTE%20173-2%202017.pdf",
"title": "ANSI/SCTE 173-2 2017: Framework for Implementing Preferential Telecommunications in IPCablecom and IPCablecom2 Networks",
"publisher": "SCTE",
"source": "https://dashifspecref.blob.core.windows.net/scte/scte.json?st=2019-04-01T00%3A00%3A00Z&se=2039-04-01T00%3A00%3A00Z&sp=rl&sv=2018-03-28&sr=b&sig=eIrXcpSm6WkcgRNBgNKlyMnIUGWLwgTurzYy8K2WApI%3D"
},
"scte173-3": {
"href": "https://scte-cms-resource-storage.s3.amazonaws.com/Standards/ANSI_SCTE%20173-3%202017.pdf",
"title": "ANSI/SCTE 173-3 2017: Specification for Authentication in Preferential Telecommunications over IPCablecom2 Networks",
"publisher": "SCTE",
"source": "https://dashifspecref.blob.core.windows.net/scte/scte.json?st=2019-04-01T00%3A00%3A00Z&se=2039-04-01T00%3A00%3A00Z&sp=rl&sv=2018-03-28&sr=b&sig=eIrXcpSm6WkcgRNBgNKlyMnIUGWLwgTurzYy8K2WApI%3D"
},
"scte173-4": {
"href": "https://scte-cms-resource-storage.s3.amazonaws.com/Standards/ANSI_SCTE%20173-4%202017.pdf",
"title": "ANSI/SCTE 173-4 2017: Specification for Priority in Preferential Telecommunications over IPCablecom2 Networks",
"publisher": "SCTE",
"source": "https://dashifspecref.blob.core.windows.net/scte/scte.json?st=2019-04-01T00%3A00%3A00Z&se=2039-04-01T00%3A00%3A00Z&sp=rl&sv=2018-03-28&sr=b&sig=eIrXcpSm6WkcgRNBgNKlyMnIUGWLwgTurzYy8K2WApI%3D"
},
"scte174": {
"href": "https://scte-cms-resource-storage.s3.amazonaws.com/Standards/ANSI_SCTE%20174%202018.pdf",
"title": "ANSI/SCTE 174 2018: Radio Frequency over Glass Fiber-to-the-Home (RFoG) Specification Extension",
"publisher": "SCTE",
"source": "https://dashifspecref.blob.core.windows.net/scte/scte.json?st=2019-04-01T00%3A00%3A00Z&se=2039-04-01T00%3A00%3A00Z&sp=rl&sv=2018-03-28&sr=b&sig=eIrXcpSm6WkcgRNBgNKlyMnIUGWLwgTurzYy8K2WApI%3D"
},
"scte175": {
"href": "https://scte-cms-resource-storage.s3.amazonaws.com/Standards/ANSI_SCTE%20175%202017.pdf",
"title": "ANSI/SCTE 175 2017: Recommended Practice for Qualifying Network Devices for High Availability Streaming Video",
"publisher": "SCTE",
"source": "https://dashifspecref.blob.core.windows.net/scte/scte.json?st=2019-04-01T00%3A00%3A00Z&se=2039-04-01T00%3A00%3A00Z&sp=rl&sv=2018-03-28&sr=b&sig=eIrXcpSm6WkcgRNBgNKlyMnIUGWLwgTurzYy8K2WApI%3D"
},
"scte176": {
"href": "https://scte-cms-resource-storage.s3.amazonaws.com/ANSI_SCTE%20176%202019.pdf",
"title": "ANSI/SCTE 176 2019: Specification for 75 ohm 'MCX' Connector, Male & Female Interface",
"publisher": "SCTE",
"source": "https://dashifspecref.blob.core.windows.net/scte/scte.json?st=2019-04-01T00%3A00%3A00Z&se=2039-04-01T00%3A00%3A00Z&sp=rl&sv=2018-03-28&sr=b&sig=eIrXcpSm6WkcgRNBgNKlyMnIUGWLwgTurzYy8K2WApI%3D"
},
"scte177": {
"href": "https://scte-cms-resource-storage.s3.amazonaws.com/Standards/ANSI_SCTE%20177%202018.pdf",
"title": "ANSI/SCTE 177 2018: Specification for Braided 75 Ω, Mini-Series Quad Shield Coaxial Cable for CMTS and SDI cables",
"publisher": "SCTE",
"source": "https://dashifspecref.blob.core.windows.net/scte/scte.json?st=2019-04-01T00%3A00%3A00Z&se=2039-04-01T00%3A00%3A00Z&sp=rl&sv=2018-03-28&sr=b&sig=eIrXcpSm6WkcgRNBgNKlyMnIUGWLwgTurzYy8K2WApI%3D"
},
"scte178": {
"href": "https://scte-cms-resource-storage.s3.amazonaws.com/ANSI_SCTE-178-2019-1575562755225.pdf",
"title": "ANSI/SCTE 178 2019: Test Method for Cable Weld Integrity",
"publisher": "SCTE",
"source": "https://dashifspecref.blob.core.windows.net/scte/scte.json?st=2019-04-01T00%3A00%3A00Z&se=2039-04-01T00%3A00%3A00Z&sp=rl&sv=2018-03-28&sr=b&sig=eIrXcpSm6WkcgRNBgNKlyMnIUGWLwgTurzYy8K2WApI%3D"
},
"scte179": {
"href": "https://scte-cms-resource-storage.s3.amazonaws.com/SCTE-179-2020-1607975485991.pdf",
"title": "SCTE 179 2020: Recommended Practice Upgrading EAS to CAP Compliance",
"publisher": "SCTE",
"source": "https://dashifspecref.blob.core.windows.net/scte/scte.json?st=2019-04-01T00%3A00%3A00Z&se=2039-04-01T00%3A00%3A00Z&sp=rl&sv=2018-03-28&sr=b&sig=eIrXcpSm6WkcgRNBgNKlyMnIUGWLwgTurzYy8K2WApI%3D"
},
"scte18": {
"href": "https://scte-cms-resource-storage.s3.amazonaws.com/Standards/ANSI-J-STD-42-C-FINAL_pdf.pdf",
"title": "ANSI/SCTE 18 2018 (ANSI J-STD-42-C): Emergency Alert Messaging for Cable",
"publisher": "SCTE",
"source": "https://dashifspecref.blob.core.windows.net/scte/scte.json?st=2019-04-01T00%3A00%3A00Z&se=2039-04-01T00%3A00%3A00Z&sp=rl&sv=2018-03-28&sr=b&sig=eIrXcpSm6WkcgRNBgNKlyMnIUGWLwgTurzYy8K2WApI%3D"
},