blob: a1701345cf93d25c98b7c49769d0d5e6531aed9c [file] [log] [blame]
Ed Tanous118b1c72018-09-13 13:45:51 -07001{
Ed Tanous530520e2019-01-02 13:41:37 -08002 "$schema": "http://redfish.dmtf.org/schemas/v1/redfish-schema.v1_4_0.json",
Ed Tanous118b1c72018-09-13 13:45:51 -07003 "definitions": {
4 "context": {
5 "type": "string",
6 "format": "uri",
7 "readonly": true,
8 "description": "The OData description of a payload.",
9 "longDescription": "The value of this property shall be the context URL that describes the resource according to OData-Protocol and shall be of the form defined in the Redfish specification."
10 },
11 "id": {
12 "type": "string",
13 "format": "uri",
14 "readonly": true,
15 "description": "The unique identifier for a resource.",
16 "longDescription": "The value of this property shall be the unique identifier for the resource and it shall be of the form defined in the Redfish specification."
17 },
18 "idRef": {
19 "type": "object",
20 "properties": {
21 "@odata.id": {
22 "$ref": "#/definitions/id"
23 }
24 },
25 "additionalProperties": false,
26 "description": "A reference to a resource.",
27 "longDescription": "The value of this property shall be used for references to a resource."
28 },
29 "type": {
30 "type": "string",
31 "readonly": true,
32 "description": "The type of a resource.",
Ed Tanous530520e2019-01-02 13:41:37 -080033 "longDescription": "The value of this property shall be a URI fragment that specifies the type of the resource and it shall be of the form defined in the Redfish specification."
Ed Tanous118b1c72018-09-13 13:45:51 -070034 },
35 "count": {
Ed Tanous530520e2019-01-02 13:41:37 -080036 "type": "integer",
Ed Tanous118b1c72018-09-13 13:45:51 -070037 "readonly": true,
38 "description": "The number of items in a collection.",
39 "longDescription": "The value of this property shall be an integer representing the number of items in a collection."
40 },
41 "etag": {
42 "type": "string",
43 "readonly": true,
44 "description": "The current ETag of the resource.",
45 "longDescription": "The value of this property shall be a string that is defined by the ETag HTTP header definition in RFC7232."
Ed Tanous530520e2019-01-02 13:41:37 -080046 },
47 "nextLink": {
48 "type": "string",
49 "format": "uri",
50 "readonly": true,
51 "description": "The URI to the resource containing the next set of partial members.",
52 "longDescription": "The value of this property shall be a URI to a resource, with the same @odata.type, containing the next set of partial members."
Ed Tanous118b1c72018-09-13 13:45:51 -070053 }
54 }
55}