summaryrefslogtreecommitdiff
path: root/static/redfish/v1/JsonSchemas/Memory/Memory.json
blob: a794c5d8faf45dbb49c105706a18ba1e28b99d9a (plain)
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
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
{
    "$id": "http://redfish.dmtf.org/schemas/v1/Memory.v1_7_0.json",
    "$ref": "#/definitions/Memory",
    "$schema": "http://redfish.dmtf.org/schemas/v1/redfish-schema-v1.json",
    "copyright": "Copyright 2014-2018 DMTF. For the full DMTF copyright policy, see http://www.dmtf.org/about/policies/copyright",
    "definitions": {
        "Actions": {
            "additionalProperties": false,
            "description": "The available actions for this resource.",
            "longDescription": "This type shall contain the available actions for this resource.",
            "patternProperties": {
                "^([a-zA-Z_][a-zA-Z0-9_]*)?@(odata|Redfish|Message)\\.[a-zA-Z_][a-zA-Z0-9_.]+$": {
                    "description": "This property shall specify a valid odata or Redfish property.",
                    "type": [
                        "array",
                        "boolean",
                        "integer",
                        "number",
                        "null",
                        "object",
                        "string"
                    ]
                }
            },
            "properties": {
                "#Memory.DisablePassphrase": {
                    "$ref": "#/definitions/DisablePassphrase"
                },
                "#Memory.OverwriteUnit": {
                    "$ref": "#/definitions/OverwriteUnit"
                },
                "#Memory.SecureEraseUnit": {
                    "$ref": "#/definitions/SecureEraseUnit"
                },
                "#Memory.SetPassphrase": {
                    "$ref": "#/definitions/SetPassphrase"
                },
                "#Memory.UnlockUnit": {
                    "$ref": "#/definitions/UnlockUnit"
                },
                "Oem": {
                    "$ref": "#/definitions/OemActions",
                    "description": "This property contains the available OEM specific actions for this resource.",
                    "longDescription": "This property shall contain any additional OEM actions for this resource."
                }
            },
            "type": "object"
        },
        "BaseModuleType": {
            "enum": [
                "RDIMM",
                "UDIMM",
                "SO_DIMM",
                "LRDIMM",
                "Mini_RDIMM",
                "Mini_UDIMM",
                "SO_RDIMM_72b",
                "SO_UDIMM_72b",
                "SO_DIMM_16b",
                "SO_DIMM_32b",
                "Die"
            ],
            "enumDescriptions": {
                "Die": "A die within a package.",
                "LRDIMM": "Load Reduced.",
                "Mini_RDIMM": "Mini_RDIMM.",
                "Mini_UDIMM": "Mini_UDIMM.",
                "RDIMM": "Registered DIMM.",
                "SO_DIMM": "SO_DIMM.",
                "SO_DIMM_16b": "SO_DIMM_16b.",
                "SO_DIMM_32b": "SO_DIMM_32b.",
                "SO_RDIMM_72b": "SO_RDIMM_72b.",
                "SO_UDIMM_72b": "SO_UDIMM_72b.",
                "UDIMM": "UDIMM."
            },
            "enumVersionAdded": {
                "Die": "v1_7_0"
            },
            "type": "string"
        },
        "DisablePassphrase": {
            "additionalProperties": false,
            "description": "Disable passphrase for given regions.",
            "longDescription": "This action shall disaple the need for passphrases on the supplied region provided the supplied passphrase matches that of the region.",
            "parameters": {
                "Passphrase": {
                    "description": "Passphrase for doing the operation.",
                    "longDescription": "The value of this property shall be the passphrase used in this action.",
                    "requiredParameter": true,
                    "type": "string"
                },
                "RegionId": {
                    "description": "Memory region ID for which this action to be applied.",
                    "longDescription": "The value of this property shall be the Memory region ID for which this action to be applied.",
                    "requiredParameter": true,
                    "type": "string"
                }
            },
            "patternProperties": {
                "^([a-zA-Z_][a-zA-Z0-9_]*)?@(odata|Redfish|Message)\\.[a-zA-Z_][a-zA-Z0-9_.]+$": {
                    "description": "This property shall specify a valid odata or Redfish property.",
                    "type": [
                        "array",
                        "boolean",
                        "integer",
                        "number",
                        "null",
                        "object",
                        "string"
                    ]
                }
            },
            "properties": {
                "target": {
                    "description": "Link to invoke action",
                    "format": "uri",
                    "type": "string"
                },
                "title": {
                    "description": "Friendly action name",
                    "type": "string"
                }
            },
            "type": "object"
        },
        "ErrorCorrection": {
            "enum": [
                "NoECC",
                "SingleBitECC",
                "MultiBitECC",
                "AddressParity"
            ],
            "enumDescriptions": {
                "AddressParity": "Address Parity errors can be corrected.",
                "MultiBitECC": "Multi-bit Data errors can be corrected by ECC.",
                "NoECC": "No ECC available.",
                "SingleBitECC": "Single bit Data error can be corrected by ECC."
            },
            "type": "string"
        },
        "Links": {
            "additionalProperties": false,
            "description": "Contains references to other resources that are related to this resource.",
            "longDescription": "This type, as described by the Redfish Specification, shall contain references to resources that are related to, but not contained by (subordinate to), this resource.",
            "patternProperties": {
                "^([a-zA-Z_][a-zA-Z0-9_]*)?@(odata|Redfish|Message)\\.[a-zA-Z_][a-zA-Z0-9_.]+$": {
                    "description": "This property shall specify a valid odata or Redfish property.",
                    "type": [
                        "array",
                        "boolean",
                        "integer",
                        "number",
                        "null",
                        "object",
                        "string"
                    ]
                }
            },
            "properties": {
                "Chassis": {
                    "$ref": "http://redfish.dmtf.org/schemas/v1/Chassis.json#/definitions/Chassis",
                    "description": "A reference to the Chassis which contains this Memory.",
                    "longDescription": "The value of this property shall be a reference to a resource of type Chassis that represent the physical container associated with this Memory.",
                    "readonly": true,
                    "versionAdded": "v1_2_0"
                },
                "Oem": {
                    "$ref": "http://redfish.dmtf.org/schemas/v1/Resource.json#/definitions/Oem",
                    "description": "Oem extension object.",
                    "longDescription": "This object represents the Oem property.  All values for resources described by this schema shall comply to the requirements as described in the Redfish specification."
                }
            },
            "type": "object"
        },
        "Memory": {
            "additionalProperties": false,
            "description": "This is the schema definition for definition of a Memory and its configuration.",
            "longDescription": "This resource shall be used to represent the Memory in a Redfish implementation.",
            "patternProperties": {
                "^([a-zA-Z_][a-zA-Z0-9_]*)?@(odata|Redfish|Message)\\.[a-zA-Z_][a-zA-Z0-9_.]+$": {
                    "description": "This property shall specify a valid odata or Redfish property.",
                    "type": [
                        "array",
                        "boolean",
                        "integer",
                        "number",
                        "null",
                        "object",
                        "string"
                    ]
                }
            },
            "properties": {
                "@odata.context": {
                    "$ref": "http://redfish.dmtf.org/schemas/v1/odata.v4_0_3.json#/definitions/context"
                },
                "@odata.etag": {
                    "$ref": "http://redfish.dmtf.org/schemas/v1/odata.v4_0_3.json#/definitions/etag"
                },
                "@odata.id": {
                    "$ref": "http://redfish.dmtf.org/schemas/v1/odata.v4_0_3.json#/definitions/id"
                },
                "@odata.type": {
                    "$ref": "http://redfish.dmtf.org/schemas/v1/odata.v4_0_3.json#/definitions/type"
                },
                "Actions": {
                    "$ref": "#/definitions/Actions",
                    "description": "The available actions for this resource.",
                    "longDescription": "The Actions property shall contain the available actions for this resource."
                },
                "AllocationAlignmentMiB": {
                    "description": "The boundary which memory regions are allocated on, measured in mebibytes (MiB).",
                    "longDescription": "The value of this property shall be thealignment boundary on which memory regions are allocated, measured in MiB.",
                    "readonly": true,
                    "type": [
                        "integer",
                        "null"
                    ],
                    "units": "MiBy",
                    "versionAdded": "v1_2_0"
                },
                "AllocationIncrementMiB": {
                    "description": "The size of the smallest unit of allocation for a memory region in mebibytes (MiB).",
                    "longDescription": "The value of this property shall be the allocation increment for regions, measured in MiB.",
                    "readonly": true,
                    "type": [
                        "integer",
                        "null"
                    ],
                    "units": "MiBy",
                    "versionAdded": "v1_2_0"
                },
                "AllowedSpeedsMHz": {
                    "description": "Speed bins supported by this Memory.",
                    "items": {
                        "type": "integer"
                    },
                    "longDescription": "The value of this property shall be the speed supported by this Memory.",
                    "readonly": true,
                    "type": "array",
                    "units": "MHz"
                },
                "Assembly": {
                    "$ref": "http://redfish.dmtf.org/schemas/v1/Assembly.json#/definitions/Assembly",
                    "description": "A reference to the Assembly resource associated with this memory.",
                    "longDescription": "The value of this property shall be a link to a resource of type Assembly.",
                    "readonly": true,
                    "versionAdded": "v1_4_0"
                },
                "BaseModuleType": {
                    "anyOf": [
                        {
                            "$ref": "#/definitions/BaseModuleType"
                        },
                        {
                            "type": "null"
                        }
                    ],
                    "description": "The base module type of Memory.",
                    "longDescription": "The value of this property shall be the base module type of Memory.",
                    "readonly": true
                },
                "BusWidthBits": {
                    "description": "Bus Width in bits.",
                    "longDescription": "The value of this property shall be the bus width in bits.",
                    "readonly": true,
                    "type": [
                        "integer",
                        "null"
                    ]
                },
                "CacheSizeMiB": {
                    "description": "Total size of the cache portion memory in MiB.",
                    "longDescription": "The value of this property shall be the total size of the cache portion memory in MiB.",
                    "readonly": true,
                    "type": [
                        "integer",
                        "null"
                    ],
                    "units": "MiBy",
                    "versionAdded": "v1_4_0"
                },
                "CapacityMiB": {
                    "description": "Memory Capacity in mebibytes (MiB).",
                    "longDescription": "The value of this property shall be the Memory capacity in MiB.",
                    "readonly": true,
                    "type": [
                        "integer",
                        "null"
                    ],
                    "units": "MiBy"
                },
                "ConfigurationLocked": {
                    "description": "Indicates that the configuration of this memory has been locked.",
                    "longDescription": "The value of this property shall be the current configuration lock state of this memory. True shall indicate that the configuration is locked and cannot be altered. False shall indicate that the configuration is not locked and may be altered.",
                    "readonly": true,
                    "type": [
                        "boolean",
                        "null"
                    ],
                    "versionAdded": "v1_7_0"
                },
                "DataWidthBits": {
                    "description": "Data Width in bits.",
                    "longDescription": "The value of this property shall be the data width in bits.",
                    "readonly": true,
                    "type": [
                        "integer",
                        "null"
                    ]
                },
                "Description": {
                    "anyOf": [
                        {
                            "$ref": "http://redfish.dmtf.org/schemas/v1/Resource.json#/definitions/Description"
                        },
                        {
                            "type": "null"
                        }
                    ],
                    "readonly": true
                },
                "DeviceID": {
                    "description": "Device ID.",
                    "longDescription": "The value of this property shall be the device ID of the Memory.",
                    "readonly": true,
                    "type": [
                        "string",
                        "null"
                    ]
                },
                "DeviceLocator": {
                    "description": "Location of the Memory in the platform.",
                    "longDescription": "The value of this property shall be location of the Memory in the platform, typically marked in the silk screen.",
                    "readonly": true,
                    "type": [
                        "string",
                        "null"
                    ]
                },
                "ErrorCorrection": {
                    "anyOf": [
                        {
                            "$ref": "#/definitions/ErrorCorrection"
                        },
                        {
                            "type": "null"
                        }
                    ],
                    "description": "Error correction scheme supported for this memory.",
                    "longDescription": "The value of this property shall be the error correction scheme supported for this memory.",
                    "readonly": true
                },
                "FirmwareApiVersion": {
                    "description": "Version of API supported by the firmware.",
                    "longDescription": "The value of this property shall be the version of API supported by the firmware.",
                    "readonly": true,
                    "type": [
                        "string",
                        "null"
                    ]
                },
                "FirmwareRevision": {
                    "description": "Revision of firmware on the Memory controller.",
                    "longDescription": "The value of this property shall be the revision of firmware on the Memory controller.",
                    "readonly": true,
                    "type": [
                        "string",
                        "null"
                    ]
                },
                "FunctionClasses": {
                    "description": "Function Classes by the Memory.",
                    "items": {
                        "type": "string"
                    },
                    "longDescription": "The value of this property shall be the function classes by the Memory.",
                    "readonly": true,
                    "type": "array"
                },
                "Id": {
                    "$ref": "http://redfish.dmtf.org/schemas/v1/Resource.json#/definitions/Id",
                    "readonly": true
                },
                "IsRankSpareEnabled": {
                    "description": "Rank spare enabled status.",
                    "longDescription": "The value of this property shall be true if a rank spare is enabled for this Memory.",
                    "readonly": true,
                    "type": [
                        "boolean",
                        "null"
                    ]
                },
                "IsSpareDeviceEnabled": {
                    "description": "Spare device enabled status.",
                    "longDescription": "The value of this property shall be true if a spare device is enabled for this Memory.",
                    "readonly": true,
                    "type": [
                        "boolean",
                        "null"
                    ]
                },
                "Links": {
                    "$ref": "#/definitions/Links",
                    "description": "Contains references to other resources that are related to this resource.",
                    "longDescription": "The Links property, as described by the Redfish Specification, shall contain references to resources that are related to, but not contained by (subordinate to), this resource.",
                    "versionAdded": "v1_2_0"
                },
                "Location": {
                    "$ref": "http://redfish.dmtf.org/schemas/v1/Resource.json#/definitions/Location",
                    "description": "The Location of the memory.",
                    "longDescription": "This property shall contain location information of the associated memory.",
                    "versionAdded": "v1_4_0"
                },
                "LogicalSizeMiB": {
                    "description": "Total size of the logical memory in MiB.",
                    "longDescription": "The value of this property shall be the total size of the logical memory in MiB.",
                    "readonly": true,
                    "type": [
                        "integer",
                        "null"
                    ],
                    "units": "MiBy",
                    "versionAdded": "v1_4_0"
                },
                "Manufacturer": {
                    "description": "The Memory manufacturer.",
                    "longDescription": "This property shall contain a string which identifies the manufacturer of the Memory.",
                    "readonly": true,
                    "type": [
                        "string",
                        "null"
                    ]
                },
                "MaxTDPMilliWatts": {
                    "description": "Maximum TDPs in milli Watts.",
                    "items": {
                        "type": "integer"
                    },
                    "longDescription": "The value of this property shall be the maximum power budgets supported by the Memory in milli Watts.",
                    "readonly": true,
                    "type": "array",
                    "units": "mW"
                },
                "MemoryDeviceType": {
                    "anyOf": [
                        {
                            "$ref": "#/definitions/MemoryDeviceType"
                        },
                        {
                            "type": "null"
                        }
                    ],
                    "description": "Type details of the Memory.",
                    "longDescription": "The value of this property shall be the Memory Device Type as defined by SMBIOS.",
                    "readonly": true
                },
                "MemoryLocation": {
                    "$ref": "#/definitions/MemoryLocation",
                    "description": "Memory connection information to sockets and memory controllers.",
                    "longDescription": "This object shall contain properties which describe the Memory connection information to sockets and memory controllers."
                },
                "MemoryMedia": {
                    "description": "Media of this Memory.",
                    "items": {
                        "$ref": "#/definitions/MemoryMedia"
                    },
                    "longDescription": "The value of this property shall be the media types of this Memory.",
                    "readonly": true,
                    "type": "array"
                },
                "MemorySubsystemControllerManufacturerID": {
                    "description": "The manufacturer ID of the memory subsystem controller of this memory module.",
                    "longDescription": "The value of this property shall be the two byte manufacturer ID of the memory subsystem controller of this memory module as defined by JEDEC in JEP-106.",
                    "pattern": "^0[xX](([a-fA-F]|[0-9]){2}){2}$",
                    "readonly": true,
                    "type": [
                        "string",
                        "null"
                    ],
                    "versionAdded": "v1_3_0"
                },
                "MemorySubsystemControllerProductID": {
                    "description": "The product ID of the memory subsystem controller of this memory module.",
                    "longDescription": "The value of this property shall be the two byte product ID of the memory subsystem controller of this memory module as defined by the manufacturer.",
                    "pattern": "^0[xX](([a-fA-F]|[0-9]){2}){2}$",
                    "readonly": true,
                    "type": [
                        "string",
                        "null"
                    ],
                    "versionAdded": "v1_3_0"
                },
                "MemoryType": {
                    "anyOf": [
                        {
                            "$ref": "#/definitions/MemoryType"
                        },
                        {
                            "type": "null"
                        }
                    ],
                    "description": "The type of Memory.",
                    "longDescription": "The value of this property shall be the type of Memory represented by this resource.",
                    "readonly": true
                },
                "Metrics": {
                    "$ref": "http://redfish.dmtf.org/schemas/v1/MemoryMetrics.json#/definitions/MemoryMetrics",
                    "description": "A reference to the Metrics associated with this Memory.",
                    "longDescription": "A reference to the Metrics associated with this Memory.",
                    "readonly": true
                },
                "ModuleManufacturerID": {
                    "description": "The manufacturer ID of this memory module.",
                    "longDescription": "The value of this property shall be the two byte manufacturer ID of this memory module as defined by JEDEC in JEP-106.",
                    "pattern": "^0[xX](([a-fA-F]|[0-9]){2}){2}$",
                    "readonly": true,
                    "type": [
                        "string",
                        "null"
                    ],
                    "versionAdded": "v1_3_0"
                },
                "ModuleProductID": {
                    "description": "The product ID of this memory module.",
                    "longDescription": "The value of this property shall be the two byte product ID of this memory module as defined by the manufacturer.",
                    "pattern": "^0[xX](([a-fA-F]|[0-9]){2}){2}$",
                    "readonly": true,
                    "type": [
                        "string",
                        "null"
                    ],
                    "versionAdded": "v1_3_0"
                },
                "Name": {
                    "$ref": "http://redfish.dmtf.org/schemas/v1/Resource.json#/definitions/Name",
                    "readonly": true
                },
                "NonVolatileSizeMiB": {
                    "description": "Total size of the non-volatile portion memory in MiB.",
                    "longDescription": "The value of this property shall be the total size of the non-volatile portion memory in MiB.",
                    "readonly": true,
                    "type": [
                        "integer",
                        "null"
                    ],
                    "units": "MiBy",
                    "versionAdded": "v1_4_0"
                },
                "Oem": {
                    "$ref": "http://redfish.dmtf.org/schemas/v1/Resource.json#/definitions/Oem",
                    "description": "This is the manufacturer/provider specific extension moniker used to divide the Oem object into sections.",
                    "longDescription": "The value of this string shall be of the format for the reserved word *Oem*."
                },
                "OperatingMemoryModes": {
                    "description": "Memory modes supported by the Memory.",
                    "items": {
                        "$ref": "#/definitions/OperatingMemoryModes"
                    },
                    "longDescription": "The value of this property shall be the memory modes supported by the Memory.",
                    "readonly": true,
                    "type": "array"
                },
                "OperatingSpeedMhz": {
                    "description": "Operating speed of Memory in MHz or MT/s as appropriate.",
                    "longDescription": "The value of this property shall be the operating speed of Memory in MHz or MT/s (mega-transfers per second) as reported by the memory device. Memory devices which operate at their bus speed shall report the operating speed in MHz (bus speed), while memory device which transfer data faster than their bus speed (e.g. DDR memory) shall report the operating speed in MT/s (mega-transfers/second). In any case, the reported value shall match the conventionally reported values for the technology utilized by the memory device.",
                    "readonly": true,
                    "type": [
                        "integer",
                        "null"
                    ],
                    "units": "MHz"
                },
                "PartNumber": {
                    "description": "The product part number of this device.",
                    "longDescription": "This property shall indicate the part number as provided by the manufacturer of this Memory.",
                    "readonly": true,
                    "type": [
                        "string",
                        "null"
                    ]
                },
                "PersistentRegionNumberLimit": {
                    "description": "Total number of persistent regions this Memory can support.",
                    "longDescription": "The value of this property shall be the total number of persistent regions this Memory can support.",
                    "readonly": true,
                    "type": [
                        "integer",
                        "null"
                    ],
                    "versionAdded": "v1_2_0"
                },
                "PersistentRegionSizeLimitMiB": {
                    "description": "Total size of persistent regions in mebibytes (MiB).",
                    "longDescription": "The value of this property shall be the total size of persistent regions in MiB.",
                    "readonly": true,
                    "type": [
                        "integer",
                        "null"
                    ],
                    "units": "MiBy"
                },
                "PersistentRegionSizeMaxMiB": {
                    "description": "Maximum size of a single persistent region in mebibytes (MiB).",
                    "longDescription": "The value of this property shall be the maximum size of a single persistent regions in MiB.",
                    "readonly": true,
                    "type": [
                        "integer",
                        "null"
                    ],
                    "units": "MiBy",
                    "versionAdded": "v1_2_0"
                },
                "PowerManagementPolicy": {
                    "$ref": "#/definitions/PowerManagementPolicy",
                    "description": "Power management policy information.",
                    "longDescription": "This object shall contain properties which describe the power management policy for the current resource."
                },
                "RankCount": {
                    "description": "Number of ranks available in the Memory.",
                    "longDescription": "The value of this property shall be number of ranks available in the Memory. The ranks could be used for spare or interleave.",
                    "readonly": true,
                    "type": [
                        "integer",
                        "null"
                    ]
                },
                "Regions": {
                    "description": "Memory regions information within the Memory.",
                    "items": {
                        "$ref": "#/definitions/RegionSet"
                    },
                    "longDescription": "The value of this property shall be the memory region information within the Memory.",
                    "type": "array"
                },
                "SecurityCapabilities": {
                    "$ref": "#/definitions/SecurityCapabilities",
                    "description": "This object contains security capabilities of the Memory.",
                    "longDescription": "This object shall contain properties which describe the security capabilities of the Memory."
                },
                "SecurityState": {
                    "anyOf": [
                        {
                            "$ref": "#/definitions/SecurityStates"
                        },
                        {
                            "type": "null"
                        }
                    ],
                    "description": "The current security state of this Memory.",
                    "longDescription": "The value of this property shall be the current security state of this memory.",
                    "readonly": false,
                    "versionAdded": "v1_7_0"
                },
                "SerialNumber": {
                    "description": "The product serial number of this device.",
                    "longDescription": "This property shall indicate the serial number as provided by the manufacturer of this Memory.",
                    "readonly": true,
                    "type": [
                        "string",
                        "null"
                    ]
                },
                "SpareDeviceCount": {
                    "description": "Number of unused spare devices available in the Memory.",
                    "longDescription": "The value of this property shall be the number of unused spare devices available in the Memory. If memory devices fails, the spare device could be used.",
                    "readonly": true,
                    "type": [
                        "integer",
                        "null"
                    ]
                },
                "Status": {
                    "$ref": "http://redfish.dmtf.org/schemas/v1/Resource.json#/definitions/Status",
                    "description": "This property describes the status and health of the resource and its children.",
                    "longDescription": "This property shall contain any status or health properties of the resource.",
                    "versionAdded": "v1_1_0"
                },
                "SubsystemDeviceID": {
                    "description": "Subsystem Device ID.",
                    "longDescription": "The value of this property shall be the subsystem Device ID of the Memory.",
                    "readonly": true,
                    "type": [
                        "string",
                        "null"
                    ]
                },
                "SubsystemVendorID": {
                    "description": "SubSystem Vendor ID.",
                    "longDescription": "The value of this property shall be the subsystem Vendor ID of the Memory.",
                    "readonly": true,
                    "type": [
                        "string",
                        "null"
                    ]
                },
                "VendorID": {
                    "description": "Vendor ID.",
                    "longDescription": "The value of this property shall be the vendor ID of the Memory.",
                    "readonly": true,
                    "type": [
                        "string",
                        "null"
                    ]
                },
                "VolatileRegionNumberLimit": {
                    "description": "Total number of volatile regions this Memory can support.",
                    "longDescription": "The value of this property shall be the total number of volatile regions this Memory can support.",
                    "readonly": true,
                    "type": [
                        "integer",
                        "null"
                    ],
                    "versionAdded": "v1_2_0"
                },
                "VolatileRegionSizeLimitMiB": {
                    "description": "Total size of volatile regions in mebibytes (MiB).",
                    "longDescription": "The value of this property shall be the total size of volatile regions in MiB.",
                    "readonly": true,
                    "type": [
                        "integer",
                        "null"
                    ],
                    "units": "MiBy"
                },
                "VolatileRegionSizeMaxMiB": {
                    "description": "Maximum size of a single volatile region in mebibytes (MiB).",
                    "longDescription": "The value of this property shall be the maximum size of a single volatile regions in MiB.",
                    "readonly": true,
                    "type": [
                        "integer",
                        "null"
                    ],
                    "units": "MiBy",
                    "versionAdded": "v1_2_0"
                },
                "VolatileSizeMiB": {
                    "description": "Total size of the volitile portion memory in MiB.",
                    "longDescription": "The value of this property shall be the total size of the volatile portion memory in MiB.",
                    "readonly": true,
                    "type": [
                        "integer",
                        "null"
                    ],
                    "units": "MiBy",
                    "versionAdded": "v1_4_0"
                }
            },
            "required": [
                "@odata.id",
                "@odata.type",
                "Id",
                "Name"
            ],
            "type": "object"
        },
        "MemoryClassification": {
            "enum": [
                "Volatile",
                "ByteAccessiblePersistent",
                "Block"
            ],
            "enumDescriptions": {
                "Block": "Block accesible memory.",
                "ByteAccessiblePersistent": "Byte accessible persistent memory.",
                "Volatile": "Volatile memory."
            },
            "type": "string"
        },
        "MemoryDeviceType": {
            "enum": [
                "DDR",
                "DDR2",
                "DDR3",
                "DDR4",
                "DDR4_SDRAM",
                "DDR4E_SDRAM",
                "LPDDR4_SDRAM",
                "DDR3_SDRAM",
                "LPDDR3_SDRAM",
                "DDR2_SDRAM",
                "DDR2_SDRAM_FB_DIMM",
                "DDR2_SDRAM_FB_DIMM_PROBE",
                "DDR_SGRAM",
                "DDR_SDRAM",
                "ROM",
                "SDRAM",
                "EDO",
                "FastPageMode",
                "PipelinedNibble",
                "Logical",
                "HBM",
                "HBM2"
            ],
            "enumDescriptions": {
                "DDR": "DDR.",
                "DDR2": "DDR2.",
                "DDR2_SDRAM": "DDR2 SDRAM.",
                "DDR2_SDRAM_FB_DIMM": "DDR2 SDRAM FB_DIMM.",
                "DDR2_SDRAM_FB_DIMM_PROBE": "DDR2 SDRAM FB_DIMM PROBE.",
                "DDR3": "DDR3.",
                "DDR3_SDRAM": "DDR3 SDRAM.",
                "DDR4": "DDR4.",
                "DDR4E_SDRAM": "DDR4E SDRAM.",
                "DDR4_SDRAM": "DDR4 SDRAM.",
                "DDR_SDRAM": "DDR SDRAM.",
                "DDR_SGRAM": "DDR SGRAM.",
                "EDO": "EDO.",
                "FastPageMode": "Fast Page Mode.",
                "HBM": "High Bandwidth Memory.",
                "HBM2": "High Bandwidth Memory 2.",
                "LPDDR3_SDRAM": "LPDDR3 SDRAM.",
                "LPDDR4_SDRAM": "LPDDR4 SDRAM.",
                "Logical": "Logical Non-volatile device.",
                "PipelinedNibble": "Pipelined Nibble.",
                "ROM": "ROM.",
                "SDRAM": "SDRAM."
            },
            "enumVersionAdded": {
                "HBM": "v1_7_0",
                "HBM2": "v1_7_0",
                "Logical": "v1_4_0"
            },
            "type": "string"
        },
        "MemoryLocation": {
            "additionalProperties": false,
            "description": "Memory connection information to sockets and memory controllers.",
            "longDescription": "This type shall contain properties which describe the Memory connection information to sockets and memory controllers.",
            "patternProperties": {
                "^([a-zA-Z_][a-zA-Z0-9_]*)?@(odata|Redfish|Message)\\.[a-zA-Z_][a-zA-Z0-9_.]+$": {
                    "description": "This property shall specify a valid odata or Redfish property.",
                    "type": [
                        "array",
                        "boolean",
                        "integer",
                        "number",
                        "null",
                        "object",
                        "string"
                    ]
                }
            },
            "properties": {
                "Channel": {
                    "description": "Channel number in which Memory is connected.",
                    "longDescription": "Channel number in which Memory is connected.",
                    "readonly": true,
                    "type": [
                        "integer",
                        "null"
                    ]
                },
                "MemoryController": {
                    "description": "Memory controller number in which Memory is connected.",
                    "longDescription": "Memory controller number in which Memory is connected.",
                    "readonly": true,
                    "type": [
                        "integer",
                        "null"
                    ]
                },
                "Slot": {
                    "description": "Slot number in which Memory is connected.",
                    "longDescription": "Slot number in which Memory is connected.",
                    "readonly": true,
                    "type": [
                        "integer",
                        "null"
                    ]
                },
                "Socket": {
                    "description": "Socket number in which Memory is connected.",
                    "longDescription": "Socket number in which Memory is connected.",
                    "readonly": true,
                    "type": [
                        "integer",
                        "null"
                    ]
                }
            },
            "type": "object"
        },
        "MemoryMedia": {
            "enum": [
                "DRAM",
                "NAND",
                "Intel3DXPoint",
                "Proprietary"
            ],
            "enumDescriptions": {
                "DRAM": "DRAM media.",
                "Intel3DXPoint": "Intel 3D XPoint media.",
                "NAND": "NAND media.",
                "Proprietary": "Proprietary media."
            },
            "enumVersionAdded": {
                "Intel3DXPoint": "v1_7_0"
            },
            "type": "string"
        },
        "MemoryType": {
            "enum": [
                "DRAM",
                "NVDIMM_N",
                "NVDIMM_F",
                "NVDIMM_P",
                "IntelOptane"
            ],
            "enumDescriptions": {
                "DRAM": "The memory module is composed of volatile memory.",
                "IntelOptane": "The memory module is Intel Optane DC Persistent Memory and composed of a combination of non-volatile and volatile memory.",
                "NVDIMM_F": "The memory module is composed of non-volatile memory.",
                "NVDIMM_N": "The memory module is composed of volatile memory backed by non-volatile memory.",
                "NVDIMM_P": "The memory module is composed of a combination of non-volatile and volatile memory."
            },
            "enumLongDescriptions": {
                "DRAM": "This memory type shall represent volatile DRAM.",
                "IntelOptane": "This memory type shall represent Intel Optane DC Persistent Memory.",
                "NVDIMM_F": "This memory type shall represent NVDIMM_F as defined by JEDEC.",
                "NVDIMM_N": "This memory type shall represent NVDIMM_N as defined by JEDEC.",
                "NVDIMM_P": "This memory type shall represent NVDIMM_P as defined by JEDEC."
            },
            "enumVersionAdded": {
                "IntelOptane": "v1_6_0"
            },
            "type": "string"
        },
        "OemActions": {
            "additionalProperties": true,
            "description": "The available OEM specific actions for this resource.",
            "longDescription": "This type shall contain any additional OEM actions for this resource.",
            "patternProperties": {
                "^([a-zA-Z_][a-zA-Z0-9_]*)?@(odata|Redfish|Message)\\.[a-zA-Z_][a-zA-Z0-9_.]+$": {
                    "description": "This property shall specify a valid odata or Redfish property.",
                    "type": [
                        "array",
                        "boolean",
                        "integer",
                        "number",
                        "null",
                        "object",
                        "string"
                    ]
                }
            },
            "properties": {},
            "type": "object"
        },
        "OperatingMemoryModes": {
            "enum": [
                "Volatile",
                "PMEM",
                "Block"
            ],
            "enumDescriptions": {
                "Block": "Block accessible system memory.",
                "PMEM": "Persistent memory, byte accesible through system address space.",
                "Volatile": "Volatile memory."
            },
            "type": "string"
        },
        "OverwriteUnit": {
            "additionalProperties": false,
            "description": "This defines the action for securely erasing given regions using the NIST SP800-88 Purge: Overwrite.",
            "longDescription": "This action shall securely erase the supplied region provided the supplied passphrase matches that of the given region using the NIST SP800-88 Purge: Overwrite. Use the SecureEraseUnit method to perform NIST SP800-88 Purge: Cryptographic Erase.",
            "parameters": {
                "Passphrase": {
                    "description": "Passphrase for doing the operation.",
                    "longDescription": "The value of this property shall be the passphrase used in this action.",
                    "requiredParameter": true,
                    "type": "string"
                },
                "RegionId": {
                    "description": "Memory region ID for which this action to be applied.",
                    "longDescription": "The value of this property shall be the Memory region ID for which this action to be applied.",
                    "requiredParameter": true,
                    "type": "string"
                }
            },
            "patternProperties": {
                "^([a-zA-Z_][a-zA-Z0-9_]*)?@(odata|Redfish|Message)\\.[a-zA-Z_][a-zA-Z0-9_.]+$": {
                    "description": "This property shall specify a valid odata or Redfish property.",
                    "type": [
                        "array",
                        "boolean",
                        "integer",
                        "number",
                        "null",
                        "object",
                        "string"
                    ]
                }
            },
            "properties": {
                "target": {
                    "description": "Link to invoke action",
                    "format": "uri",
                    "type": "string"
                },
                "title": {
                    "description": "Friendly action name",
                    "type": "string"
                }
            },
            "type": "object",
            "versionAdded": "v1_6_0"
        },
        "PowerManagementPolicy": {
            "additionalProperties": false,
            "description": "Power management policy information.",
            "longDescription": "This type shall contain properties which describe the power management policy for the current resource.",
            "patternProperties": {
                "^([a-zA-Z_][a-zA-Z0-9_]*)?@(odata|Redfish|Message)\\.[a-zA-Z_][a-zA-Z0-9_.]+$": {
                    "description": "This property shall specify a valid odata or Redfish property.",
                    "type": [
                        "array",
                        "boolean",
                        "integer",
                        "number",
                        "null",
                        "object",
                        "string"
                    ]
                }
            },
            "properties": {
                "AveragePowerBudgetMilliWatts": {
                    "description": "Average power budget in milli watts.",
                    "longDescription": "Average power budget in milli watts.",
                    "readonly": true,
                    "type": [
                        "integer",
                        "null"
                    ],
                    "units": "mW"
                },
                "MaxTDPMilliWatts": {
                    "description": "Maximum TDP in milli watts.",
                    "longDescription": "Maximum TDP in milli watts.",
                    "readonly": true,
                    "type": [
                        "integer",
                        "null"
                    ],
                    "units": "mW"
                },
                "PeakPowerBudgetMilliWatts": {
                    "description": "Peak power budget in milli watts.",
                    "longDescription": "Peak power budget in milli watts.",
                    "readonly": true,
                    "type": [
                        "integer",
                        "null"
                    ],
                    "units": "mW"
                },
                "PolicyEnabled": {
                    "description": "Power management policy enabled status.",
                    "longDescription": "Power management policy enabled status.",
                    "readonly": true,
                    "type": [
                        "boolean",
                        "null"
                    ]
                }
            },
            "type": "object"
        },
        "RegionSet": {
            "additionalProperties": false,
            "description": "Memory region information within a Memory entity.",
            "longDescription": "This type shall describe the memory region information within a Memory entity.",
            "patternProperties": {
                "^([a-zA-Z_][a-zA-Z0-9_]*)?@(odata|Redfish|Message)\\.[a-zA-Z_][a-zA-Z0-9_.]+$": {
                    "description": "This property shall specify a valid odata or Redfish property.",
                    "type": [
                        "array",
                        "boolean",
                        "integer",
                        "number",
                        "null",
                        "object",
                        "string"
                    ]
                }
            },
            "properties": {
                "MemoryClassification": {
                    "anyOf": [
                        {
                            "$ref": "#/definitions/MemoryClassification"
                        },
                        {
                            "type": "null"
                        }
                    ],
                    "description": "Classification of memory occupied by the given memory region.",
                    "longDescription": "Classification of memory occupied by the given memory region.",
                    "readonly": true
                },
                "OffsetMiB": {
                    "description": "Offset with in the Memory that corresponds to the starting of this memory region in mebibytes (MiB).",
                    "longDescription": "Offset with in the Memory that corresponds to the starting of this memory region in MiB.",
                    "readonly": true,
                    "type": [
                        "integer",
                        "null"
                    ],
                    "units": "MiBy"
                },
                "PassphraseEnabled": {
                    "description": "Indicates if the passphrase is enabled for this region.",
                    "longDescription": "The value of this property shall be a boolean indicating if the passphrase is enabled for this region.",
                    "readonly": true,
                    "type": [
                        "boolean",
                        "null"
                    ],
                    "versionAdded": "v1_5_0"
                },
                "PassphraseState": {
                    "description": "State of the passphrase for this region.",
                    "longDescription": "State of the passphrase for this region.",
                    "readonly": true,
                    "type": [
                        "boolean",
                        "null"
                    ]
                },
                "RegionId": {
                    "description": "Unique region ID representing a specific region within the Memory.",
                    "longDescription": "Unique region ID representing a specific region within the Memory.",
                    "readonly": true,
                    "type": [
                        "string",
                        "null"
                    ]
                },
                "SizeMiB": {
                    "description": "Size of this memory region in mebibytes (MiB).",
                    "longDescription": "Size of this memory region in MiB.",
                    "readonly": true,
                    "type": [
                        "integer",
                        "null"
                    ],
                    "units": "MiBy"
                }
            },
            "type": "object"
        },
        "SecureEraseUnit": {
            "additionalProperties": false,
            "description": "This defines the action for securely erasing given regions using the NIST SP800-88 Purge: Cryptograhic Erase.",
            "longDescription": "This action shall securely erase the supplied region provided the supplied passphrase matches that of the given region using the NIST SP800-88 Purge: Cryptographic Erase. Use the OverwriteUnit method to perform NIST SP800-88 Purge: Overwrite.",
            "parameters": {
                "Passphrase": {
                    "description": "Passphrase for doing the operation.",
                    "longDescription": "The value of this property shall be the passphrase used in this action.",
                    "requiredParameter": true,
                    "type": "string"
                },
                "RegionId": {
                    "description": "Memory region ID for which this action to be applied.",
                    "longDescription": "The value of this property shall be the Memory region ID for which this action to be applied.",
                    "requiredParameter": true,
                    "type": "string"
                }
            },
            "patternProperties": {
                "^([a-zA-Z_][a-zA-Z0-9_]*)?@(odata|Redfish|Message)\\.[a-zA-Z_][a-zA-Z0-9_.]+$": {
                    "description": "This property shall specify a valid odata or Redfish property.",
                    "type": [
                        "array",
                        "boolean",
                        "integer",
                        "number",
                        "null",
                        "object",
                        "string"
                    ]
                }
            },
            "properties": {
                "target": {
                    "description": "Link to invoke action",
                    "format": "uri",
                    "type": "string"
                },
                "title": {
                    "description": "Friendly action name",
                    "type": "string"
                }
            },
            "type": "object"
        },
        "SecurityCapabilities": {
            "additionalProperties": false,
            "description": "This type contains security capabilities of a Memory entity.",
            "longDescription": "This type shall contain properties which describe the security capabilities of a Memory entity.",
            "patternProperties": {
                "^([a-zA-Z_][a-zA-Z0-9_]*)?@(odata|Redfish|Message)\\.[a-zA-Z_][a-zA-Z0-9_.]+$": {
                    "description": "This property shall specify a valid odata or Redfish property.",
                    "type": [
                        "array",
                        "boolean",
                        "integer",
                        "number",
                        "null",
                        "object",
                        "string"
                    ]
                }
            },
            "properties": {
                "ConfigurationLockCapable": {
                    "description": "Support for locking the configuration.",
                    "longDescription": "The value of this property shall indicate whether this memory supports the locking (freezing) of the configuration.",
                    "readonly": true,
                    "type": [
                        "boolean",
                        "null"
                    ],
                    "versionAdded": "v1_7_0"
                },
                "DataLockCapable": {
                    "description": "Support for data locking.",
                    "longDescription": "The value of this property shall indicate whether this memory supports the locking of data access.",
                    "readonly": true,
                    "type": [
                        "boolean",
                        "null"
                    ],
                    "versionAdded": "v1_7_0"
                },
                "MaxPassphraseCount": {
                    "description": "Maximum number of passphrases supported for this Memory.",
                    "longDescription": "Maximum number of passphrases supported for this Memory.",
                    "readonly": true,
                    "type": [
                        "integer",
                        "null"
                    ]
                },
                "PassphraseCapable": {
                    "description": "Memory passphrase set capability.",
                    "longDescription": "Memory passphrase set capability.",
                    "readonly": true,
                    "type": [
                        "boolean",
                        "null"
                    ]
                },
                "PassphraseLockLimit": {
                    "description": "Maximum number of incorrect passphrase attempts allowed before memory is locked.",
                    "longDescription": "The value of this property shall be the maximum number of incorrect passphase access attempts allowed before access to data is locked. A value of zero shall indicate that there is no limit to the number of attempts.",
                    "readonly": true,
                    "type": [
                        "integer",
                        "null"
                    ],
                    "versionAdded": "v1_7_0"
                },
                "SecurityStates": {
                    "description": "Security states supported by the Memory.",
                    "items": {
                        "$ref": "#/definitions/SecurityStates"
                    },
                    "longDescription": "Security states supported by the Memory.",
                    "readonly": true,
                    "type": "array"
                }
            },
            "type": "object"
        },
        "SecurityStates": {
            "enum": [
                "Enabled",
                "Disabled",
                "Unlocked",
                "Locked",
                "Frozen",
                "Passphraselimit"
            ],
            "enumDeprecated": {
                "Frozen": "This value has been deprecated in favor of using the ConfigurationLocked to indicate that the configuration has been frozen.",
                "Unlocked": "This value has been deprecated in favor of 'Enabled' to indicate normal security operation."
            },
            "enumDescriptions": {
                "Disabled": "Secure mode is disabled.",
                "Enabled": "Secure mode is enabled and access to the data is allowed.",
                "Frozen": "Secure state is frozen and can not be modified until reset.",
                "Locked": "Secure mode is enabled and access to the data is locked.",
                "Passphraselimit": "Number of attempts to unlock the Memory exceeded limit.",
                "Unlocked": "Secure mode is enabled and access to the data is unlocked."
            },
            "enumVersionDeprecated": {
                "Frozen": "v1_7_0",
                "Unlocked": "v1_7_0"
            },
            "type": "string"
        },
        "SetPassphrase": {
            "additionalProperties": false,
            "description": "Set passphrase for the given regions.",
            "longDescription": "This action shall apply the supplied passphrase to the supplied region.",
            "parameters": {
                "Passphrase": {
                    "description": "Passphrase for doing the operation.",
                    "longDescription": "The value of this property shall be the passphrase used in this action.",
                    "requiredParameter": true,
                    "type": "string"
                },
                "RegionId": {
                    "description": "Memory region ID for which this action to be applied.",
                    "longDescription": "The value of this property shall be the Memory region ID for which this action to be applied.",
                    "requiredParameter": true,
                    "type": "string"
                }
            },
            "patternProperties": {
                "^([a-zA-Z_][a-zA-Z0-9_]*)?@(odata|Redfish|Message)\\.[a-zA-Z_][a-zA-Z0-9_.]+$": {
                    "description": "This property shall specify a valid odata or Redfish property.",
                    "type": [
                        "array",
                        "boolean",
                        "integer",
                        "number",
                        "null",
                        "object",
                        "string"
                    ]
                }
            },
            "properties": {
                "target": {
                    "description": "Link to invoke action",
                    "format": "uri",
                    "type": "string"
                },
                "title": {
                    "description": "Friendly action name",
                    "type": "string"
                }
            },
            "type": "object"
        },
        "UnlockUnit": {
            "additionalProperties": false,
            "description": "This defines the action for unlocking given regions.",
            "longDescription": "This action shall apply the supplied passphrase to the supplied region for the purpose of unlocking the given regions.",
            "parameters": {
                "Passphrase": {
                    "description": "Passphrase for doing the operation.",
                    "longDescription": "The value of this property shall be the passphrase used in this actionn.",
                    "requiredParameter": true,
                    "type": "string"
                },
                "RegionId": {
                    "description": "Memory region ID for which this action to be applied.",
                    "longDescription": "The value of this property shall be the Memory region ID for which this action to be applied.",
                    "requiredParameter": true,
                    "type": "string"
                }
            },
            "patternProperties": {
                "^([a-zA-Z_][a-zA-Z0-9_]*)?@(odata|Redfish|Message)\\.[a-zA-Z_][a-zA-Z0-9_.]+$": {
                    "description": "This property shall specify a valid odata or Redfish property.",
                    "type": [
                        "array",
                        "boolean",
                        "integer",
                        "number",
                        "null",
                        "object",
                        "string"
                    ]
                }
            },
            "properties": {
                "target": {
                    "description": "Link to invoke action",
                    "format": "uri",
                    "type": "string"
                },
                "title": {
                    "description": "Friendly action name",
                    "type": "string"
                }
            },
            "type": "object"
        }
    },
    "owningEntity": "DMTF",
    "release": "2018.3",
    "title": "#Memory.v1_7_0.Memory"
}