Ed Tanous | 118b1c7 | 2018-09-13 13:45:51 -0700 | [diff] [blame] | 1 | { |
Gunnar Mills | 10f270b | 2021-05-19 15:34:06 -0500 | [diff] [blame^] | 2 | "$id": "http://redfish.dmtf.org/schemas/v1/Resource.v1_12_0.json", |
Ed Tanous | 530520e | 2019-01-02 13:41:37 -0800 | [diff] [blame] | 3 | "$schema": "http://redfish.dmtf.org/schemas/v1/redfish-schema-v1.json", |
Gunnar Mills | 10f270b | 2021-05-19 15:34:06 -0500 | [diff] [blame^] | 4 | "copyright": "Copyright 2014-2021 DMTF. For the full DMTF copyright policy, see http://www.dmtf.org/about/policies/copyright", |
Ed Tanous | 118b1c7 | 2018-09-13 13:45:51 -0700 | [diff] [blame] | 5 | "definitions": { |
Ed Tanous | 530520e | 2019-01-02 13:41:37 -0800 | [diff] [blame] | 6 | "ContactInfo": { |
| 7 | "additionalProperties": false, |
Gunnar Mills | a778c02 | 2020-05-12 12:20:36 -0500 | [diff] [blame] | 8 | "description": "Contact information for this resource.", |
| 9 | "longDescription": "This object shall contain contact information for an individual or organization responsible for this resource.", |
Ed Tanous | 530520e | 2019-01-02 13:41:37 -0800 | [diff] [blame] | 10 | "patternProperties": { |
Ed Tanous | cb10313 | 2019-10-08 11:34:22 -0700 | [diff] [blame] | 11 | "^([a-zA-Z_][a-zA-Z0-9_]*)?@(odata|Redfish|Message)\\.[a-zA-Z_][a-zA-Z0-9_]*$": { |
Ed Tanous | 530520e | 2019-01-02 13:41:37 -0800 | [diff] [blame] | 12 | "description": "This property shall specify a valid odata or Redfish property.", |
| 13 | "type": [ |
| 14 | "array", |
| 15 | "boolean", |
| 16 | "integer", |
| 17 | "number", |
| 18 | "null", |
| 19 | "object", |
| 20 | "string" |
| 21 | ] |
| 22 | } |
| 23 | }, |
| 24 | "properties": { |
| 25 | "ContactName": { |
| 26 | "description": "Name of this contact.", |
Gunnar Mills | a778c02 | 2020-05-12 12:20:36 -0500 | [diff] [blame] | 27 | "longDescription": "This property shall contain the name of a person or organization to contact for information about this resource.", |
Ed Tanous | 530520e | 2019-01-02 13:41:37 -0800 | [diff] [blame] | 28 | "readonly": false, |
| 29 | "type": [ |
| 30 | "string", |
| 31 | "null" |
Marri Devender Rao | d45d2d0 | 2019-01-21 10:11:34 -0600 | [diff] [blame] | 32 | ], |
| 33 | "versionAdded": "v1_7_0" |
Ed Tanous | 530520e | 2019-01-02 13:41:37 -0800 | [diff] [blame] | 34 | }, |
| 35 | "EmailAddress": { |
| 36 | "description": "Email address for this contact.", |
Gunnar Mills | a778c02 | 2020-05-12 12:20:36 -0500 | [diff] [blame] | 37 | "longDescription": "This property shall contain the email address for a person or organization to contact for information about this resource.", |
Ed Tanous | 530520e | 2019-01-02 13:41:37 -0800 | [diff] [blame] | 38 | "readonly": false, |
| 39 | "type": [ |
| 40 | "string", |
| 41 | "null" |
Marri Devender Rao | d45d2d0 | 2019-01-21 10:11:34 -0600 | [diff] [blame] | 42 | ], |
| 43 | "versionAdded": "v1_7_0" |
Ed Tanous | 530520e | 2019-01-02 13:41:37 -0800 | [diff] [blame] | 44 | }, |
| 45 | "PhoneNumber": { |
| 46 | "description": "Phone number for this contact.", |
Gunnar Mills | a778c02 | 2020-05-12 12:20:36 -0500 | [diff] [blame] | 47 | "longDescription": "This property shall contain the phone number for a person or organization to contact for information about this resource.", |
Ed Tanous | 530520e | 2019-01-02 13:41:37 -0800 | [diff] [blame] | 48 | "readonly": false, |
| 49 | "type": [ |
| 50 | "string", |
| 51 | "null" |
Marri Devender Rao | d45d2d0 | 2019-01-21 10:11:34 -0600 | [diff] [blame] | 52 | ], |
| 53 | "versionAdded": "v1_7_0" |
Ed Tanous | 530520e | 2019-01-02 13:41:37 -0800 | [diff] [blame] | 54 | } |
| 55 | }, |
| 56 | "type": "object" |
| 57 | }, |
Ed Tanous | 118b1c7 | 2018-09-13 13:45:51 -0700 | [diff] [blame] | 58 | "DurableNameFormat": { |
| 59 | "enum": [ |
| 60 | "NAA", |
| 61 | "iQN", |
| 62 | "FC_WWN", |
| 63 | "UUID", |
| 64 | "EUI", |
| 65 | "NQN", |
Asmitha Karunanithi | c8ccb77 | 2020-09-22 10:56:46 -0500 | [diff] [blame] | 66 | "NSID", |
| 67 | "NGUID" |
Ed Tanous | 118b1c7 | 2018-09-13 13:45:51 -0700 | [diff] [blame] | 68 | ], |
Gunnar Mills | 10f270b | 2021-05-19 15:34:06 -0500 | [diff] [blame^] | 69 | "enumDeprecated": { |
| 70 | "NSID": "This value has been deprecated due to its non-uniqueness and `NGUID` should be used." |
| 71 | }, |
Ed Tanous | 118b1c7 | 2018-09-13 13:45:51 -0700 | [diff] [blame] | 72 | "enumDescriptions": { |
Ed Tanous | cb10313 | 2019-10-08 11:34:22 -0700 | [diff] [blame] | 73 | "EUI": "The IEEE-defined 64-bit Extended Unique Identifier (EUI).", |
| 74 | "FC_WWN": "The Fibre Channel (FC) World Wide Name (WWN).", |
| 75 | "NAA": "The Name Address Authority (NAA) format.", |
Asmitha Karunanithi | c8ccb77 | 2020-09-22 10:56:46 -0500 | [diff] [blame] | 76 | "NGUID": "The Namespace Globally Unique Identifier (NGUID).", |
Ed Tanous | cb10313 | 2019-10-08 11:34:22 -0700 | [diff] [blame] | 77 | "NQN": "The NVMe Qualified Name (NQN).", |
| 78 | "NSID": "The NVM Namespace Identifier (NSID).", |
| 79 | "UUID": "The Universally Unique Identifier (UUID).", |
| 80 | "iQN": "The iSCSI Qualified Name (iQN)." |
Ed Tanous | 118b1c7 | 2018-09-13 13:45:51 -0700 | [diff] [blame] | 81 | }, |
| 82 | "enumLongDescriptions": { |
Gunnar Mills | 10f270b | 2021-05-19 15:34:06 -0500 | [diff] [blame^] | 83 | "EUI": "This durable name shall contain the hexadecimal representation of the IEEE-defined 64-bit Extended Unique Identifier (EUI), as defined in the IEEE's Guidelines for 64-bit Global Identifier (EUI-64) Specification. The DurableName property shall follow the pattern '^([0-9A-Fa-f]{2}[:-]){7}([0-9A-Fa-f]{2})$', where the most significant octet is first.", |
| 84 | "FC_WWN": "This durable name shall contain a hexadecimal representation of the World-Wide Name (WWN) format, as defined in the T11 Fibre Channel Physical and Signaling Interface Specification. The DurableName property shall follow the pattern '^([0-9A-Fa-f]{2}[:-]){7}([0-9A-Fa-f]{2})$', where the most significant octet is first.", |
| 85 | "NAA": "This durable name shall contain a hexadecimal representation of the Name Address Authority structure, as defined in the T11 Fibre Channel - Framing and Signaling - 3 (FC-FS-3) specification. The DurableName property shall follow the pattern '^(([0-9A-Fa-f]{2}){8}){1,2}$', where the most significant octet is first.", |
| 86 | "NGUID": "This durable name shall be in the Namespace Globally Unique Identifier (NGUID), as defined in the NVN Express Specification. The DurableName property shall follow the pattern '^([0-9A-Fa-f]{2}){16}$', where the most significant octet is first.", |
Ed Tanous | cb10313 | 2019-10-08 11:34:22 -0700 | [diff] [blame] | 87 | "NQN": "This durable name shall be in the NVMe Qualified Name (NQN) format, as defined in the NVN Express over Fabric Specification.", |
| 88 | "NSID": "This durable name shall be in the NVM Namespace Identifier (NSID) format, as defined in the NVN Express Specification.", |
Gunnar Mills | 10f270b | 2021-05-19 15:34:06 -0500 | [diff] [blame^] | 89 | "UUID": "This durable name shall contain the hexadecimal representation of the UUID, as defined by RFC4122. The DurableName property shall follow the pattern '([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{12})'.", |
Ed Tanous | cb10313 | 2019-10-08 11:34:22 -0700 | [diff] [blame] | 90 | "iQN": "This durable name shall be in the iSCSI Qualified Name (iQN) format, as defined in RFC3720 and RFC3721." |
Ed Tanous | 118b1c7 | 2018-09-13 13:45:51 -0700 | [diff] [blame] | 91 | }, |
Marri Devender Rao | d45d2d0 | 2019-01-21 10:11:34 -0600 | [diff] [blame] | 92 | "enumVersionAdded": { |
Asmitha Karunanithi | c8ccb77 | 2020-09-22 10:56:46 -0500 | [diff] [blame] | 93 | "NGUID": "v1_10_0", |
Marri Devender Rao | d45d2d0 | 2019-01-21 10:11:34 -0600 | [diff] [blame] | 94 | "NQN": "v1_6_0", |
| 95 | "NSID": "v1_6_0" |
Ed Tanous | 530520e | 2019-01-02 13:41:37 -0800 | [diff] [blame] | 96 | }, |
Gunnar Mills | 10f270b | 2021-05-19 15:34:06 -0500 | [diff] [blame^] | 97 | "enumVersionDeprecated": { |
| 98 | "NSID": "v1_12_0" |
| 99 | }, |
Ed Tanous | 530520e | 2019-01-02 13:41:37 -0800 | [diff] [blame] | 100 | "type": "string" |
| 101 | }, |
Ed Tanous | 118b1c7 | 2018-09-13 13:45:51 -0700 | [diff] [blame] | 102 | "Identifier": { |
| 103 | "additionalProperties": false, |
Gunnar Mills | a778c02 | 2020-05-12 12:20:36 -0500 | [diff] [blame] | 104 | "description": "Any additional identifiers for a resource.", |
| 105 | "longDescription": "This type shall contain any additional identifiers for a resource.", |
Ed Tanous | 118b1c7 | 2018-09-13 13:45:51 -0700 | [diff] [blame] | 106 | "patternProperties": { |
Ed Tanous | cb10313 | 2019-10-08 11:34:22 -0700 | [diff] [blame] | 107 | "^([a-zA-Z_][a-zA-Z0-9_]*)?@(odata|Redfish|Message)\\.[a-zA-Z_][a-zA-Z0-9_]*$": { |
Ed Tanous | 118b1c7 | 2018-09-13 13:45:51 -0700 | [diff] [blame] | 108 | "description": "This property shall specify a valid odata or Redfish property.", |
| 109 | "type": [ |
| 110 | "array", |
| 111 | "boolean", |
Ed Tanous | 530520e | 2019-01-02 13:41:37 -0800 | [diff] [blame] | 112 | "integer", |
Ed Tanous | 118b1c7 | 2018-09-13 13:45:51 -0700 | [diff] [blame] | 113 | "number", |
| 114 | "null", |
| 115 | "object", |
| 116 | "string" |
| 117 | ] |
| 118 | } |
| 119 | }, |
| 120 | "properties": { |
| 121 | "DurableName": { |
Gunnar Mills | a778c02 | 2020-05-12 12:20:36 -0500 | [diff] [blame] | 122 | "description": "The world-wide, persistent name of the resource.", |
| 123 | "longDescription": "This property shall contain the world-wide unique identifier for the resource. The string shall be in the Identifier.DurableNameFormat property value format.", |
Ed Tanous | 118b1c7 | 2018-09-13 13:45:51 -0700 | [diff] [blame] | 124 | "readonly": true, |
| 125 | "type": [ |
| 126 | "string", |
| 127 | "null" |
Marri Devender Rao | d45d2d0 | 2019-01-21 10:11:34 -0600 | [diff] [blame] | 128 | ], |
| 129 | "versionAdded": "v1_1_0" |
Ed Tanous | 118b1c7 | 2018-09-13 13:45:51 -0700 | [diff] [blame] | 130 | }, |
| 131 | "DurableNameFormat": { |
| 132 | "anyOf": [ |
| 133 | { |
| 134 | "$ref": "#/definitions/DurableNameFormat" |
| 135 | }, |
| 136 | { |
| 137 | "type": "null" |
| 138 | } |
| 139 | ], |
Ed Tanous | cb10313 | 2019-10-08 11:34:22 -0700 | [diff] [blame] | 140 | "description": "The format of the durable name property.", |
Ed Tanous | 118b1c7 | 2018-09-13 13:45:51 -0700 | [diff] [blame] | 141 | "longDescription": "This property shall represent the format of the DurableName property.", |
Marri Devender Rao | d45d2d0 | 2019-01-21 10:11:34 -0600 | [diff] [blame] | 142 | "readonly": true, |
| 143 | "versionAdded": "v1_1_0" |
Ed Tanous | 118b1c7 | 2018-09-13 13:45:51 -0700 | [diff] [blame] | 144 | } |
| 145 | }, |
| 146 | "type": "object" |
| 147 | }, |
Ed Tanous | 118b1c7 | 2018-09-13 13:45:51 -0700 | [diff] [blame] | 148 | "Location": { |
| 149 | "additionalProperties": false, |
Gunnar Mills | a778c02 | 2020-05-12 12:20:36 -0500 | [diff] [blame] | 150 | "description": "The location of a resource.", |
| 151 | "longDescription": "This type shall describe the location of a resource.", |
Ed Tanous | 118b1c7 | 2018-09-13 13:45:51 -0700 | [diff] [blame] | 152 | "patternProperties": { |
Ed Tanous | cb10313 | 2019-10-08 11:34:22 -0700 | [diff] [blame] | 153 | "^([a-zA-Z_][a-zA-Z0-9_]*)?@(odata|Redfish|Message)\\.[a-zA-Z_][a-zA-Z0-9_]*$": { |
Ed Tanous | 118b1c7 | 2018-09-13 13:45:51 -0700 | [diff] [blame] | 154 | "description": "This property shall specify a valid odata or Redfish property.", |
| 155 | "type": [ |
| 156 | "array", |
| 157 | "boolean", |
Ed Tanous | 530520e | 2019-01-02 13:41:37 -0800 | [diff] [blame] | 158 | "integer", |
Ed Tanous | 118b1c7 | 2018-09-13 13:45:51 -0700 | [diff] [blame] | 159 | "number", |
| 160 | "null", |
| 161 | "object", |
| 162 | "string" |
| 163 | ] |
| 164 | } |
| 165 | }, |
| 166 | "properties": { |
| 167 | "AltitudeMeters": { |
Gunnar Mills | a778c02 | 2020-05-12 12:20:36 -0500 | [diff] [blame] | 168 | "description": "The altitude of the resource in meters.", |
| 169 | "longDescription": "This property shall contain the altitude of the resource in meters.", |
Ed Tanous | 530520e | 2019-01-02 13:41:37 -0800 | [diff] [blame] | 170 | "readonly": false, |
Ed Tanous | 118b1c7 | 2018-09-13 13:45:51 -0700 | [diff] [blame] | 171 | "type": [ |
| 172 | "number", |
| 173 | "null" |
| 174 | ], |
Marri Devender Rao | d45d2d0 | 2019-01-21 10:11:34 -0600 | [diff] [blame] | 175 | "units": "m", |
| 176 | "versionAdded": "v1_6_0" |
Ed Tanous | 118b1c7 | 2018-09-13 13:45:51 -0700 | [diff] [blame] | 177 | }, |
Ed Tanous | 530520e | 2019-01-02 13:41:37 -0800 | [diff] [blame] | 178 | "Contacts": { |
Ed Tanous | cb10313 | 2019-10-08 11:34:22 -0700 | [diff] [blame] | 179 | "description": "An array of contact information.", |
Ed Tanous | 530520e | 2019-01-02 13:41:37 -0800 | [diff] [blame] | 180 | "items": { |
| 181 | "anyOf": [ |
| 182 | { |
| 183 | "$ref": "#/definitions/ContactInfo" |
| 184 | }, |
| 185 | { |
| 186 | "type": "null" |
| 187 | } |
| 188 | ] |
| 189 | }, |
Gunnar Mills | a778c02 | 2020-05-12 12:20:36 -0500 | [diff] [blame] | 190 | "longDescription": "This property shall contain an array of contact information for an individual or organization responsible for this resource.", |
Marri Devender Rao | d45d2d0 | 2019-01-21 10:11:34 -0600 | [diff] [blame] | 191 | "type": "array", |
| 192 | "versionAdded": "v1_7_0" |
Ed Tanous | 530520e | 2019-01-02 13:41:37 -0800 | [diff] [blame] | 193 | }, |
Ed Tanous | 118b1c7 | 2018-09-13 13:45:51 -0700 | [diff] [blame] | 194 | "Info": { |
Ed Tanous | cb10313 | 2019-10-08 11:34:22 -0700 | [diff] [blame] | 195 | "deprecated": "This property has been deprecated in favor of the PostalAddress, Placement, and PartLocation properties.", |
Gunnar Mills | a778c02 | 2020-05-12 12:20:36 -0500 | [diff] [blame] | 196 | "description": "The location of the resource.", |
| 197 | "longDescription": "This property shall represent the location of the resource.", |
Ed Tanous | 118b1c7 | 2018-09-13 13:45:51 -0700 | [diff] [blame] | 198 | "readonly": true, |
| 199 | "type": [ |
| 200 | "string", |
| 201 | "null" |
Marri Devender Rao | d45d2d0 | 2019-01-21 10:11:34 -0600 | [diff] [blame] | 202 | ], |
Ed Tanous | cb10313 | 2019-10-08 11:34:22 -0700 | [diff] [blame] | 203 | "versionAdded": "v1_1_0", |
| 204 | "versionDeprecated": "v1_5_0" |
Ed Tanous | 118b1c7 | 2018-09-13 13:45:51 -0700 | [diff] [blame] | 205 | }, |
| 206 | "InfoFormat": { |
Ed Tanous | cb10313 | 2019-10-08 11:34:22 -0700 | [diff] [blame] | 207 | "deprecated": "This property has been deprecated in favor of the PostalAddress, Placement, and PartLocation properties.", |
| 208 | "description": "The format of the Info property.", |
| 209 | "longDescription": "This property shall represent the Info property format.", |
Ed Tanous | 118b1c7 | 2018-09-13 13:45:51 -0700 | [diff] [blame] | 210 | "readonly": true, |
| 211 | "type": [ |
| 212 | "string", |
| 213 | "null" |
Marri Devender Rao | d45d2d0 | 2019-01-21 10:11:34 -0600 | [diff] [blame] | 214 | ], |
Ed Tanous | cb10313 | 2019-10-08 11:34:22 -0700 | [diff] [blame] | 215 | "versionAdded": "v1_1_0", |
| 216 | "versionDeprecated": "v1_5_0" |
Ed Tanous | 118b1c7 | 2018-09-13 13:45:51 -0700 | [diff] [blame] | 217 | }, |
| 218 | "Latitude": { |
Gunnar Mills | a778c02 | 2020-05-12 12:20:36 -0500 | [diff] [blame] | 219 | "description": "The latitude of the resource.", |
| 220 | "longDescription": "This property shall contain the latitude of the resource specified in degrees using a decimal format and not minutes or seconds.", |
Ed Tanous | 530520e | 2019-01-02 13:41:37 -0800 | [diff] [blame] | 221 | "readonly": false, |
Ed Tanous | 118b1c7 | 2018-09-13 13:45:51 -0700 | [diff] [blame] | 222 | "type": [ |
| 223 | "number", |
| 224 | "null" |
| 225 | ], |
Marri Devender Rao | d45d2d0 | 2019-01-21 10:11:34 -0600 | [diff] [blame] | 226 | "units": "deg", |
| 227 | "versionAdded": "v1_6_0" |
Ed Tanous | 118b1c7 | 2018-09-13 13:45:51 -0700 | [diff] [blame] | 228 | }, |
| 229 | "Longitude": { |
Gunnar Mills | a778c02 | 2020-05-12 12:20:36 -0500 | [diff] [blame] | 230 | "description": "The longitude of the resource in degrees.", |
| 231 | "longDescription": "This property shall contain the longitude of the resource specified in degrees using a decimal format and not minutes or seconds.", |
Ed Tanous | 530520e | 2019-01-02 13:41:37 -0800 | [diff] [blame] | 232 | "readonly": false, |
Ed Tanous | 118b1c7 | 2018-09-13 13:45:51 -0700 | [diff] [blame] | 233 | "type": [ |
| 234 | "number", |
| 235 | "null" |
| 236 | ], |
Marri Devender Rao | d45d2d0 | 2019-01-21 10:11:34 -0600 | [diff] [blame] | 237 | "units": "deg", |
| 238 | "versionAdded": "v1_6_0" |
Ed Tanous | 118b1c7 | 2018-09-13 13:45:51 -0700 | [diff] [blame] | 239 | }, |
| 240 | "Oem": { |
Ed Tanous | 530520e | 2019-01-02 13:41:37 -0800 | [diff] [blame] | 241 | "$ref": "http://redfish.dmtf.org/schemas/v1/Resource.json#/definitions/Oem", |
Ed Tanous | cb10313 | 2019-10-08 11:34:22 -0700 | [diff] [blame] | 242 | "description": "The OEM extension property.", |
| 243 | "longDescription": "This property shall contain the OEM extensions. All values for properties contained in this object shall conform to the Redfish Specification-described requirements.", |
Marri Devender Rao | d45d2d0 | 2019-01-21 10:11:34 -0600 | [diff] [blame] | 244 | "versionAdded": "v1_1_0" |
Ed Tanous | 118b1c7 | 2018-09-13 13:45:51 -0700 | [diff] [blame] | 245 | }, |
| 246 | "PartLocation": { |
Ed Tanous | cb10313 | 2019-10-08 11:34:22 -0700 | [diff] [blame] | 247 | "$ref": "#/definitions/PartLocation", |
Gunnar Mills | 10f270b | 2021-05-19 15:34:06 -0500 | [diff] [blame^] | 248 | "description": "The part location for a resource within an enclosure.", |
| 249 | "longDescription": "This property shall contain the part location for a resource within an enclosure. This representation shall indicate the location of a part within a location specified by the Placement property.", |
Marri Devender Rao | d45d2d0 | 2019-01-21 10:11:34 -0600 | [diff] [blame] | 250 | "versionAdded": "v1_5_0" |
Ed Tanous | 118b1c7 | 2018-09-13 13:45:51 -0700 | [diff] [blame] | 251 | }, |
| 252 | "Placement": { |
Ed Tanous | cb10313 | 2019-10-08 11:34:22 -0700 | [diff] [blame] | 253 | "$ref": "#/definitions/Placement", |
Ed Tanous | 118b1c7 | 2018-09-13 13:45:51 -0700 | [diff] [blame] | 254 | "description": "A place within the addressed location.", |
Ed Tanous | cb10313 | 2019-10-08 11:34:22 -0700 | [diff] [blame] | 255 | "longDescription": "This property shall contain a place within the addressed location.", |
Marri Devender Rao | d45d2d0 | 2019-01-21 10:11:34 -0600 | [diff] [blame] | 256 | "versionAdded": "v1_3_0" |
Ed Tanous | 118b1c7 | 2018-09-13 13:45:51 -0700 | [diff] [blame] | 257 | }, |
| 258 | "PostalAddress": { |
Ed Tanous | cb10313 | 2019-10-08 11:34:22 -0700 | [diff] [blame] | 259 | "$ref": "#/definitions/PostalAddress", |
Gunnar Mills | a778c02 | 2020-05-12 12:20:36 -0500 | [diff] [blame] | 260 | "description": "The postal address of the addressed resource.", |
| 261 | "longDescription": "This property shall contain a postal address of the resource.", |
Marri Devender Rao | d45d2d0 | 2019-01-21 10:11:34 -0600 | [diff] [blame] | 262 | "versionAdded": "v1_3_0" |
Ed Tanous | 118b1c7 | 2018-09-13 13:45:51 -0700 | [diff] [blame] | 263 | } |
| 264 | }, |
| 265 | "type": "object" |
| 266 | }, |
| 267 | "LocationType": { |
Gunnar Mills | 10f270b | 2021-05-19 15:34:06 -0500 | [diff] [blame^] | 268 | "description": "The types of locations for a part within an enclosure.", |
Ed Tanous | 118b1c7 | 2018-09-13 13:45:51 -0700 | [diff] [blame] | 269 | "enum": [ |
| 270 | "Slot", |
| 271 | "Bay", |
| 272 | "Connector", |
Gunnar Mills | 10f270b | 2021-05-19 15:34:06 -0500 | [diff] [blame^] | 273 | "Socket", |
| 274 | "Backplane" |
Ed Tanous | 118b1c7 | 2018-09-13 13:45:51 -0700 | [diff] [blame] | 275 | ], |
| 276 | "enumDescriptions": { |
Gunnar Mills | 10f270b | 2021-05-19 15:34:06 -0500 | [diff] [blame^] | 277 | "Backplane": "A backplane.", |
| 278 | "Bay": "A bay.", |
| 279 | "Connector": "A connector or port.", |
| 280 | "Slot": "A slot.", |
| 281 | "Socket": "A socket." |
Ed Tanous | 118b1c7 | 2018-09-13 13:45:51 -0700 | [diff] [blame] | 282 | }, |
| 283 | "enumLongDescriptions": { |
Gunnar Mills | 10f270b | 2021-05-19 15:34:06 -0500 | [diff] [blame^] | 284 | "Backplane": "This value shall indicate the part is a backplane in an enclosure.", |
| 285 | "Bay": "This value shall indicate the part is located in a bay.", |
| 286 | "Connector": "This value shall indicate the part is located in a connector or port.", |
| 287 | "Slot": "This value shall indicate the part is located in a slot.", |
| 288 | "Socket": "This value shall indicate the part is located in a socket." |
Ed Tanous | 118b1c7 | 2018-09-13 13:45:51 -0700 | [diff] [blame] | 289 | }, |
Gunnar Mills | 10f270b | 2021-05-19 15:34:06 -0500 | [diff] [blame^] | 290 | "enumVersionAdded": { |
| 291 | "Backplane": "v1_12_0" |
| 292 | }, |
| 293 | "longDescription": "This enumeration shall list the types of locations for a part within an enclosure.", |
Ed Tanous | 118b1c7 | 2018-09-13 13:45:51 -0700 | [diff] [blame] | 294 | "type": "string" |
| 295 | }, |
| 296 | "Orientation": { |
Gunnar Mills | 10f270b | 2021-05-19 15:34:06 -0500 | [diff] [blame^] | 297 | "description": "The orientations for the ordering of the part location ordinal value.", |
Ed Tanous | 118b1c7 | 2018-09-13 13:45:51 -0700 | [diff] [blame] | 298 | "enum": [ |
| 299 | "FrontToBack", |
| 300 | "BackToFront", |
| 301 | "TopToBottom", |
| 302 | "BottomToTop", |
| 303 | "LeftToRight", |
| 304 | "RightToLeft" |
| 305 | ], |
| 306 | "enumDescriptions": { |
Ed Tanous | cb10313 | 2019-10-08 11:34:22 -0700 | [diff] [blame] | 307 | "BackToFront": "The ordering for the LocationOrdinalValue is back to front.", |
| 308 | "BottomToTop": "The ordering for LocationOrdinalValue is bottom to top.", |
| 309 | "FrontToBack": "The ordering for LocationOrdinalValue is front to back.", |
| 310 | "LeftToRight": "The ordering for the LocationOrdinalValue is left to right.", |
| 311 | "RightToLeft": "The ordering for the LocationOrdinalValue is right to left.", |
| 312 | "TopToBottom": "The ordering for the LocationOrdinalValue is top to bottom." |
Ed Tanous | 118b1c7 | 2018-09-13 13:45:51 -0700 | [diff] [blame] | 313 | }, |
| 314 | "enumLongDescriptions": { |
Gunnar Mills | 10f270b | 2021-05-19 15:34:06 -0500 | [diff] [blame^] | 315 | "BackToFront": "This value shall indicate the ordering for LocationOrdinalValue is back to front.", |
| 316 | "BottomToTop": "This value shall indicate the ordering for LocationOrdinalValue is bottom to top.", |
| 317 | "FrontToBack": "This value shall indicate the ordering for LocationOrdinalValue is front to back.", |
| 318 | "LeftToRight": "This value shall indicate the ordering for LocationOrdinalValue is left to right.", |
| 319 | "RightToLeft": "This value shall indicate the ordering for LocationOrdinalValue is right to left.", |
| 320 | "TopToBottom": "This value shall indicate the ordering for LocationOrdinalValue is top to bottom." |
Ed Tanous | 118b1c7 | 2018-09-13 13:45:51 -0700 | [diff] [blame] | 321 | }, |
Gunnar Mills | 10f270b | 2021-05-19 15:34:06 -0500 | [diff] [blame^] | 322 | "longDescription": "This enumeration shall list the orientations for the ordering of the LocationOrdinalValue property.", |
Ed Tanous | 118b1c7 | 2018-09-13 13:45:51 -0700 | [diff] [blame] | 323 | "type": "string" |
| 324 | }, |
| 325 | "PartLocation": { |
| 326 | "additionalProperties": false, |
Gunnar Mills | 10f270b | 2021-05-19 15:34:06 -0500 | [diff] [blame^] | 327 | "description": "The part location for a resource within an enclosure.", |
| 328 | "longDescription": "This type shall describe a location for a resource within an enclosure.", |
Ed Tanous | 118b1c7 | 2018-09-13 13:45:51 -0700 | [diff] [blame] | 329 | "patternProperties": { |
Ed Tanous | cb10313 | 2019-10-08 11:34:22 -0700 | [diff] [blame] | 330 | "^([a-zA-Z_][a-zA-Z0-9_]*)?@(odata|Redfish|Message)\\.[a-zA-Z_][a-zA-Z0-9_]*$": { |
Ed Tanous | 118b1c7 | 2018-09-13 13:45:51 -0700 | [diff] [blame] | 331 | "description": "This property shall specify a valid odata or Redfish property.", |
| 332 | "type": [ |
| 333 | "array", |
| 334 | "boolean", |
Ed Tanous | 530520e | 2019-01-02 13:41:37 -0800 | [diff] [blame] | 335 | "integer", |
Ed Tanous | 118b1c7 | 2018-09-13 13:45:51 -0700 | [diff] [blame] | 336 | "number", |
| 337 | "null", |
| 338 | "object", |
| 339 | "string" |
| 340 | ] |
| 341 | } |
| 342 | }, |
| 343 | "properties": { |
| 344 | "LocationOrdinalValue": { |
Gunnar Mills | 10f270b | 2021-05-19 15:34:06 -0500 | [diff] [blame^] | 345 | "description": "The number that represents the location of the part. For example, if LocationType is `Slot` and this unit is in slot 2, the LocationOrdinalValue is `2`.", |
| 346 | "longDescription": "This property shall contain the number that represents the location of the part based on the LocationType. LocationOrdinalValue shall be measured based on the Orientation value starting with `0`.", |
Ed Tanous | 118b1c7 | 2018-09-13 13:45:51 -0700 | [diff] [blame] | 347 | "readonly": true, |
| 348 | "type": [ |
Ed Tanous | 530520e | 2019-01-02 13:41:37 -0800 | [diff] [blame] | 349 | "integer", |
Ed Tanous | 118b1c7 | 2018-09-13 13:45:51 -0700 | [diff] [blame] | 350 | "null" |
Marri Devender Rao | d45d2d0 | 2019-01-21 10:11:34 -0600 | [diff] [blame] | 351 | ], |
| 352 | "versionAdded": "v1_5_0" |
Ed Tanous | 118b1c7 | 2018-09-13 13:45:51 -0700 | [diff] [blame] | 353 | }, |
| 354 | "LocationType": { |
| 355 | "anyOf": [ |
| 356 | { |
| 357 | "$ref": "#/definitions/LocationType" |
| 358 | }, |
| 359 | { |
| 360 | "type": "null" |
| 361 | } |
| 362 | ], |
Gunnar Mills | 10f270b | 2021-05-19 15:34:06 -0500 | [diff] [blame^] | 363 | "description": "The type of location of the part, such as slot, bay, socket, or slot.", |
| 364 | "longDescription": "This property shall contain the type of location of the part, such as slot, bay, socket, or slot.", |
Marri Devender Rao | d45d2d0 | 2019-01-21 10:11:34 -0600 | [diff] [blame] | 365 | "readonly": true, |
| 366 | "versionAdded": "v1_5_0" |
Ed Tanous | 118b1c7 | 2018-09-13 13:45:51 -0700 | [diff] [blame] | 367 | }, |
| 368 | "Orientation": { |
| 369 | "anyOf": [ |
| 370 | { |
| 371 | "$ref": "#/definitions/Orientation" |
| 372 | }, |
| 373 | { |
| 374 | "type": "null" |
| 375 | } |
| 376 | ], |
| 377 | "description": "The orientation for the ordering of the slot enumeration used by the LocationOrdinalValue property.", |
Ed Tanous | cb10313 | 2019-10-08 11:34:22 -0700 | [diff] [blame] | 378 | "longDescription": "This property shall contain the orientation for the ordering used by the LocationOrdinalValue property.", |
Marri Devender Rao | d45d2d0 | 2019-01-21 10:11:34 -0600 | [diff] [blame] | 379 | "readonly": true, |
| 380 | "versionAdded": "v1_5_0" |
Ed Tanous | 118b1c7 | 2018-09-13 13:45:51 -0700 | [diff] [blame] | 381 | }, |
| 382 | "Reference": { |
| 383 | "anyOf": [ |
| 384 | { |
| 385 | "$ref": "#/definitions/Reference" |
| 386 | }, |
| 387 | { |
| 388 | "type": "null" |
| 389 | } |
| 390 | ], |
Ed Tanous | cb10313 | 2019-10-08 11:34:22 -0700 | [diff] [blame] | 391 | "description": "The reference point for the part location. Provides guidance about the general location of the part.", |
| 392 | "longDescription": "This property shall contain the general location within the unit of the part.", |
Marri Devender Rao | d45d2d0 | 2019-01-21 10:11:34 -0600 | [diff] [blame] | 393 | "readonly": true, |
| 394 | "versionAdded": "v1_5_0" |
Ed Tanous | 118b1c7 | 2018-09-13 13:45:51 -0700 | [diff] [blame] | 395 | }, |
| 396 | "ServiceLabel": { |
Ed Tanous | cb10313 | 2019-10-08 11:34:22 -0700 | [diff] [blame] | 397 | "description": "The label of the part location, such as a silk-screened name or a printed label.", |
| 398 | "longDescription": "This property shall contain the label assigned for service at the part location.", |
Ed Tanous | 118b1c7 | 2018-09-13 13:45:51 -0700 | [diff] [blame] | 399 | "readonly": true, |
| 400 | "type": [ |
| 401 | "string", |
| 402 | "null" |
Marri Devender Rao | d45d2d0 | 2019-01-21 10:11:34 -0600 | [diff] [blame] | 403 | ], |
| 404 | "versionAdded": "v1_5_0" |
Ed Tanous | 118b1c7 | 2018-09-13 13:45:51 -0700 | [diff] [blame] | 405 | } |
| 406 | }, |
| 407 | "type": "object" |
| 408 | }, |
| 409 | "Placement": { |
| 410 | "additionalProperties": false, |
| 411 | "description": "The placement within the addressed location.", |
Gunnar Mills | a778c02 | 2020-05-12 12:20:36 -0500 | [diff] [blame] | 412 | "longDescription": "The value shall describe a location within a resource. Examples include a shelf in a rack.", |
Ed Tanous | 118b1c7 | 2018-09-13 13:45:51 -0700 | [diff] [blame] | 413 | "patternProperties": { |
Ed Tanous | cb10313 | 2019-10-08 11:34:22 -0700 | [diff] [blame] | 414 | "^([a-zA-Z_][a-zA-Z0-9_]*)?@(odata|Redfish|Message)\\.[a-zA-Z_][a-zA-Z0-9_]*$": { |
Ed Tanous | 118b1c7 | 2018-09-13 13:45:51 -0700 | [diff] [blame] | 415 | "description": "This property shall specify a valid odata or Redfish property.", |
| 416 | "type": [ |
| 417 | "array", |
| 418 | "boolean", |
Ed Tanous | 530520e | 2019-01-02 13:41:37 -0800 | [diff] [blame] | 419 | "integer", |
Ed Tanous | 118b1c7 | 2018-09-13 13:45:51 -0700 | [diff] [blame] | 420 | "number", |
| 421 | "null", |
| 422 | "object", |
| 423 | "string" |
| 424 | ] |
| 425 | } |
| 426 | }, |
| 427 | "properties": { |
Ed Tanous | 530520e | 2019-01-02 13:41:37 -0800 | [diff] [blame] | 428 | "AdditionalInfo": { |
| 429 | "description": "Area designation or other additional info.", |
Ed Tanous | cb10313 | 2019-10-08 11:34:22 -0700 | [diff] [blame] | 430 | "longDescription": "This property shall contain additional information, such as Tile, Column (Post), Wall, or other designation that describes a location that cannot be conveyed with other properties defined for the Placement object.", |
Ed Tanous | 530520e | 2019-01-02 13:41:37 -0800 | [diff] [blame] | 431 | "readonly": false, |
| 432 | "type": [ |
| 433 | "string", |
| 434 | "null" |
Marri Devender Rao | d45d2d0 | 2019-01-21 10:11:34 -0600 | [diff] [blame] | 435 | ], |
| 436 | "versionAdded": "v1_7_0" |
Ed Tanous | 530520e | 2019-01-02 13:41:37 -0800 | [diff] [blame] | 437 | }, |
Ed Tanous | 118b1c7 | 2018-09-13 13:45:51 -0700 | [diff] [blame] | 438 | "Rack": { |
Ed Tanous | cb10313 | 2019-10-08 11:34:22 -0700 | [diff] [blame] | 439 | "description": "The name of a rack location within a row.", |
| 440 | "longDescription": "This property shall contain the name of the rack within a row.", |
Ed Tanous | 118b1c7 | 2018-09-13 13:45:51 -0700 | [diff] [blame] | 441 | "readonly": false, |
| 442 | "type": [ |
| 443 | "string", |
| 444 | "null" |
Marri Devender Rao | d45d2d0 | 2019-01-21 10:11:34 -0600 | [diff] [blame] | 445 | ], |
| 446 | "versionAdded": "v1_3_0" |
Ed Tanous | 118b1c7 | 2018-09-13 13:45:51 -0700 | [diff] [blame] | 447 | }, |
| 448 | "RackOffset": { |
Ed Tanous | cb10313 | 2019-10-08 11:34:22 -0700 | [diff] [blame] | 449 | "description": "The vertical location of the item, in terms of RackOffsetUnits.", |
| 450 | "longDescription": "The vertical location of the item in the rack. Rack offset units shall be measured from bottom to top, starting with 0.", |
Ed Tanous | 118b1c7 | 2018-09-13 13:45:51 -0700 | [diff] [blame] | 451 | "readonly": false, |
| 452 | "type": [ |
Ed Tanous | 530520e | 2019-01-02 13:41:37 -0800 | [diff] [blame] | 453 | "integer", |
Ed Tanous | 118b1c7 | 2018-09-13 13:45:51 -0700 | [diff] [blame] | 454 | "null" |
Marri Devender Rao | d45d2d0 | 2019-01-21 10:11:34 -0600 | [diff] [blame] | 455 | ], |
| 456 | "versionAdded": "v1_3_0" |
Ed Tanous | 118b1c7 | 2018-09-13 13:45:51 -0700 | [diff] [blame] | 457 | }, |
| 458 | "RackOffsetUnits": { |
| 459 | "anyOf": [ |
| 460 | { |
| 461 | "$ref": "#/definitions/RackUnits" |
| 462 | }, |
| 463 | { |
| 464 | "type": "null" |
| 465 | } |
| 466 | ], |
Ed Tanous | cb10313 | 2019-10-08 11:34:22 -0700 | [diff] [blame] | 467 | "description": "The type of rack units in use.", |
| 468 | "longDescription": "This property shall contain a RackUnit enumeration literal that indicates the type of rack units in use.", |
Marri Devender Rao | d45d2d0 | 2019-01-21 10:11:34 -0600 | [diff] [blame] | 469 | "readonly": false, |
| 470 | "versionAdded": "v1_3_0" |
Ed Tanous | 118b1c7 | 2018-09-13 13:45:51 -0700 | [diff] [blame] | 471 | }, |
| 472 | "Row": { |
Ed Tanous | cb10313 | 2019-10-08 11:34:22 -0700 | [diff] [blame] | 473 | "description": "The name of the row.", |
| 474 | "longDescription": "This property shall contain the name of the row.", |
Ed Tanous | 118b1c7 | 2018-09-13 13:45:51 -0700 | [diff] [blame] | 475 | "readonly": false, |
| 476 | "type": [ |
| 477 | "string", |
| 478 | "null" |
Marri Devender Rao | d45d2d0 | 2019-01-21 10:11:34 -0600 | [diff] [blame] | 479 | ], |
| 480 | "versionAdded": "v1_3_0" |
Ed Tanous | 118b1c7 | 2018-09-13 13:45:51 -0700 | [diff] [blame] | 481 | } |
| 482 | }, |
| 483 | "type": "object" |
| 484 | }, |
| 485 | "PostalAddress": { |
| 486 | "additionalProperties": false, |
Gunnar Mills | a778c02 | 2020-05-12 12:20:36 -0500 | [diff] [blame] | 487 | "description": "The postal address for a resource.", |
Gunnar Mills | 844b415 | 2020-06-22 12:44:09 -0500 | [diff] [blame] | 488 | "longDescription": "Instances shall describe a postal address for a resource. For more information, see RFC5139. Depending on use, the instance can represent a past, current, or future location.", |
Ed Tanous | 118b1c7 | 2018-09-13 13:45:51 -0700 | [diff] [blame] | 489 | "patternProperties": { |
Ed Tanous | cb10313 | 2019-10-08 11:34:22 -0700 | [diff] [blame] | 490 | "^([a-zA-Z_][a-zA-Z0-9_]*)?@(odata|Redfish|Message)\\.[a-zA-Z_][a-zA-Z0-9_]*$": { |
Ed Tanous | 118b1c7 | 2018-09-13 13:45:51 -0700 | [diff] [blame] | 491 | "description": "This property shall specify a valid odata or Redfish property.", |
| 492 | "type": [ |
| 493 | "array", |
| 494 | "boolean", |
Ed Tanous | 530520e | 2019-01-02 13:41:37 -0800 | [diff] [blame] | 495 | "integer", |
Ed Tanous | 118b1c7 | 2018-09-13 13:45:51 -0700 | [diff] [blame] | 496 | "number", |
| 497 | "null", |
| 498 | "object", |
| 499 | "string" |
| 500 | ] |
| 501 | } |
| 502 | }, |
| 503 | "properties": { |
| 504 | "AdditionalCode": { |
Ed Tanous | cb10313 | 2019-10-08 11:34:22 -0700 | [diff] [blame] | 505 | "description": "The additional code.", |
| 506 | "longDescription": "The value shall conform to the RFC5139-defined requirements of the ADDCODE field.", |
Ed Tanous | 118b1c7 | 2018-09-13 13:45:51 -0700 | [diff] [blame] | 507 | "readonly": false, |
| 508 | "type": [ |
| 509 | "string", |
| 510 | "null" |
Marri Devender Rao | d45d2d0 | 2019-01-21 10:11:34 -0600 | [diff] [blame] | 511 | ], |
| 512 | "versionAdded": "v1_3_0" |
Ed Tanous | 118b1c7 | 2018-09-13 13:45:51 -0700 | [diff] [blame] | 513 | }, |
Ed Tanous | 530520e | 2019-01-02 13:41:37 -0800 | [diff] [blame] | 514 | "AdditionalInfo": { |
Ed Tanous | cb10313 | 2019-10-08 11:34:22 -0700 | [diff] [blame] | 515 | "description": "The room designation or other additional information.", |
| 516 | "longDescription": "The value shall conform to the requirements of the LOC field as defined in RFC5139. Provides additional information.", |
Ed Tanous | 530520e | 2019-01-02 13:41:37 -0800 | [diff] [blame] | 517 | "readonly": false, |
| 518 | "type": [ |
| 519 | "string", |
| 520 | "null" |
Marri Devender Rao | d45d2d0 | 2019-01-21 10:11:34 -0600 | [diff] [blame] | 521 | ], |
| 522 | "versionAdded": "v1_7_0" |
Ed Tanous | 530520e | 2019-01-02 13:41:37 -0800 | [diff] [blame] | 523 | }, |
Ed Tanous | 118b1c7 | 2018-09-13 13:45:51 -0700 | [diff] [blame] | 524 | "Building": { |
Ed Tanous | cb10313 | 2019-10-08 11:34:22 -0700 | [diff] [blame] | 525 | "description": "The name of the building.", |
| 526 | "longDescription": "The value shall conform to the RFC5139-defined requirements of the BLD field. Names the building.", |
Ed Tanous | 118b1c7 | 2018-09-13 13:45:51 -0700 | [diff] [blame] | 527 | "readonly": false, |
| 528 | "type": [ |
| 529 | "string", |
| 530 | "null" |
Marri Devender Rao | d45d2d0 | 2019-01-21 10:11:34 -0600 | [diff] [blame] | 531 | ], |
| 532 | "versionAdded": "v1_3_0" |
Ed Tanous | 118b1c7 | 2018-09-13 13:45:51 -0700 | [diff] [blame] | 533 | }, |
| 534 | "City": { |
| 535 | "description": "City, township, or shi (JP).", |
Ed Tanous | cb10313 | 2019-10-08 11:34:22 -0700 | [diff] [blame] | 536 | "longDescription": "The value shall conform to the RFC5139-defined requirements of the A3 field. Names a city, township, or shi (JP).", |
Ed Tanous | 118b1c7 | 2018-09-13 13:45:51 -0700 | [diff] [blame] | 537 | "readonly": false, |
| 538 | "type": [ |
| 539 | "string", |
| 540 | "null" |
Marri Devender Rao | d45d2d0 | 2019-01-21 10:11:34 -0600 | [diff] [blame] | 541 | ], |
| 542 | "versionAdded": "v1_3_0" |
Ed Tanous | 118b1c7 | 2018-09-13 13:45:51 -0700 | [diff] [blame] | 543 | }, |
| 544 | "Community": { |
Ed Tanous | cb10313 | 2019-10-08 11:34:22 -0700 | [diff] [blame] | 545 | "description": "The postal community name.", |
| 546 | "longDescription": "The value shall conform to the RFC5139-defined requirements of the PCN field. A postal community name.", |
Ed Tanous | 118b1c7 | 2018-09-13 13:45:51 -0700 | [diff] [blame] | 547 | "readonly": false, |
| 548 | "type": [ |
| 549 | "string", |
| 550 | "null" |
Marri Devender Rao | d45d2d0 | 2019-01-21 10:11:34 -0600 | [diff] [blame] | 551 | ], |
| 552 | "versionAdded": "v1_3_0" |
Ed Tanous | 118b1c7 | 2018-09-13 13:45:51 -0700 | [diff] [blame] | 553 | }, |
| 554 | "Country": { |
Ed Tanous | cb10313 | 2019-10-08 11:34:22 -0700 | [diff] [blame] | 555 | "description": "The country.", |
| 556 | "longDescription": "The value shall conform to the RFC5139-defined requirements of the Country field.", |
Ed Tanous | 118b1c7 | 2018-09-13 13:45:51 -0700 | [diff] [blame] | 557 | "readonly": false, |
| 558 | "type": [ |
| 559 | "string", |
| 560 | "null" |
Marri Devender Rao | d45d2d0 | 2019-01-21 10:11:34 -0600 | [diff] [blame] | 561 | ], |
| 562 | "versionAdded": "v1_3_0" |
Ed Tanous | 118b1c7 | 2018-09-13 13:45:51 -0700 | [diff] [blame] | 563 | }, |
| 564 | "District": { |
Ed Tanous | cb10313 | 2019-10-08 11:34:22 -0700 | [diff] [blame] | 565 | "description": "A county, parish, gun (JP), or district (IN).", |
| 566 | "longDescription": "The value shall conform to the RFC5139-defined requirements of the A2 field. Names a county, parish, gun (JP), or district (IN).", |
Ed Tanous | 118b1c7 | 2018-09-13 13:45:51 -0700 | [diff] [blame] | 567 | "readonly": false, |
| 568 | "type": [ |
| 569 | "string", |
| 570 | "null" |
Marri Devender Rao | d45d2d0 | 2019-01-21 10:11:34 -0600 | [diff] [blame] | 571 | ], |
| 572 | "versionAdded": "v1_3_0" |
Ed Tanous | 118b1c7 | 2018-09-13 13:45:51 -0700 | [diff] [blame] | 573 | }, |
| 574 | "Division": { |
Gunnar Mills | a778c02 | 2020-05-12 12:20:36 -0500 | [diff] [blame] | 575 | "description": "City division, borough, city district, ward, or chou (JP).", |
| 576 | "longDescription": "The value shall conform to the RFC5139-defined requirements of the A4 field. Names a city division, borough, city district, ward, or chou (JP).", |
Ed Tanous | 118b1c7 | 2018-09-13 13:45:51 -0700 | [diff] [blame] | 577 | "readonly": false, |
| 578 | "type": [ |
| 579 | "string", |
| 580 | "null" |
Marri Devender Rao | d45d2d0 | 2019-01-21 10:11:34 -0600 | [diff] [blame] | 581 | ], |
| 582 | "versionAdded": "v1_3_0" |
Ed Tanous | 118b1c7 | 2018-09-13 13:45:51 -0700 | [diff] [blame] | 583 | }, |
| 584 | "Floor": { |
Ed Tanous | cb10313 | 2019-10-08 11:34:22 -0700 | [diff] [blame] | 585 | "description": "The floor.", |
| 586 | "longDescription": "The value shall conform to the RFC5139-defined requirements of the FLR field. Provides a floor designation.", |
Ed Tanous | 118b1c7 | 2018-09-13 13:45:51 -0700 | [diff] [blame] | 587 | "readonly": false, |
| 588 | "type": [ |
| 589 | "string", |
| 590 | "null" |
Marri Devender Rao | d45d2d0 | 2019-01-21 10:11:34 -0600 | [diff] [blame] | 591 | ], |
| 592 | "versionAdded": "v1_3_0" |
Ed Tanous | 118b1c7 | 2018-09-13 13:45:51 -0700 | [diff] [blame] | 593 | }, |
| 594 | "GPSCoords": { |
Ed Tanous | cb10313 | 2019-10-08 11:34:22 -0700 | [diff] [blame] | 595 | "deprecated": "This property has been deprecated in favor of the Longitude and Latitude properties.", |
Ed Tanous | 118b1c7 | 2018-09-13 13:45:51 -0700 | [diff] [blame] | 596 | "description": "The GPS coordinates of the part.", |
Ed Tanous | cb10313 | 2019-10-08 11:34:22 -0700 | [diff] [blame] | 597 | "longDescription": "The value shall conform to the RFC5139-defined requirements of the ADDCODE field. Shall contain the GPS coordinates of the location. If furnished, expressed in the '[-][nn]n.nnnnnn, [-][nn]n.nnnnn' format. For example, two comma-separated positive or negative numbers with six decimal places of precision.", |
Ed Tanous | 118b1c7 | 2018-09-13 13:45:51 -0700 | [diff] [blame] | 598 | "readonly": false, |
| 599 | "type": [ |
| 600 | "string", |
| 601 | "null" |
Marri Devender Rao | d45d2d0 | 2019-01-21 10:11:34 -0600 | [diff] [blame] | 602 | ], |
Ed Tanous | cb10313 | 2019-10-08 11:34:22 -0700 | [diff] [blame] | 603 | "versionAdded": "v1_3_0", |
| 604 | "versionDeprecated": "v1_6_0" |
Ed Tanous | 118b1c7 | 2018-09-13 13:45:51 -0700 | [diff] [blame] | 605 | }, |
| 606 | "HouseNumber": { |
Ed Tanous | cb10313 | 2019-10-08 11:34:22 -0700 | [diff] [blame] | 607 | "description": "The numeric portion of house number.", |
| 608 | "longDescription": "The value shall conform to the RFC5139-defined requirements of the HNO field. The numeric portion of the house number.", |
Ed Tanous | 118b1c7 | 2018-09-13 13:45:51 -0700 | [diff] [blame] | 609 | "readonly": false, |
| 610 | "type": [ |
Ed Tanous | 530520e | 2019-01-02 13:41:37 -0800 | [diff] [blame] | 611 | "integer", |
Ed Tanous | 118b1c7 | 2018-09-13 13:45:51 -0700 | [diff] [blame] | 612 | "null" |
Marri Devender Rao | d45d2d0 | 2019-01-21 10:11:34 -0600 | [diff] [blame] | 613 | ], |
| 614 | "versionAdded": "v1_3_0" |
Ed Tanous | 118b1c7 | 2018-09-13 13:45:51 -0700 | [diff] [blame] | 615 | }, |
| 616 | "HouseNumberSuffix": { |
Ed Tanous | cb10313 | 2019-10-08 11:34:22 -0700 | [diff] [blame] | 617 | "description": "The house number suffix.", |
| 618 | "longDescription": "The value shall conform to the RFC5139-defined requirements of the HNS field. Provides a suffix to a house number, (F, B, or 1/2).", |
Ed Tanous | 118b1c7 | 2018-09-13 13:45:51 -0700 | [diff] [blame] | 619 | "readonly": false, |
| 620 | "type": [ |
| 621 | "string", |
| 622 | "null" |
Marri Devender Rao | d45d2d0 | 2019-01-21 10:11:34 -0600 | [diff] [blame] | 623 | ], |
| 624 | "versionAdded": "v1_3_0" |
Ed Tanous | 118b1c7 | 2018-09-13 13:45:51 -0700 | [diff] [blame] | 625 | }, |
| 626 | "Landmark": { |
Ed Tanous | cb10313 | 2019-10-08 11:34:22 -0700 | [diff] [blame] | 627 | "description": "The landmark.", |
| 628 | "longDescription": "The value shall conform to the RFC5139-defined requirements of the LMK field. Identifies a landmark or vanity address.", |
Ed Tanous | 118b1c7 | 2018-09-13 13:45:51 -0700 | [diff] [blame] | 629 | "readonly": false, |
| 630 | "type": [ |
| 631 | "string", |
| 632 | "null" |
Marri Devender Rao | d45d2d0 | 2019-01-21 10:11:34 -0600 | [diff] [blame] | 633 | ], |
| 634 | "versionAdded": "v1_3_0" |
Ed Tanous | 118b1c7 | 2018-09-13 13:45:51 -0700 | [diff] [blame] | 635 | }, |
| 636 | "LeadingStreetDirection": { |
| 637 | "description": "A leading street direction.", |
Ed Tanous | cb10313 | 2019-10-08 11:34:22 -0700 | [diff] [blame] | 638 | "longDescription": "The value shall conform to the requirements of the PRD field as defined in RFC5139. Names a leading street direction, (N, W, or SE).", |
Ed Tanous | 118b1c7 | 2018-09-13 13:45:51 -0700 | [diff] [blame] | 639 | "readonly": false, |
| 640 | "type": [ |
| 641 | "string", |
| 642 | "null" |
Marri Devender Rao | d45d2d0 | 2019-01-21 10:11:34 -0600 | [diff] [blame] | 643 | ], |
| 644 | "versionAdded": "v1_3_0" |
Ed Tanous | 118b1c7 | 2018-09-13 13:45:51 -0700 | [diff] [blame] | 645 | }, |
| 646 | "Location": { |
Ed Tanous | cb10313 | 2019-10-08 11:34:22 -0700 | [diff] [blame] | 647 | "deprecated": "This property has been deprecated in favor of the AdditionalInfo property.", |
| 648 | "description": "The room designation or other additional information.", |
| 649 | "longDescription": "The value shall conform to the RFC5139-defined requirements of the LOC field. Provides additional information.", |
Ed Tanous | 118b1c7 | 2018-09-13 13:45:51 -0700 | [diff] [blame] | 650 | "readonly": false, |
| 651 | "type": [ |
| 652 | "string", |
| 653 | "null" |
Marri Devender Rao | d45d2d0 | 2019-01-21 10:11:34 -0600 | [diff] [blame] | 654 | ], |
Ed Tanous | cb10313 | 2019-10-08 11:34:22 -0700 | [diff] [blame] | 655 | "versionAdded": "v1_3_0", |
| 656 | "versionDeprecated": "v1_7_0" |
Ed Tanous | 118b1c7 | 2018-09-13 13:45:51 -0700 | [diff] [blame] | 657 | }, |
| 658 | "Name": { |
Ed Tanous | cb10313 | 2019-10-08 11:34:22 -0700 | [diff] [blame] | 659 | "description": "The name.", |
| 660 | "longDescription": "The value shall conform to the RFC5139-defined requirements of the NAM field. Names the occupant.", |
Ed Tanous | 118b1c7 | 2018-09-13 13:45:51 -0700 | [diff] [blame] | 661 | "readonly": false, |
| 662 | "type": [ |
| 663 | "string", |
| 664 | "null" |
Marri Devender Rao | d45d2d0 | 2019-01-21 10:11:34 -0600 | [diff] [blame] | 665 | ], |
| 666 | "versionAdded": "v1_3_0" |
Ed Tanous | 118b1c7 | 2018-09-13 13:45:51 -0700 | [diff] [blame] | 667 | }, |
| 668 | "Neighborhood": { |
| 669 | "description": "Neighborhood or block.", |
Ed Tanous | cb10313 | 2019-10-08 11:34:22 -0700 | [diff] [blame] | 670 | "longDescription": "The value shall conform to the RFC5139-defined requirements of the A5 field. Names a neighborhood or block.", |
Ed Tanous | 118b1c7 | 2018-09-13 13:45:51 -0700 | [diff] [blame] | 671 | "readonly": false, |
| 672 | "type": [ |
| 673 | "string", |
| 674 | "null" |
Marri Devender Rao | d45d2d0 | 2019-01-21 10:11:34 -0600 | [diff] [blame] | 675 | ], |
| 676 | "versionAdded": "v1_3_0" |
Ed Tanous | 118b1c7 | 2018-09-13 13:45:51 -0700 | [diff] [blame] | 677 | }, |
| 678 | "POBox": { |
Ed Tanous | cb10313 | 2019-10-08 11:34:22 -0700 | [diff] [blame] | 679 | "description": "The post office box (PO box).", |
| 680 | "longDescription": "The value shall conform to the RFC5139-defined requirements of the POBOX field. A post office box (PO box).", |
Ed Tanous | 118b1c7 | 2018-09-13 13:45:51 -0700 | [diff] [blame] | 681 | "readonly": false, |
| 682 | "type": [ |
| 683 | "string", |
| 684 | "null" |
Marri Devender Rao | d45d2d0 | 2019-01-21 10:11:34 -0600 | [diff] [blame] | 685 | ], |
| 686 | "versionAdded": "v1_3_0" |
Ed Tanous | 118b1c7 | 2018-09-13 13:45:51 -0700 | [diff] [blame] | 687 | }, |
| 688 | "PlaceType": { |
Ed Tanous | cb10313 | 2019-10-08 11:34:22 -0700 | [diff] [blame] | 689 | "description": "The description of the type of place that is addressed.", |
| 690 | "longDescription": "The value shall conform to the RFC5139-defined requirements of the PLC field. Examples include office and residence.", |
Ed Tanous | 118b1c7 | 2018-09-13 13:45:51 -0700 | [diff] [blame] | 691 | "readonly": false, |
| 692 | "type": [ |
| 693 | "string", |
| 694 | "null" |
Marri Devender Rao | d45d2d0 | 2019-01-21 10:11:34 -0600 | [diff] [blame] | 695 | ], |
| 696 | "versionAdded": "v1_3_0" |
Ed Tanous | 118b1c7 | 2018-09-13 13:45:51 -0700 | [diff] [blame] | 697 | }, |
| 698 | "PostalCode": { |
Ed Tanous | cb10313 | 2019-10-08 11:34:22 -0700 | [diff] [blame] | 699 | "description": "The postal code or zip code.", |
| 700 | "longDescription": "The value shall conform to the RFC5139-defined requirements of the PC field. A postal code (or zip code).", |
Ed Tanous | 118b1c7 | 2018-09-13 13:45:51 -0700 | [diff] [blame] | 701 | "readonly": false, |
| 702 | "type": [ |
| 703 | "string", |
| 704 | "null" |
Marri Devender Rao | d45d2d0 | 2019-01-21 10:11:34 -0600 | [diff] [blame] | 705 | ], |
| 706 | "versionAdded": "v1_3_0" |
Ed Tanous | 118b1c7 | 2018-09-13 13:45:51 -0700 | [diff] [blame] | 707 | }, |
| 708 | "Road": { |
Ed Tanous | cb10313 | 2019-10-08 11:34:22 -0700 | [diff] [blame] | 709 | "description": "The primary road or street.", |
| 710 | "longDescription": "The value shall conform to the RFC5139-defined requirements of the RD field. Designates a primary road or street.", |
Ed Tanous | 118b1c7 | 2018-09-13 13:45:51 -0700 | [diff] [blame] | 711 | "readonly": false, |
| 712 | "type": [ |
| 713 | "string", |
| 714 | "null" |
Marri Devender Rao | d45d2d0 | 2019-01-21 10:11:34 -0600 | [diff] [blame] | 715 | ], |
| 716 | "versionAdded": "v1_3_0" |
Ed Tanous | 118b1c7 | 2018-09-13 13:45:51 -0700 | [diff] [blame] | 717 | }, |
| 718 | "RoadBranch": { |
Ed Tanous | cb10313 | 2019-10-08 11:34:22 -0700 | [diff] [blame] | 719 | "description": "The road branch.", |
| 720 | "longDescription": "The value shall conform to the RFC5139-defined requirements of the RDBR field. Shall contain a post office box (PO box) road branch.", |
Ed Tanous | 118b1c7 | 2018-09-13 13:45:51 -0700 | [diff] [blame] | 721 | "readonly": false, |
| 722 | "type": [ |
| 723 | "string", |
| 724 | "null" |
Marri Devender Rao | d45d2d0 | 2019-01-21 10:11:34 -0600 | [diff] [blame] | 725 | ], |
| 726 | "versionAdded": "v1_3_0" |
Ed Tanous | 118b1c7 | 2018-09-13 13:45:51 -0700 | [diff] [blame] | 727 | }, |
| 728 | "RoadPostModifier": { |
Ed Tanous | cb10313 | 2019-10-08 11:34:22 -0700 | [diff] [blame] | 729 | "description": "The road post-modifier.", |
| 730 | "longDescription": "The value shall conform to the RFC5139-defined requirements of the POM field. For example, Extended.", |
Ed Tanous | 118b1c7 | 2018-09-13 13:45:51 -0700 | [diff] [blame] | 731 | "readonly": false, |
| 732 | "type": [ |
| 733 | "string", |
| 734 | "null" |
Marri Devender Rao | d45d2d0 | 2019-01-21 10:11:34 -0600 | [diff] [blame] | 735 | ], |
| 736 | "versionAdded": "v1_3_0" |
Ed Tanous | 118b1c7 | 2018-09-13 13:45:51 -0700 | [diff] [blame] | 737 | }, |
| 738 | "RoadPreModifier": { |
Ed Tanous | cb10313 | 2019-10-08 11:34:22 -0700 | [diff] [blame] | 739 | "description": "The road pre-modifier.", |
| 740 | "longDescription": "The value shall conform to the RFC5139-defined requirements of the PRM field. For example, Old or New.", |
Ed Tanous | 118b1c7 | 2018-09-13 13:45:51 -0700 | [diff] [blame] | 741 | "readonly": false, |
| 742 | "type": [ |
| 743 | "string", |
| 744 | "null" |
Marri Devender Rao | d45d2d0 | 2019-01-21 10:11:34 -0600 | [diff] [blame] | 745 | ], |
| 746 | "versionAdded": "v1_3_0" |
Ed Tanous | 118b1c7 | 2018-09-13 13:45:51 -0700 | [diff] [blame] | 747 | }, |
| 748 | "RoadSection": { |
Ed Tanous | cb10313 | 2019-10-08 11:34:22 -0700 | [diff] [blame] | 749 | "description": "The road section.", |
| 750 | "longDescription": "The value shall conform to the RFC5139-defined requirements of the RDSEC field. A road section.", |
Ed Tanous | 118b1c7 | 2018-09-13 13:45:51 -0700 | [diff] [blame] | 751 | "readonly": false, |
| 752 | "type": [ |
| 753 | "string", |
| 754 | "null" |
Marri Devender Rao | d45d2d0 | 2019-01-21 10:11:34 -0600 | [diff] [blame] | 755 | ], |
| 756 | "versionAdded": "v1_3_0" |
Ed Tanous | 118b1c7 | 2018-09-13 13:45:51 -0700 | [diff] [blame] | 757 | }, |
| 758 | "RoadSubBranch": { |
Ed Tanous | cb10313 | 2019-10-08 11:34:22 -0700 | [diff] [blame] | 759 | "description": "The road sub branch.", |
| 760 | "longDescription": "The value shall conform to the RFC5139-defined requirements of the RDSUBBR field.", |
Ed Tanous | 118b1c7 | 2018-09-13 13:45:51 -0700 | [diff] [blame] | 761 | "readonly": false, |
| 762 | "type": [ |
| 763 | "string", |
| 764 | "null" |
Marri Devender Rao | d45d2d0 | 2019-01-21 10:11:34 -0600 | [diff] [blame] | 765 | ], |
| 766 | "versionAdded": "v1_3_0" |
Ed Tanous | 118b1c7 | 2018-09-13 13:45:51 -0700 | [diff] [blame] | 767 | }, |
| 768 | "Room": { |
Ed Tanous | cb10313 | 2019-10-08 11:34:22 -0700 | [diff] [blame] | 769 | "description": "The name or number of the room.", |
Gunnar Mills | a778c02 | 2020-05-12 12:20:36 -0500 | [diff] [blame] | 770 | "longDescription": "The value shall conform to the RFC5139-defined requirements of the ROOM field. A name or number of a room to locate the resource within the unit.", |
Ed Tanous | 118b1c7 | 2018-09-13 13:45:51 -0700 | [diff] [blame] | 771 | "readonly": false, |
| 772 | "type": [ |
| 773 | "string", |
| 774 | "null" |
Marri Devender Rao | d45d2d0 | 2019-01-21 10:11:34 -0600 | [diff] [blame] | 775 | ], |
| 776 | "versionAdded": "v1_3_0" |
Ed Tanous | 118b1c7 | 2018-09-13 13:45:51 -0700 | [diff] [blame] | 777 | }, |
| 778 | "Seat": { |
Ed Tanous | cb10313 | 2019-10-08 11:34:22 -0700 | [diff] [blame] | 779 | "description": "The seat, such as the desk, cubicle, or workstation.", |
| 780 | "longDescription": "The value shall conform to the RFC5139-defined requirements of the SEAT field. A name or number of a seat, such as the desk, cubicle, or workstation.", |
Ed Tanous | 118b1c7 | 2018-09-13 13:45:51 -0700 | [diff] [blame] | 781 | "readonly": false, |
| 782 | "type": [ |
| 783 | "string", |
| 784 | "null" |
Marri Devender Rao | d45d2d0 | 2019-01-21 10:11:34 -0600 | [diff] [blame] | 785 | ], |
| 786 | "versionAdded": "v1_3_0" |
Ed Tanous | 118b1c7 | 2018-09-13 13:45:51 -0700 | [diff] [blame] | 787 | }, |
| 788 | "Street": { |
| 789 | "description": "Street name.", |
Ed Tanous | cb10313 | 2019-10-08 11:34:22 -0700 | [diff] [blame] | 790 | "longDescription": "The value shall conform to the RFC5139-defined requirements of the A6 field. Names a street.", |
Ed Tanous | 118b1c7 | 2018-09-13 13:45:51 -0700 | [diff] [blame] | 791 | "readonly": false, |
| 792 | "type": [ |
| 793 | "string", |
| 794 | "null" |
Marri Devender Rao | d45d2d0 | 2019-01-21 10:11:34 -0600 | [diff] [blame] | 795 | ], |
| 796 | "versionAdded": "v1_3_0" |
Ed Tanous | 118b1c7 | 2018-09-13 13:45:51 -0700 | [diff] [blame] | 797 | }, |
| 798 | "StreetSuffix": { |
| 799 | "description": "Avenue, Platz, Street, Circle.", |
Ed Tanous | cb10313 | 2019-10-08 11:34:22 -0700 | [diff] [blame] | 800 | "longDescription": "The value shall conform to the RFC5139-defined requirements of the STS field. Names a street suffix.", |
Ed Tanous | 118b1c7 | 2018-09-13 13:45:51 -0700 | [diff] [blame] | 801 | "readonly": false, |
| 802 | "type": [ |
| 803 | "string", |
| 804 | "null" |
Marri Devender Rao | d45d2d0 | 2019-01-21 10:11:34 -0600 | [diff] [blame] | 805 | ], |
| 806 | "versionAdded": "v1_3_0" |
Ed Tanous | 118b1c7 | 2018-09-13 13:45:51 -0700 | [diff] [blame] | 807 | }, |
| 808 | "Territory": { |
| 809 | "description": "A top-level subdivision within a country.", |
Ed Tanous | cb10313 | 2019-10-08 11:34:22 -0700 | [diff] [blame] | 810 | "longDescription": "The value shall conform to the RFC5139-defined requirements of the A1 field when it names a territory, state, region, province, or prefecture within a country.", |
Ed Tanous | 118b1c7 | 2018-09-13 13:45:51 -0700 | [diff] [blame] | 811 | "readonly": false, |
| 812 | "type": [ |
| 813 | "string", |
| 814 | "null" |
Marri Devender Rao | d45d2d0 | 2019-01-21 10:11:34 -0600 | [diff] [blame] | 815 | ], |
| 816 | "versionAdded": "v1_3_0" |
Ed Tanous | 118b1c7 | 2018-09-13 13:45:51 -0700 | [diff] [blame] | 817 | }, |
| 818 | "TrailingStreetSuffix": { |
| 819 | "description": "A trailing street suffix.", |
Ed Tanous | cb10313 | 2019-10-08 11:34:22 -0700 | [diff] [blame] | 820 | "longDescription": "The value shall conform to the RFC5139-defined requirements of the POD field. Names a trailing street suffix.", |
Ed Tanous | 118b1c7 | 2018-09-13 13:45:51 -0700 | [diff] [blame] | 821 | "readonly": false, |
| 822 | "type": [ |
| 823 | "string", |
| 824 | "null" |
Marri Devender Rao | d45d2d0 | 2019-01-21 10:11:34 -0600 | [diff] [blame] | 825 | ], |
| 826 | "versionAdded": "v1_3_0" |
Ed Tanous | 118b1c7 | 2018-09-13 13:45:51 -0700 | [diff] [blame] | 827 | }, |
| 828 | "Unit": { |
Ed Tanous | cb10313 | 2019-10-08 11:34:22 -0700 | [diff] [blame] | 829 | "description": "The name or number of the apartment unit or suite.", |
Gunnar Mills | a778c02 | 2020-05-12 12:20:36 -0500 | [diff] [blame] | 830 | "longDescription": "The value shall conform to the RFC5139-defined requirements of the UNIT field. The name or number of a unit, such as the apartment or suite, to locate the resource.", |
Ed Tanous | 118b1c7 | 2018-09-13 13:45:51 -0700 | [diff] [blame] | 831 | "readonly": false, |
| 832 | "type": [ |
| 833 | "string", |
| 834 | "null" |
Marri Devender Rao | d45d2d0 | 2019-01-21 10:11:34 -0600 | [diff] [blame] | 835 | ], |
| 836 | "versionAdded": "v1_3_0" |
Ed Tanous | 118b1c7 | 2018-09-13 13:45:51 -0700 | [diff] [blame] | 837 | } |
| 838 | }, |
| 839 | "type": "object" |
| 840 | }, |
Ed Tanous | 118b1c7 | 2018-09-13 13:45:51 -0700 | [diff] [blame] | 841 | "RackUnits": { |
Ed Tanous | cb10313 | 2019-10-08 11:34:22 -0700 | [diff] [blame] | 842 | "description": "The type of rack unit in use.", |
Ed Tanous | 118b1c7 | 2018-09-13 13:45:51 -0700 | [diff] [blame] | 843 | "enum": [ |
| 844 | "OpenU", |
| 845 | "EIA_310" |
| 846 | ], |
| 847 | "enumDescriptions": { |
Ed Tanous | cb10313 | 2019-10-08 11:34:22 -0700 | [diff] [blame] | 848 | "EIA_310": "A rack unit that is equal to 1.75 in (44.45 mm).", |
| 849 | "OpenU": "A rack unit that is equal to 48 mm (1.89 in)." |
Ed Tanous | 118b1c7 | 2018-09-13 13:45:51 -0700 | [diff] [blame] | 850 | }, |
| 851 | "enumLongDescriptions": { |
Ed Tanous | cb10313 | 2019-10-08 11:34:22 -0700 | [diff] [blame] | 852 | "EIA_310": "Rack units shall conform to the EIA-310 standard.", |
Gunnar Mills | a778c02 | 2020-05-12 12:20:36 -0500 | [diff] [blame] | 853 | "OpenU": "Rack units shall be specified in terms of the Open Compute Open Rack Specification." |
Ed Tanous | 118b1c7 | 2018-09-13 13:45:51 -0700 | [diff] [blame] | 854 | }, |
Ed Tanous | cb10313 | 2019-10-08 11:34:22 -0700 | [diff] [blame] | 855 | "longDescription": "Enumeration literals shall name the type of rack unit in use.", |
Ed Tanous | 118b1c7 | 2018-09-13 13:45:51 -0700 | [diff] [blame] | 856 | "type": "string" |
| 857 | }, |
| 858 | "Reference": { |
Gunnar Mills | 10f270b | 2021-05-19 15:34:06 -0500 | [diff] [blame^] | 859 | "description": "The reference areas for the location of the part within an enclosure.", |
Ed Tanous | 118b1c7 | 2018-09-13 13:45:51 -0700 | [diff] [blame] | 860 | "enum": [ |
| 861 | "Top", |
| 862 | "Bottom", |
| 863 | "Front", |
| 864 | "Rear", |
| 865 | "Left", |
| 866 | "Right", |
| 867 | "Middle" |
| 868 | ], |
| 869 | "enumDescriptions": { |
Ed Tanous | cb10313 | 2019-10-08 11:34:22 -0700 | [diff] [blame] | 870 | "Bottom": "The part is in the bottom of the unit.", |
| 871 | "Front": "The part is in the front of the unit.", |
| 872 | "Left": "The part is on the left side of of the unit.", |
| 873 | "Middle": "The part is in the middle of the unit.", |
| 874 | "Rear": "The part is in the rear of the unit.", |
| 875 | "Right": "The part is on the right side of the unit.", |
| 876 | "Top": "The part is in the top of the unit." |
Ed Tanous | 118b1c7 | 2018-09-13 13:45:51 -0700 | [diff] [blame] | 877 | }, |
| 878 | "enumLongDescriptions": { |
Gunnar Mills | 10f270b | 2021-05-19 15:34:06 -0500 | [diff] [blame^] | 879 | "Bottom": "This value shall indicate the part is in the bottom of the unit.", |
| 880 | "Front": "This value shall indicate the part is in the front of the unit.", |
| 881 | "Left": "This value shall indicate the part is on the left side of of the unit.", |
| 882 | "Middle": "This value shall indicate the part is in the middle of the unit.", |
| 883 | "Rear": "This value shall indicate the part is in the rear of the unit.", |
| 884 | "Right": "This value shall indicate the part is on the right side of the unit.", |
| 885 | "Top": "This value shall indicate the part is in the top of the unit." |
Ed Tanous | 118b1c7 | 2018-09-13 13:45:51 -0700 | [diff] [blame] | 886 | }, |
Gunnar Mills | 10f270b | 2021-05-19 15:34:06 -0500 | [diff] [blame^] | 887 | "longDescription": "This enumeration shall list the reference areas for the location of the part within an enclosure.", |
Ed Tanous | 118b1c7 | 2018-09-13 13:45:51 -0700 | [diff] [blame] | 888 | "type": "string" |
| 889 | }, |
| 890 | "ReferenceableMember": { |
| 891 | "additionalProperties": false, |
Ed Tanous | cb10313 | 2019-10-08 11:34:22 -0700 | [diff] [blame] | 892 | "description": "The base type for addressable members of an array.", |
Gunnar Mills | 844b415 | 2020-06-22 12:44:09 -0500 | [diff] [blame] | 893 | "longDescription": "References array members by using the value returned in the @odata.id property, which can be a dereferenceable URL. The @odata.id of this entity shall contain the location of this element within an item.", |
Ed Tanous | 118b1c7 | 2018-09-13 13:45:51 -0700 | [diff] [blame] | 894 | "patternProperties": { |
Ed Tanous | cb10313 | 2019-10-08 11:34:22 -0700 | [diff] [blame] | 895 | "^([a-zA-Z_][a-zA-Z0-9_]*)?@(odata|Redfish|Message)\\.[a-zA-Z_][a-zA-Z0-9_]*$": { |
Ed Tanous | 118b1c7 | 2018-09-13 13:45:51 -0700 | [diff] [blame] | 896 | "description": "This property shall specify a valid odata or Redfish property.", |
| 897 | "type": [ |
| 898 | "array", |
| 899 | "boolean", |
Ed Tanous | 530520e | 2019-01-02 13:41:37 -0800 | [diff] [blame] | 900 | "integer", |
Ed Tanous | 118b1c7 | 2018-09-13 13:45:51 -0700 | [diff] [blame] | 901 | "number", |
| 902 | "null", |
| 903 | "object", |
| 904 | "string" |
| 905 | ] |
| 906 | } |
| 907 | }, |
| 908 | "properties": { |
Ed Tanous | 530520e | 2019-01-02 13:41:37 -0800 | [diff] [blame] | 909 | "@odata.id": { |
Ed Tanous | cb10313 | 2019-10-08 11:34:22 -0700 | [diff] [blame] | 910 | "$ref": "http://redfish.dmtf.org/schemas/v1/odata-v4.json#/definitions/id" |
Ed Tanous | 530520e | 2019-01-02 13:41:37 -0800 | [diff] [blame] | 911 | }, |
Ed Tanous | 118b1c7 | 2018-09-13 13:45:51 -0700 | [diff] [blame] | 912 | "MemberId": { |
Ed Tanous | cb10313 | 2019-10-08 11:34:22 -0700 | [diff] [blame] | 913 | "description": "The identifier for the member within the collection.", |
| 914 | "longDescription": "This property shall uniquely identify the member within the collection. For services supporting Redfish v1.6 or higher, this value shall contain the zero-based array index.", |
Ed Tanous | 118b1c7 | 2018-09-13 13:45:51 -0700 | [diff] [blame] | 915 | "readonly": true, |
| 916 | "type": "string" |
| 917 | }, |
| 918 | "Oem": { |
| 919 | "$ref": "http://redfish.dmtf.org/schemas/v1/Resource.json#/definitions/Oem", |
Ed Tanous | cb10313 | 2019-10-08 11:34:22 -0700 | [diff] [blame] | 920 | "description": "The OEM extension property.", |
| 921 | "longDescription": "This property shall contain the OEM extensions. All values for properties that this object contains shall conform to the Redfish Specification-described requirements." |
Ed Tanous | 118b1c7 | 2018-09-13 13:45:51 -0700 | [diff] [blame] | 922 | } |
| 923 | }, |
Ed Tanous | 530520e | 2019-01-02 13:41:37 -0800 | [diff] [blame] | 924 | "required": [ |
| 925 | "MemberId", |
| 926 | "@odata.id" |
| 927 | ], |
Ed Tanous | 118b1c7 | 2018-09-13 13:45:51 -0700 | [diff] [blame] | 928 | "type": "object" |
| 929 | }, |
| 930 | "Resource": { |
| 931 | "additionalProperties": false, |
Gunnar Mills | a778c02 | 2020-05-12 12:20:36 -0500 | [diff] [blame] | 932 | "description": "The base type for resources and members that can be linked to.", |
Ed Tanous | 118b1c7 | 2018-09-13 13:45:51 -0700 | [diff] [blame] | 933 | "patternProperties": { |
Ed Tanous | cb10313 | 2019-10-08 11:34:22 -0700 | [diff] [blame] | 934 | "^([a-zA-Z_][a-zA-Z0-9_]*)?@(odata|Redfish|Message)\\.[a-zA-Z_][a-zA-Z0-9_]*$": { |
Ed Tanous | 118b1c7 | 2018-09-13 13:45:51 -0700 | [diff] [blame] | 935 | "description": "This property shall specify a valid odata or Redfish property.", |
| 936 | "type": [ |
| 937 | "array", |
| 938 | "boolean", |
Ed Tanous | 530520e | 2019-01-02 13:41:37 -0800 | [diff] [blame] | 939 | "integer", |
Ed Tanous | 118b1c7 | 2018-09-13 13:45:51 -0700 | [diff] [blame] | 940 | "number", |
| 941 | "null", |
| 942 | "object", |
| 943 | "string" |
| 944 | ] |
| 945 | } |
| 946 | }, |
| 947 | "properties": { |
| 948 | "@odata.context": { |
Ed Tanous | cb10313 | 2019-10-08 11:34:22 -0700 | [diff] [blame] | 949 | "$ref": "http://redfish.dmtf.org/schemas/v1/odata-v4.json#/definitions/context" |
Ed Tanous | 530520e | 2019-01-02 13:41:37 -0800 | [diff] [blame] | 950 | }, |
| 951 | "@odata.etag": { |
Ed Tanous | cb10313 | 2019-10-08 11:34:22 -0700 | [diff] [blame] | 952 | "$ref": "http://redfish.dmtf.org/schemas/v1/odata-v4.json#/definitions/etag" |
Ed Tanous | 118b1c7 | 2018-09-13 13:45:51 -0700 | [diff] [blame] | 953 | }, |
| 954 | "@odata.id": { |
Ed Tanous | cb10313 | 2019-10-08 11:34:22 -0700 | [diff] [blame] | 955 | "$ref": "http://redfish.dmtf.org/schemas/v1/odata-v4.json#/definitions/id" |
Ed Tanous | 118b1c7 | 2018-09-13 13:45:51 -0700 | [diff] [blame] | 956 | }, |
| 957 | "@odata.type": { |
Ed Tanous | cb10313 | 2019-10-08 11:34:22 -0700 | [diff] [blame] | 958 | "$ref": "http://redfish.dmtf.org/schemas/v1/odata-v4.json#/definitions/type" |
Ed Tanous | 118b1c7 | 2018-09-13 13:45:51 -0700 | [diff] [blame] | 959 | }, |
| 960 | "Description": { |
| 961 | "anyOf": [ |
| 962 | { |
| 963 | "$ref": "http://redfish.dmtf.org/schemas/v1/Resource.json#/definitions/Description" |
| 964 | }, |
| 965 | { |
| 966 | "type": "null" |
| 967 | } |
| 968 | ], |
| 969 | "readonly": true |
| 970 | }, |
| 971 | "Id": { |
| 972 | "$ref": "http://redfish.dmtf.org/schemas/v1/Resource.json#/definitions/Id", |
| 973 | "readonly": true |
| 974 | }, |
| 975 | "Name": { |
| 976 | "$ref": "http://redfish.dmtf.org/schemas/v1/Resource.json#/definitions/Name", |
| 977 | "readonly": true |
| 978 | }, |
| 979 | "Oem": { |
| 980 | "$ref": "http://redfish.dmtf.org/schemas/v1/Resource.json#/definitions/Oem", |
Ed Tanous | cb10313 | 2019-10-08 11:34:22 -0700 | [diff] [blame] | 981 | "description": "The OEM extension property.", |
| 982 | "longDescription": "This property shall contain the OEM extensions. All values for properties that this object contains shall conform to the Redfish Specification-described requirements." |
Ed Tanous | 118b1c7 | 2018-09-13 13:45:51 -0700 | [diff] [blame] | 983 | } |
| 984 | }, |
| 985 | "required": [ |
| 986 | "Id", |
Ed Tanous | 530520e | 2019-01-02 13:41:37 -0800 | [diff] [blame] | 987 | "Name", |
| 988 | "@odata.id", |
| 989 | "@odata.type" |
Ed Tanous | 118b1c7 | 2018-09-13 13:45:51 -0700 | [diff] [blame] | 990 | ], |
| 991 | "type": "object" |
| 992 | }, |
| 993 | "ResourceCollection": { |
| 994 | "additionalProperties": false, |
| 995 | "patternProperties": { |
Ed Tanous | cb10313 | 2019-10-08 11:34:22 -0700 | [diff] [blame] | 996 | "^([a-zA-Z_][a-zA-Z0-9_]*)?@(odata|Redfish|Message)\\.[a-zA-Z_][a-zA-Z0-9_]*$": { |
Ed Tanous | 118b1c7 | 2018-09-13 13:45:51 -0700 | [diff] [blame] | 997 | "description": "This property shall specify a valid odata or Redfish property.", |
| 998 | "type": [ |
| 999 | "array", |
| 1000 | "boolean", |
Ed Tanous | 530520e | 2019-01-02 13:41:37 -0800 | [diff] [blame] | 1001 | "integer", |
Ed Tanous | 118b1c7 | 2018-09-13 13:45:51 -0700 | [diff] [blame] | 1002 | "number", |
| 1003 | "null", |
| 1004 | "object", |
| 1005 | "string" |
| 1006 | ] |
| 1007 | } |
| 1008 | }, |
| 1009 | "properties": { |
| 1010 | "@odata.context": { |
Ed Tanous | cb10313 | 2019-10-08 11:34:22 -0700 | [diff] [blame] | 1011 | "$ref": "http://redfish.dmtf.org/schemas/v1/odata-v4.json#/definitions/context" |
Ed Tanous | 530520e | 2019-01-02 13:41:37 -0800 | [diff] [blame] | 1012 | }, |
| 1013 | "@odata.etag": { |
Ed Tanous | cb10313 | 2019-10-08 11:34:22 -0700 | [diff] [blame] | 1014 | "$ref": "http://redfish.dmtf.org/schemas/v1/odata-v4.json#/definitions/etag" |
Ed Tanous | 118b1c7 | 2018-09-13 13:45:51 -0700 | [diff] [blame] | 1015 | }, |
| 1016 | "@odata.id": { |
Ed Tanous | cb10313 | 2019-10-08 11:34:22 -0700 | [diff] [blame] | 1017 | "$ref": "http://redfish.dmtf.org/schemas/v1/odata-v4.json#/definitions/id" |
Ed Tanous | 118b1c7 | 2018-09-13 13:45:51 -0700 | [diff] [blame] | 1018 | }, |
| 1019 | "@odata.type": { |
Ed Tanous | cb10313 | 2019-10-08 11:34:22 -0700 | [diff] [blame] | 1020 | "$ref": "http://redfish.dmtf.org/schemas/v1/odata-v4.json#/definitions/type" |
Ed Tanous | 118b1c7 | 2018-09-13 13:45:51 -0700 | [diff] [blame] | 1021 | }, |
| 1022 | "Description": { |
| 1023 | "anyOf": [ |
| 1024 | { |
| 1025 | "$ref": "http://redfish.dmtf.org/schemas/v1/Resource.json#/definitions/Description" |
| 1026 | }, |
| 1027 | { |
| 1028 | "type": "null" |
| 1029 | } |
| 1030 | ], |
| 1031 | "readonly": true |
| 1032 | }, |
| 1033 | "Name": { |
| 1034 | "$ref": "http://redfish.dmtf.org/schemas/v1/Resource.json#/definitions/Name", |
| 1035 | "readonly": true |
| 1036 | }, |
| 1037 | "Oem": { |
| 1038 | "$ref": "http://redfish.dmtf.org/schemas/v1/Resource.json#/definitions/Oem", |
Ed Tanous | cb10313 | 2019-10-08 11:34:22 -0700 | [diff] [blame] | 1039 | "description": "The OEM extension property.", |
| 1040 | "longDescription": "This property shall contain the OEM extensions. All values for properties contained in this object shall conform to the Redfish Specification-described requirements." |
Ed Tanous | 118b1c7 | 2018-09-13 13:45:51 -0700 | [diff] [blame] | 1041 | } |
| 1042 | }, |
Ed Tanous | 530520e | 2019-01-02 13:41:37 -0800 | [diff] [blame] | 1043 | "required": [ |
| 1044 | "Name", |
| 1045 | "@odata.id", |
| 1046 | "@odata.type" |
| 1047 | ], |
Ed Tanous | 118b1c7 | 2018-09-13 13:45:51 -0700 | [diff] [blame] | 1048 | "type": "object" |
| 1049 | } |
| 1050 | }, |
Ed Tanous | 530520e | 2019-01-02 13:41:37 -0800 | [diff] [blame] | 1051 | "owningEntity": "DMTF", |
Gunnar Mills | 10f270b | 2021-05-19 15:34:06 -0500 | [diff] [blame^] | 1052 | "release": "2021.1", |
| 1053 | "title": "#Resource.v1_12_0" |
Ed Tanous | 118b1c7 | 2018-09-13 13:45:51 -0700 | [diff] [blame] | 1054 | } |