blob: 6fa6cf42c2bc710f10dd789752b5943cf203701f [file] [log] [blame]
Matt Spinler10f3d932019-09-26 16:24:14 -05001{
2 "title": "PEL message registry schema",
3 "$id": "http://github.com/openbmc/phosphor-logging/extensions/openpower-pels/registry/schema/schema.json",
4 "description": "This schema describes JSON used for creating PELs from OpenBMC event logs.",
5 "type": "object",
6
7 "properties":
8 {
9 "PELs":
10 {
11 "title": "This is an array of entries that specify PEL fields for event logs",
12 "$ref": "#/definitions/pels"
13 }
14 },
15
16 "additionalProperties": false,
17 "minItems": 1,
18 "uniqueItems": true,
19
20 "definitions":
21 {
22 "pels":
23 {
24 "description": "Each entry in this array is for converting an event log to a PEL",
25 "type": "array",
26 "items":
27 {
28 "description": "The schema for a single event log registry entry",
29 "type": "object",
30 "properties":
31 {
32 "Name": {"$ref": "#/definitions/errorName" },
33
34 "SRC": {"$ref": "#/definitions/src" },
35
36 "Subsystem": {"$ref": "#/definitions/subsystem" },
37
Matt Spinler23970b02022-02-25 16:34:46 -060038 "PossibleSubsystems": {"$ref": "#/definitions/possibleSubsystems" },
39
Matt Spinler10f3d932019-09-26 16:24:14 -050040 "Severity": {"$ref": "#/definitions/severity" },
41
42 "MfgSeverity": {"$ref": "#/definitions/mfgSeverity" },
43
44 "EventScope": {"$ref": "#/definitions/eventScope" },
45
46 "EventType": {"$ref": "#/definitions/eventType" },
47
48 "ActionFlags": {"$ref": "#/definitions/actionFlags" },
49
50 "MfgActionFlags": {"$ref": "#/definitions/mfgActionFlags" },
51
52 "Documentation": {"$ref": "#/definitions/documentation" },
53
Matt Spinler9e819c72020-02-12 16:44:16 -060054 "ComponentID": {"$ref": "#/definitions/componentID" },
55
56 "CalloutsUsingAD": {"$ref": "#/definitions/calloutsUsingAD"},
57
58 "Callouts": {"$ref": "#/definitions/callouts"}
Matt Spinler10f3d932019-09-26 16:24:14 -050059 },
60
Matt Spinler23970b02022-02-25 16:34:46 -060061 "required": ["Name", "SRC", "Documentation"],
Matt Spinler9e819c72020-02-12 16:44:16 -060062 "additionalProperties": false,
63
64 "not":
65 {
66 "required": ["CalloutsUsingAD", "Callouts"]
Matt Spinler23970b02022-02-25 16:34:46 -060067 },
68
69 "oneOf":
70 [
71 {
72 "required": ["Subsystem"]
73 },
74 {
75 "required": ["PossibleSubsystems"]
76 }
77 ]
Matt Spinler10f3d932019-09-26 16:24:14 -050078 }
79 },
80
81 "errorName":
82 {
83 "description": "The 'Message' property of an OpenBMC event log",
84 "type": "string"
85 },
86
87 "componentID":
88 {
89 "description": "The component ID of the PEL creator, in the form 0xYY00. For BD SRCs, this is optional and if not present the component ID will be taken from the upper byte of the reason code.",
90 "type": "string",
91 "pattern": "^0x[0-9a-fA-F]{2}00$"
92 },
93
94 "src":
95 {
96 "description": "Contains fields describing the primary SRC embedded in the PEL",
97 "type": "object",
98
99 "properties":
100 {
101 "Type": {"$ref": "#/definitions/srcType" },
102
103 "ReasonCode": {"$ref": "#/definitions/reasonCode" },
104
105 "SymptomIDFields": {"$ref": "#/definitions/symptomID" },
106
107 "Words6To9": {"$ref": "#/definitions/srcWords6To9" },
108
109 "PowerFault": {"$ref": "#/definitions/powerFault" }
110 },
111
112 "required": ["ReasonCode", "Words6To9"],
113 "additionalProperties": false
114 },
115
116 "documentation":
117 {
118 "description": "This contains event documentation that will be used by tools and parsers.",
119 "type": "object",
120
121 "properties":
122 {
123 "Message": {"$ref": "#/definitions/docMessage" },
124
125 "MessageArgSources": {"$ref": "#/definitions/docMessageArgSources" },
126
127 "Description": {"$ref": "#/definitions/docDescription" },
128
129 "Notes": {"$ref": "#/definitions/docNotes" }
130
131 },
132 "additionalProperties": false,
133 "required": ["Message", "Description"]
134 },
135
136 "srcType":
137 {
138 "description": "The first byte of the SRC ASCII string. Optional and defaults to BD. The '11' SRC is only to be used for events related to power.",
139 "type": "string",
140 "enum": ["BD", "11"]
141 },
142
143 "docNotes":
144 {
145 "description": "Any notes/comments about the error. An array of strings for manual line wrapping. Optional.",
146 "type": "array",
147 "items":
148 {
149 "description": "Notes",
150 "type": "string"
151 }
152 },
153
154 "reasonCode":
155 {
156 "description": "String representation of the 2 byte reason code, like 0xABCD. The reason code is the 2nd half of the 8 character SRC ASCII String field, such as B1FFABCD.",
157 "type": "string",
158 "pattern": "^0x[0-9a-fA-F]{4}$",
159
160 "examples": [
161 "0x3355"
162 ]
163 },
164
165 "subsystem":
166 {
167 "description": "PEL subsystem enumeration. See the PEL spec for more detailed definitions.",
168 "type": "string",
169 "enum": ["processor", "processor_fru", "processor_chip",
170 "processor_unit", "processor_bus",
171
172 "memory", "memory_ctlr", "memory_bus", "memory_dimm",
173 "memory_fru", "external_cache",
174
175 "io", "io_hub", "io_bridge", "io_bus", "io_processor",
176 "io_hub_other", "phb",
177
178 "io_adapter", "io_adapter_comm", "io_device",
179 "io_device_dasd", "io_external_general",
180 "io_external_workstation", "io_storage_mezz",
181
182 "cec_hardware", "cec_sp_a", "cec_sp_b",
183 "cec_node_controller", "cec_vpd",
184 "cec_i2c", "cec_chip_iface", "cec_clocks", "cec_op_panel",
185 "cec_tod", "cec_storage_device", "cec_sp_hyp_iface",
186 "cec_service_network", "cec_sp_hostboot_iface",
187
188 "power", "power_supply", "power_control_hw", "power_fans",
189 "power_sequencer",
190
191 "others", "other_hmc", "other_test_tool", "other_media",
192 "other_multiple_subsystems", "other_na", "other_info_src",
193
194 "surv_hyp_lost_sp", "surv_sp_lost_hyp", "surv_sp_lost_hmc",
195 "surv_hmc_lost_lpar", "surv_hmc_lost_bpa",
196 "surv_hmc_lost_hmc",
197
198 "platform_firmware", "bmc_firmware", "hyp_firmware",
199 "partition_firmware", "slic_firmware", "spcn_firmware",
200 "bulk_power_firmware_side_a", "hmc_code_firmware",
201 "bulk_power_firmware_side_b", "virtual_sp", "hostboot",
202 "occ",
203
204 "software", "os_software", "xpf_software", "app_software",
205
206 "ext_env", "input_power_source", "ambient_temp",
207 "user_error", "corrosion"]
208 },
209
Matt Spinler23970b02022-02-25 16:34:46 -0600210 "possibleSubsystems":
211 {
212 "description": "Required when the PEL creator uses PEL_SUBSYSTEM in the AdditionalData property to pass in the subsystem. Used by scripts that generate documentation to build all possible SRC ASCII strings for this error.",
213 "type": "array",
214 "items":
215 {
216 "$ref": "#/definitions/subsystem"
217 },
218 "minItems": 1,
219 "uniqueItems": true
220 },
221
Matt Spinler17952d92020-04-10 13:50:31 -0500222 "systemAndSeverity":
223 {
224 "description": "A severity entry that has an optional system type qualifier. Used when the severity needs to be based on the system type.",
225 "type": "object",
226 "properties":
227 {
228 "System": { "$ref": "#/definitions/system" },
229 "SevValue": { "$ref": "#/definitions/severityTypes" }
230 },
231 "additionalProperties": false,
232 "required": ["SevValue"]
233 },
234
Matt Spinler10f3d932019-09-26 16:24:14 -0500235 "severity":
236 {
Matt Spinler17952d92020-04-10 13:50:31 -0500237 "description": "PEL severity field. Optional. If not provided, it will use the event log severity. It can either be an enum of the severity value, or an array of them that is based on system type, where an entry without a system type acts as the catch all.",
238 "oneOf":
239 [
240 {
241 "$ref": "#/definitions/severityTypes"
242 },
243 {
244 "type": "array",
245 "items":
246 {
247 "$ref": "#/definitions/systemAndSeverity"
248 },
249 "minItems": 1,
250 "uniqueItems": true
251 }
252 ],
253
254 "examples":
255 [
256 "unrecoverable",
257
258 [
259 {
260 "System": "systemA",
261 "SevValue": "predictive"
262 },
263 {
264 "SevValue": "unrecoverable"
265 }
266 ]
267 ]
268
269 },
270
271 "severityTypes":
272 {
273 "description": "PEL severity enumeration. See the PEL spec for more detailed definitions.",
Matt Spinler10f3d932019-09-26 16:24:14 -0500274 "type": "string",
275
276 "enum": ["non_error",
277
278 "recovered",
279
280 "predictive", "predictive_degraded_perf",
281 "predictive_reboot", "predictive_reboot_degraded",
282 "predictive_redundancy_loss",
283
284 "unrecoverable", "unrecoverable_degraded_perf",
285 "unrecoverable_redundancy_loss",
286 "unrecoverable_redundancy_loss_perf",
287 "unrecoverable_loss_of_function",
288
289 "critical", "critical_system_term",
290 "critical_imminent_failure",
291 "critical_partition_term",
292 "critical_partition_imminent_failure",
293
294 "diagnostic_error", "diagnostic_error_incorrect_results",
295
296 "symptom_recovered", "symptom_predictive",
297 "symptom_unrecoverable", "symptom_critical",
298 "symptom_diag_err"]
299 },
300
301 "mfgSeverity":
302 {
303 "description": "The PEL severity to use in manufacturing reporting mode",
304 "$ref": "#/definitions/severity"
305 },
306
307 "eventScope":
308 {
309 "description": "The event scope PEL field. Optional and defaults to entire_platform",
310 "type": "string",
311 "enum": ["entire_platform", "single_partition", "multiple_partitions",
Matt Spinlercc424542019-12-11 10:14:57 -0600312 "possibly_multiple_platforms"]
Matt Spinler10f3d932019-09-26 16:24:14 -0500313 },
314
315 "eventType":
316 {
317 "description": "The event type PEL field. Optional and defaults to na",
318 "type": "string",
319 "enum": ["na", "misc_information_only", "tracing_event",
Matt Spinler6b3490a2021-01-20 10:48:26 -0600320 "dump_notification", "env_normal"]
Matt Spinler10f3d932019-09-26 16:24:14 -0500321 },
322
323 "powerFault":
324 {
325 "description": "The Power Fault SRC field (bit 6 in byte 1 of header). Optional and defaults to false",
326 "type": "boolean"
327 },
328
329 "actionFlags":
330 {
331 "description": "The action flags Private Header PEL field",
332 "type": "array",
333 "items":
334 {
335 "description": "List of action flags",
336 "type": "string",
337 "enum": ["service_action", "hidden", "report", "dont_report",
338 "call_home", "isolation_incomplete", "termination"]
339 }
340 },
341
342 "mfgActionFlags":
343 {
344 "description": "The PEL action flags to use in manufacturing reporting mode",
345 "$ref": "#/definitions/actionFlags"
346 },
347
348 "docDescription":
349 {
350 "description": "This is a higher level description of the error. It is required by the Redfish schema to generate a Redfish message entry, but is not used in Redfish or PEL output.",
351 "type": "string"
352 },
353
354 "docMessage":
355 {
356 "description": "The error message. This will show up in parsed PELs, and in the Redfish event logs. It can contain placeholders for numeric values using %1, %2, etc, that come from the SRC words 6-9 as defined by the MessageArgSources property.",
357 "type": "string",
358 "examples": [
359 {"Message": "The code update from level %1 to %2 failed" }
360 ]
361 },
362
363 "docMessageArgSources":
364 {
365 "description": "The SRC word 6-9 to use as the source of the numeric arguments that will be substituted into any placeholder in the Message field. Only required if there are arguments to substitute.",
366 "type": "array",
367 "items":
368 {
369 "type": "string",
370 "enum": ["SRCWord6", "SRCWord7", "SRCWord8", "SRCWord9"]
371 },
372 "additionalItems": false
373 },
374
375 "symptomID":
376 {
377 "description": "Defines a custom Symptom ID, to be appended to the ASCII string word and separated by underscores. The maximum size of the Symptom ID field is 80 characters. The default is ASCIISTRING_SRCWord3 (e.g. B1103500_12345678).",
378 "type": "array",
379 "items":
380 {
381 "type": "string",
382 "enum": ["SRCWord3", "SRCWord4", "SRCWord5", "SRCWord6",
383 "SRCWord7", "SRCWord8", "SRCWord9"]
384 },
385 "minItems": 1,
386 "maxItems": 8,
387 "uniqueItems": true,
388
389 "examples": [
390 ["SRCWord3", "SRCWord6"]
391 ]
392 },
393
394 "srcWords6To9":
395 {
396 "description": "This details what the user defined SRC hex words (6-9) mean, and which AdditionalData properties to get them from. These will be shown in the PEL parser output. Must be present, but can be empty.",
397 "type": "object",
398 "patternProperties":
399 {
400 "^[6-9]$":
401 {
402 "type": "object",
403 "properties":
404 {
405 "Description":
406 {
407 "description": "What the value in the field represents.",
408 "type": "string"
409 },
410 "AdditionalDataPropSource":
411 {
412 "description": "Which AdditionalData property key to get the data from.",
413 "type": "string"
414 }
415 },
416
417 "additionalProperties": false
418 },
419
420 "examples":
421 {
422 "SRCWords6To9":
423 {
424 "6":
425 {
426 "Description": "Failing PSU number",
427 "AdditionalDataPropSource": "PSU_NUM"
428 }
429 }
430 }
431 },
432 "additionalProperties": false
Matt Spinler9e819c72020-02-12 16:44:16 -0600433 },
Matt Spinler10f3d932019-09-26 16:24:14 -0500434
Matt Spinler9e819c72020-02-12 16:44:16 -0600435 "adName":
436 {
437 "description": "The name of the AdditionalData entry to use to index into the callout tables.",
438 "type": "string"
439 },
440
441 "adValue":
442 {
443 "description": "The value for the AdditionalData entry specified by ADName that indexes into the callout tables.",
444 "type": "string"
445 },
446
447 "locationCode":
448 {
449 "description": "A location code - the segment after the 'UTMS-' prefix. (e.g. P1-C2)",
450 "type": "string"
451 },
452
453 "priority":
454 {
455 "description": "The callout priority. See the PEL spec for priority definitions.",
456 "type": "string",
457 "enum": ["high", "medium", "low", "medium_group_a",
458 "medium_group_b", "medium_group_c"]
459 },
460
461 "symbolicFRU":
462 {
Matt Spinlerd4086652020-04-08 15:36:22 -0500463 "description": "The symbolic FRU callout.",
Matt Spinler9e819c72020-02-12 16:44:16 -0600464 "type": "string",
Rashmica Guptab63f75b2021-08-18 20:54:21 +1000465 "enum": ["service_docs", "pwrsply", "air_mover", "pgood_part", "usb_pgood", "ambient_temp", "ambient_temp_back", "ambient_perf_loss", "ac_module", "fan_cable", "cable_continued", "altitude"]
Matt Spinlerd4086652020-04-08 15:36:22 -0500466 },
467
468 "symbolicFRUTrusted":
469 {
470 "description": "The symbolic FRU callout with a trusted location code. (Can light LEDs).",
471 "ref": "#/definitions/symbolicFRU"
Matt Spinler9e819c72020-02-12 16:44:16 -0600472 },
473
474 "procedure":
475 {
Matt Spinler578e0702020-03-13 09:40:43 -0500476 "description": "The maintenance procedure callout.",
Matt Spinler9e819c72020-02-12 16:44:16 -0600477 "type": "string",
Brandon Wyman1ba9ef12021-11-15 23:58:06 +0000478 "enum": ["bmc_code", "next_level_support", "sbe_code", "fsi_path", "power_overcurrent"]
Matt Spinler9e819c72020-02-12 16:44:16 -0600479 },
480
Matt Spinlerf00f9d02020-10-23 09:14:22 -0500481 "useInventoryLocCode":
482 {
483 "description": "Used along with SymbolicFRUTrusted to specify that the location code to use with the symbolic FRU is to be taken from the passed in CALLOUT_INVENTORY_PATH callout rather than being specified with LocCode.",
484 "type": "boolean"
485 },
486
Matt Spinler9e819c72020-02-12 16:44:16 -0600487 "calloutList":
488 {
Matt Spinlerd4086652020-04-08 15:36:22 -0500489 "description": "The list of FRU callouts to add to a PEL. If just LocCode is specified, it is a normal hardware FRU callout. If Procedure is specified, it is a procedure callout. If SymbolicFRU or SymbolicFRUTrusted are specified, it is a Symbolic FRU callout. SymbolicFRUTrusted also requires LocCode.",
Matt Spinler9e819c72020-02-12 16:44:16 -0600490 "type": "array",
491 "items":
492 {
493 "type": "object",
494 "properties":
495 {
496 "Priority": {"$ref": "#/definitions/priority" },
497 "LocCode": {"$ref": "#/definitions/locationCode" },
498 "SymbolicFRU": {"$ref": "#/definitions/symbolicFRU" },
Matt Spinlerd4086652020-04-08 15:36:22 -0500499 "SymbolicFRUTrusted": {"$ref": "#/definitions/symbolicFRUTrusted" },
Matt Spinlerf00f9d02020-10-23 09:14:22 -0500500 "Procedure": {"$ref": "#/definitions/procedure" },
501 "UseInventoryLocCode": {"$ref": "#/definitions/useInventoryLocCode" }
Matt Spinler9e819c72020-02-12 16:44:16 -0600502 },
503 "additionalProperties": false,
504 "required": ["Priority"],
505
Matt Spinlerd4086652020-04-08 15:36:22 -0500506 "oneOf":
Matt Spinler9e819c72020-02-12 16:44:16 -0600507 [
Matt Spinlerd4086652020-04-08 15:36:22 -0500508 {
509 "allOf":
510 [
511 { "required": ["LocCode"] },
512 { "not": { "required": ["SymbolicFRU"] }},
513 { "not": { "required": ["SymbolicFRUTrusted"] }},
Matt Spinlerf00f9d02020-10-23 09:14:22 -0500514 { "not": { "required": ["Procedure"] }},
515 { "not": { "required": ["UseInventoryLocCode"] }}
Matt Spinlerd4086652020-04-08 15:36:22 -0500516 ]
517 },
518 {
Matt Spinler9e819c72020-02-12 16:44:16 -0600519
Matt Spinlerd4086652020-04-08 15:36:22 -0500520 "allOf":
521 [
522 { "required": ["SymbolicFRU"] },
523 { "not": { "required": ["SymbolicFRUTrusted"] }},
Matt Spinlerf00f9d02020-10-23 09:14:22 -0500524 { "not": { "required": ["Procedure"] }},
525 { "not": { "required": ["UseInventoryLocCode"] }}
Matt Spinlerd4086652020-04-08 15:36:22 -0500526 ]
527 },
528
529 {
530 "allOf":
531 [
Matt Spinlerf00f9d02020-10-23 09:14:22 -0500532 { "required": ["SymbolicFRUTrusted", "LocCode"] },
Matt Spinlerd4086652020-04-08 15:36:22 -0500533 { "not": { "required": ["SymbolicFRU"] }},
Matt Spinlerf00f9d02020-10-23 09:14:22 -0500534 { "not": { "required": ["Procedure"] }},
535 { "not": { "required": ["UseInventoryLocCode"] }}
536 ]
537 },
538
539 {
540 "allOf":
541 [
542 { "required": ["SymbolicFRUTrusted", "UseInventoryLocCode"] },
543 { "not": { "required": ["SymbolicFRU"] }},
544 { "not": { "required": ["Procedure"] }},
545 { "not": { "required": ["LocCode"] }}
Matt Spinlerd4086652020-04-08 15:36:22 -0500546 ]
547 },
548
549 {
550 "allOf":
551 [
552 { "required": ["Procedure"] },
553 { "not": { "required": ["SymbolicFRU"] }},
554 { "not": { "required": ["SymbolicFRUTrusted"] }},
Matt Spinlerf00f9d02020-10-23 09:14:22 -0500555 { "not": { "required": ["LocCode"] }},
556 { "not": { "required": ["UseInventoryLocCode"] }}
Matt Spinlerd4086652020-04-08 15:36:22 -0500557 ]
558 }
559 ]
Matt Spinler9e819c72020-02-12 16:44:16 -0600560 },
561 "minItems": 1,
562 "maxItems": 10,
563
564 "examples":
565 [
566 {
567 "Priority": "high",
568 "LocCode": "P1"
569 },
570 {
571 "Priority": "medium",
572 "LocCode": "P2",
573 "SymbolicFRU": "PROCFRU"
574 },
575 {
576 "Priority": "low",
577 "Procedure": "SVCDOCS"
578 }
579 ]
580 },
581
582 "system":
583 {
584 "description": "The system type string, as specified by entity manger. It is used to index into different sections of the JSON.",
Matt Spinler17952d92020-04-10 13:50:31 -0500585 "type": "string",
586 "minLength": 1
Matt Spinler9e819c72020-02-12 16:44:16 -0600587 },
588
589 "callouts":
590 {
591 "description": "This contains callouts that can vary based on system type. Each entry contains an optional System property and a required CalloutList property. If the System property is left out it indicates that the CalloutList callouts are valid for every system type, unless there is another Callouts entry that has a matching System property, in which case that entry is valid.",
592 "type": "array",
593 "items":
594 {
595 "type": "object",
596
597 "properties":
598 {
599 "System": {"$ref": "#/definitions/system" },
600 "CalloutList": {"$ref": "#/definitions/calloutList" }
601 },
602 "required": ["CalloutList"],
603 "additionalProperties": false
604 },
605 "minItems": 1,
606 "maxItems": 10,
607
608 "examples":
609 [
610 [
611 {
612 "System": "system1",
613 "CalloutList": [{"Priority": "high", "LocCode": "P1"}]
614 },
615 {
616 "CalloutList": [{"Priority": "high", "Procedure": "NEXTLVL"}]
617 }
618 ]
619 ]
620 },
621
622 "calloutsWithTheirADValues":
623 {
624 "description": "This contains callouts along with the AdditionalData value used to select an entry into the callout list. The AdditionalData entry was specified by ADName in the CalloutsUsingAD parent entry.",
625 "type": "array",
626
627 "items":
628 {
629 "type": "object",
630 "properties":
631 {
632 "ADValue": {"$ref": "#/definitions/adValue" },
633 "Callouts": {"$ref": "#/definitions/callouts" }
634 },
635 "additionalProperties": false,
636 "required": ["ADValue", "Callouts"]
637 },
638 "minItems": 1,
Matt Spinler9e819c72020-02-12 16:44:16 -0600639
640 "examples":
641 [
642 [
643 {
644 "ADValue": "0",
645 "Callouts":
646 [
647 {
648 "CalloutList": [{"Priority": "high", "LocCode": "P1"}]
649 }
650 ]
651 },
652 {
653 "ADValue": "1",
654 "Callouts":
655 [
656 {
657 "CalloutList": [{"Priority": "high", "LocCode": "P2"}]
658 }
659 ]
660 }
661 ]
662 ]
663 },
664
665 "calloutsUsingAD":
666 {
667 "description": "This contains the callouts that can be specified based on a value in the AdditionalData property..",
668 "type": "object",
669
670 "properties":
671 {
672 "ADName": {"$ref": "#/definitions/adName" },
673 "CalloutsWithTheirADValues":
674 {"$ref": "#/definitions/calloutsWithTheirADValues" }
675 },
676 "additionalProperties": false,
677 "required": ["ADName", "CalloutsWithTheirADValues"],
678
679 "examples":
680 [
681 {
682 "ADName": "PROC_NUM",
683 "CalloutsWithTheirADValues":
684 [
685 {
686 "ADValue": "0",
687 "Callouts":
688 [
689 {
690 "CalloutList": [{"Priority": "high", "LocCode": "P1"}]
691 }
692 ]
693 },
694 {
695 "ADValue": "1",
696 "Callouts":
697 [
698 {
699 "CalloutList": [{"Priority": "high", "LocCode": "P2"}]
700 }
701 ]
702 }
703 ]
704 }
705 ]
706 }
Matt Spinler10f3d932019-09-26 16:24:14 -0500707 }
708}