1*f2a8e57eSGunnar Mills{
2*f2a8e57eSGunnar Mills    "$id": "http://redfish.dmtf.org/schemas/v1/SerialInterface.v1_2_1.json",
3*f2a8e57eSGunnar Mills    "$ref": "#/definitions/SerialInterface",
4*f2a8e57eSGunnar Mills    "$schema": "http://redfish.dmtf.org/schemas/v1/redfish-schema-v1.json",
5*f2a8e57eSGunnar Mills    "copyright": "Copyright 2014-2024 DMTF. For the full DMTF copyright policy, see http://www.dmtf.org/about/policies/copyright",
6*f2a8e57eSGunnar Mills    "definitions": {
7*f2a8e57eSGunnar Mills        "Actions": {
8*f2a8e57eSGunnar Mills            "additionalProperties": false,
9*f2a8e57eSGunnar Mills            "description": "The available actions for this resource.",
10*f2a8e57eSGunnar Mills            "longDescription": "This type shall contain the available actions for this resource.",
11*f2a8e57eSGunnar Mills            "patternProperties": {
12*f2a8e57eSGunnar Mills                "^([a-zA-Z_][a-zA-Z0-9_]*)?@(odata|Redfish|Message)\\.[a-zA-Z_][a-zA-Z0-9_]*$": {
13*f2a8e57eSGunnar Mills                    "description": "This property shall specify a valid odata or Redfish property.",
14*f2a8e57eSGunnar Mills                    "type": [
15*f2a8e57eSGunnar Mills                        "array",
16*f2a8e57eSGunnar Mills                        "boolean",
17*f2a8e57eSGunnar Mills                        "integer",
18*f2a8e57eSGunnar Mills                        "number",
19*f2a8e57eSGunnar Mills                        "null",
20*f2a8e57eSGunnar Mills                        "object",
21*f2a8e57eSGunnar Mills                        "string"
22*f2a8e57eSGunnar Mills                    ]
23*f2a8e57eSGunnar Mills                }
24*f2a8e57eSGunnar Mills            },
25*f2a8e57eSGunnar Mills            "properties": {
26*f2a8e57eSGunnar Mills                "Oem": {
27*f2a8e57eSGunnar Mills                    "$ref": "#/definitions/OemActions",
28*f2a8e57eSGunnar Mills                    "description": "The available OEM-specific actions for this resource.",
29*f2a8e57eSGunnar Mills                    "longDescription": "This property shall contain the available OEM-specific actions for this resource.",
30*f2a8e57eSGunnar Mills                    "versionAdded": "v1_1_0"
31*f2a8e57eSGunnar Mills                }
32*f2a8e57eSGunnar Mills            },
33*f2a8e57eSGunnar Mills            "type": "object"
34*f2a8e57eSGunnar Mills        },
35*f2a8e57eSGunnar Mills        "BitRate": {
36*f2a8e57eSGunnar Mills            "enum": [
37*f2a8e57eSGunnar Mills                "1200",
38*f2a8e57eSGunnar Mills                "2400",
39*f2a8e57eSGunnar Mills                "4800",
40*f2a8e57eSGunnar Mills                "9600",
41*f2a8e57eSGunnar Mills                "19200",
42*f2a8e57eSGunnar Mills                "38400",
43*f2a8e57eSGunnar Mills                "57600",
44*f2a8e57eSGunnar Mills                "115200",
45*f2a8e57eSGunnar Mills                "230400"
46*f2a8e57eSGunnar Mills            ],
47*f2a8e57eSGunnar Mills            "enumDescriptions": {
48*f2a8e57eSGunnar Mills                "115200": "A bit rate of 115200 bit/s.",
49*f2a8e57eSGunnar Mills                "1200": "A bit rate of 1200 bit/s.",
50*f2a8e57eSGunnar Mills                "19200": "A bit rate of 19200 bit/s.",
51*f2a8e57eSGunnar Mills                "230400": "A bit rate of 230400 bit/s.",
52*f2a8e57eSGunnar Mills                "2400": "A bit rate of 2400 bit/s.",
53*f2a8e57eSGunnar Mills                "38400": "A bit rate of 38400 bit/s.",
54*f2a8e57eSGunnar Mills                "4800": "A bit rate of 4800 bit/s.",
55*f2a8e57eSGunnar Mills                "57600": "A bit rate of 57600 bit/s.",
56*f2a8e57eSGunnar Mills                "9600": "A bit rate of 9600 bit/s."
57*f2a8e57eSGunnar Mills            },
58*f2a8e57eSGunnar Mills            "type": "string"
59*f2a8e57eSGunnar Mills        },
60*f2a8e57eSGunnar Mills        "ConnectorType": {
61*f2a8e57eSGunnar Mills            "enum": [
62*f2a8e57eSGunnar Mills                "RJ45",
63*f2a8e57eSGunnar Mills                "RJ11",
64*f2a8e57eSGunnar Mills                "DB9 Female",
65*f2a8e57eSGunnar Mills                "DB9 Male",
66*f2a8e57eSGunnar Mills                "DB25 Female",
67*f2a8e57eSGunnar Mills                "DB25 Male",
68*f2a8e57eSGunnar Mills                "USB",
69*f2a8e57eSGunnar Mills                "mUSB",
70*f2a8e57eSGunnar Mills                "uUSB"
71*f2a8e57eSGunnar Mills            ],
72*f2a8e57eSGunnar Mills            "enumDescriptions": {
73*f2a8e57eSGunnar Mills                "DB25 Female": "A DB25 Female connector.",
74*f2a8e57eSGunnar Mills                "DB25 Male": "A DB25 Male connector.",
75*f2a8e57eSGunnar Mills                "DB9 Female": "A DB9 Female connector.",
76*f2a8e57eSGunnar Mills                "DB9 Male": "A DB9 Male connector.",
77*f2a8e57eSGunnar Mills                "RJ11": "An RJ11 connector.",
78*f2a8e57eSGunnar Mills                "RJ45": "An RJ45 connector.",
79*f2a8e57eSGunnar Mills                "USB": "A USB connector.",
80*f2a8e57eSGunnar Mills                "mUSB": "A mUSB connector.",
81*f2a8e57eSGunnar Mills                "uUSB": "A uUSB connector."
82*f2a8e57eSGunnar Mills            },
83*f2a8e57eSGunnar Mills            "type": "string"
84*f2a8e57eSGunnar Mills        },
85*f2a8e57eSGunnar Mills        "DataBits": {
86*f2a8e57eSGunnar Mills            "enum": [
87*f2a8e57eSGunnar Mills                "5",
88*f2a8e57eSGunnar Mills                "6",
89*f2a8e57eSGunnar Mills                "7",
90*f2a8e57eSGunnar Mills                "8"
91*f2a8e57eSGunnar Mills            ],
92*f2a8e57eSGunnar Mills            "enumDescriptions": {
93*f2a8e57eSGunnar Mills                "5": "Five bits of data following the start bit.",
94*f2a8e57eSGunnar Mills                "6": "Six bits of data following the start bit.",
95*f2a8e57eSGunnar Mills                "7": "Seven bits of data following the start bit.",
96*f2a8e57eSGunnar Mills                "8": "Eight bits of data following the start bit."
97*f2a8e57eSGunnar Mills            },
98*f2a8e57eSGunnar Mills            "type": "string"
99*f2a8e57eSGunnar Mills        },
100*f2a8e57eSGunnar Mills        "FlowControl": {
101*f2a8e57eSGunnar Mills            "enum": [
102*f2a8e57eSGunnar Mills                "None",
103*f2a8e57eSGunnar Mills                "Software",
104*f2a8e57eSGunnar Mills                "Hardware"
105*f2a8e57eSGunnar Mills            ],
106*f2a8e57eSGunnar Mills            "enumDescriptions": {
107*f2a8e57eSGunnar Mills                "Hardware": "Out-of-band flow control imposed.",
108*f2a8e57eSGunnar Mills                "None": "No flow control imposed.",
109*f2a8e57eSGunnar Mills                "Software": "XON/XOFF in-band flow control imposed."
110*f2a8e57eSGunnar Mills            },
111*f2a8e57eSGunnar Mills            "type": "string"
112*f2a8e57eSGunnar Mills        },
113*f2a8e57eSGunnar Mills        "Links": {
114*f2a8e57eSGunnar Mills            "additionalProperties": false,
115*f2a8e57eSGunnar Mills            "description": "The links to other resources that are related to this resource.",
116*f2a8e57eSGunnar Mills            "longDescription": "This Redfish Specification-described type shall contain links to resources that are related to but are not contained by, or subordinate to, this resource.",
117*f2a8e57eSGunnar Mills            "patternProperties": {
118*f2a8e57eSGunnar Mills                "^([a-zA-Z_][a-zA-Z0-9_]*)?@(odata|Redfish|Message)\\.[a-zA-Z_][a-zA-Z0-9_]*$": {
119*f2a8e57eSGunnar Mills                    "description": "This property shall specify a valid odata or Redfish property.",
120*f2a8e57eSGunnar Mills                    "type": [
121*f2a8e57eSGunnar Mills                        "array",
122*f2a8e57eSGunnar Mills                        "boolean",
123*f2a8e57eSGunnar Mills                        "integer",
124*f2a8e57eSGunnar Mills                        "number",
125*f2a8e57eSGunnar Mills                        "null",
126*f2a8e57eSGunnar Mills                        "object",
127*f2a8e57eSGunnar Mills                        "string"
128*f2a8e57eSGunnar Mills                    ]
129*f2a8e57eSGunnar Mills                }
130*f2a8e57eSGunnar Mills            },
131*f2a8e57eSGunnar Mills            "properties": {
132*f2a8e57eSGunnar Mills                "Oem": {
133*f2a8e57eSGunnar Mills                    "$ref": "http://redfish.dmtf.org/schemas/v1/Resource.json#/definitions/Oem",
134*f2a8e57eSGunnar Mills                    "description": "The OEM extension property.",
135*f2a8e57eSGunnar Mills                    "longDescription": "This property shall contain the OEM extensions.  All values for properties contained in this object shall conform to the Redfish Specification-described requirements."
136*f2a8e57eSGunnar Mills                }
137*f2a8e57eSGunnar Mills            },
138*f2a8e57eSGunnar Mills            "type": "object"
139*f2a8e57eSGunnar Mills        },
140*f2a8e57eSGunnar Mills        "OemActions": {
141*f2a8e57eSGunnar Mills            "additionalProperties": true,
142*f2a8e57eSGunnar Mills            "description": "The available OEM-specific actions for this resource.",
143*f2a8e57eSGunnar Mills            "longDescription": "This type shall contain the available OEM-specific actions for this resource.",
144*f2a8e57eSGunnar Mills            "patternProperties": {
145*f2a8e57eSGunnar Mills                "^([a-zA-Z_][a-zA-Z0-9_]*)?@(odata|Redfish|Message)\\.[a-zA-Z_][a-zA-Z0-9_]*$": {
146*f2a8e57eSGunnar Mills                    "description": "This property shall specify a valid odata or Redfish property.",
147*f2a8e57eSGunnar Mills                    "type": [
148*f2a8e57eSGunnar Mills                        "array",
149*f2a8e57eSGunnar Mills                        "boolean",
150*f2a8e57eSGunnar Mills                        "integer",
151*f2a8e57eSGunnar Mills                        "number",
152*f2a8e57eSGunnar Mills                        "null",
153*f2a8e57eSGunnar Mills                        "object",
154*f2a8e57eSGunnar Mills                        "string"
155*f2a8e57eSGunnar Mills                    ]
156*f2a8e57eSGunnar Mills                }
157*f2a8e57eSGunnar Mills            },
158*f2a8e57eSGunnar Mills            "properties": {},
159*f2a8e57eSGunnar Mills            "type": "object"
160*f2a8e57eSGunnar Mills        },
161*f2a8e57eSGunnar Mills        "Parity": {
162*f2a8e57eSGunnar Mills            "enum": [
163*f2a8e57eSGunnar Mills                "None",
164*f2a8e57eSGunnar Mills                "Even",
165*f2a8e57eSGunnar Mills                "Odd",
166*f2a8e57eSGunnar Mills                "Mark",
167*f2a8e57eSGunnar Mills                "Space"
168*f2a8e57eSGunnar Mills            ],
169*f2a8e57eSGunnar Mills            "enumDescriptions": {
170*f2a8e57eSGunnar Mills                "Even": "An even parity bit.",
171*f2a8e57eSGunnar Mills                "Mark": "A mark parity bit.",
172*f2a8e57eSGunnar Mills                "None": "No parity bit.",
173*f2a8e57eSGunnar Mills                "Odd": "An odd parity bit.",
174*f2a8e57eSGunnar Mills                "Space": "A space parity bit."
175*f2a8e57eSGunnar Mills            },
176*f2a8e57eSGunnar Mills            "type": "string"
177*f2a8e57eSGunnar Mills        },
178*f2a8e57eSGunnar Mills        "PinOut": {
179*f2a8e57eSGunnar Mills            "enum": [
180*f2a8e57eSGunnar Mills                "Cisco",
181*f2a8e57eSGunnar Mills                "Cyclades",
182*f2a8e57eSGunnar Mills                "Digi"
183*f2a8e57eSGunnar Mills            ],
184*f2a8e57eSGunnar Mills            "enumDescriptions": {
185*f2a8e57eSGunnar Mills                "Cisco": "The Cisco pinout configuration.",
186*f2a8e57eSGunnar Mills                "Cyclades": "The Cyclades pinout configuration.",
187*f2a8e57eSGunnar Mills                "Digi": "The Digi pinout configuration."
188*f2a8e57eSGunnar Mills            },
189*f2a8e57eSGunnar Mills            "type": "string"
190*f2a8e57eSGunnar Mills        },
191*f2a8e57eSGunnar Mills        "SerialInterface": {
192*f2a8e57eSGunnar Mills            "additionalProperties": false,
193*f2a8e57eSGunnar Mills            "description": "The `SerialInterface` schema describes an asynchronous serial interface, such as an RS-232 interface, available to a system or device.",
194*f2a8e57eSGunnar Mills            "longDescription": "This resource shall represent a serial interface as part of the Redfish Specification.",
195*f2a8e57eSGunnar Mills            "patternProperties": {
196*f2a8e57eSGunnar Mills                "^([a-zA-Z_][a-zA-Z0-9_]*)?@(odata|Redfish|Message)\\.[a-zA-Z_][a-zA-Z0-9_]*$": {
197*f2a8e57eSGunnar Mills                    "description": "This property shall specify a valid odata or Redfish property.",
198*f2a8e57eSGunnar Mills                    "type": [
199*f2a8e57eSGunnar Mills                        "array",
200*f2a8e57eSGunnar Mills                        "boolean",
201*f2a8e57eSGunnar Mills                        "integer",
202*f2a8e57eSGunnar Mills                        "number",
203*f2a8e57eSGunnar Mills                        "null",
204*f2a8e57eSGunnar Mills                        "object",
205*f2a8e57eSGunnar Mills                        "string"
206*f2a8e57eSGunnar Mills                    ]
207*f2a8e57eSGunnar Mills                }
208*f2a8e57eSGunnar Mills            },
209*f2a8e57eSGunnar Mills            "properties": {
210*f2a8e57eSGunnar Mills                "@odata.context": {
211*f2a8e57eSGunnar Mills                    "$ref": "http://redfish.dmtf.org/schemas/v1/odata-v4.json#/definitions/context"
212*f2a8e57eSGunnar Mills                },
213*f2a8e57eSGunnar Mills                "@odata.etag": {
214*f2a8e57eSGunnar Mills                    "$ref": "http://redfish.dmtf.org/schemas/v1/odata-v4.json#/definitions/etag"
215*f2a8e57eSGunnar Mills                },
216*f2a8e57eSGunnar Mills                "@odata.id": {
217*f2a8e57eSGunnar Mills                    "$ref": "http://redfish.dmtf.org/schemas/v1/odata-v4.json#/definitions/id"
218*f2a8e57eSGunnar Mills                },
219*f2a8e57eSGunnar Mills                "@odata.type": {
220*f2a8e57eSGunnar Mills                    "$ref": "http://redfish.dmtf.org/schemas/v1/odata-v4.json#/definitions/type"
221*f2a8e57eSGunnar Mills                },
222*f2a8e57eSGunnar Mills                "Actions": {
223*f2a8e57eSGunnar Mills                    "$ref": "#/definitions/Actions",
224*f2a8e57eSGunnar Mills                    "description": "The available actions for this resource.",
225*f2a8e57eSGunnar Mills                    "longDescription": "This property shall contain the available actions for this resource.",
226*f2a8e57eSGunnar Mills                    "versionAdded": "v1_1_0"
227*f2a8e57eSGunnar Mills                },
228*f2a8e57eSGunnar Mills                "BitRate": {
229*f2a8e57eSGunnar Mills                    "$ref": "#/definitions/BitRate",
230*f2a8e57eSGunnar Mills                    "description": "The receive and transmit rate of data flow, typically in bits per second (bit/s), over the serial connection.",
231*f2a8e57eSGunnar Mills                    "longDescription": "This property shall indicate the transmit and receive speed of the serial connection.",
232*f2a8e57eSGunnar Mills                    "readonly": false
233*f2a8e57eSGunnar Mills                },
234*f2a8e57eSGunnar Mills                "ConnectorType": {
235*f2a8e57eSGunnar Mills                    "$ref": "#/definitions/ConnectorType",
236*f2a8e57eSGunnar Mills                    "description": "The type of connector used for this interface.",
237*f2a8e57eSGunnar Mills                    "longDescription": "This property shall indicate the type of physical connector used for this serial connection.",
238*f2a8e57eSGunnar Mills                    "readonly": true
239*f2a8e57eSGunnar Mills                },
240*f2a8e57eSGunnar Mills                "DataBits": {
241*f2a8e57eSGunnar Mills                    "$ref": "#/definitions/DataBits",
242*f2a8e57eSGunnar Mills                    "description": "The number of data bits that follow the start bit over the serial connection.",
243*f2a8e57eSGunnar Mills                    "longDescription": "This property shall indicate number of data bits for the serial connection.",
244*f2a8e57eSGunnar Mills                    "readonly": false
245*f2a8e57eSGunnar Mills                },
246*f2a8e57eSGunnar Mills                "Description": {
247*f2a8e57eSGunnar Mills                    "anyOf": [
248*f2a8e57eSGunnar Mills                        {
249*f2a8e57eSGunnar Mills                            "$ref": "http://redfish.dmtf.org/schemas/v1/Resource.json#/definitions/Description"
250*f2a8e57eSGunnar Mills                        },
251*f2a8e57eSGunnar Mills                        {
252*f2a8e57eSGunnar Mills                            "type": "null"
253*f2a8e57eSGunnar Mills                        }
254*f2a8e57eSGunnar Mills                    ],
255*f2a8e57eSGunnar Mills                    "readonly": true
256*f2a8e57eSGunnar Mills                },
257*f2a8e57eSGunnar Mills                "FlowControl": {
258*f2a8e57eSGunnar Mills                    "$ref": "#/definitions/FlowControl",
259*f2a8e57eSGunnar Mills                    "description": "The type of flow control, if any, that is imposed on the serial connection.",
260*f2a8e57eSGunnar Mills                    "longDescription": "This property shall indicate the flow control mechanism for the serial connection.",
261*f2a8e57eSGunnar Mills                    "readonly": false
262*f2a8e57eSGunnar Mills                },
263*f2a8e57eSGunnar Mills                "Id": {
264*f2a8e57eSGunnar Mills                    "$ref": "http://redfish.dmtf.org/schemas/v1/Resource.json#/definitions/Id",
265*f2a8e57eSGunnar Mills                    "readonly": true
266*f2a8e57eSGunnar Mills                },
267*f2a8e57eSGunnar Mills                "InterfaceEnabled": {
268*f2a8e57eSGunnar Mills                    "description": "An indication of whether this interface is enabled.",
269*f2a8e57eSGunnar Mills                    "longDescription": "This property shall indicate whether this interface is enabled.",
270*f2a8e57eSGunnar Mills                    "readonly": false,
271*f2a8e57eSGunnar Mills                    "type": [
272*f2a8e57eSGunnar Mills                        "boolean",
273*f2a8e57eSGunnar Mills                        "null"
274*f2a8e57eSGunnar Mills                    ]
275*f2a8e57eSGunnar Mills                },
276*f2a8e57eSGunnar Mills                "Links": {
277*f2a8e57eSGunnar Mills                    "$ref": "#/definitions/Links",
278*f2a8e57eSGunnar Mills                    "description": "The links to other resources that are related to this resource.",
279*f2a8e57eSGunnar Mills                    "longDescription": "This property shall contain links to resources that are related to but are not contained by, or subordinate to, this resource.",
280*f2a8e57eSGunnar Mills                    "versionAdded": "v1_2_0"
281*f2a8e57eSGunnar Mills                },
282*f2a8e57eSGunnar Mills                "Name": {
283*f2a8e57eSGunnar Mills                    "$ref": "http://redfish.dmtf.org/schemas/v1/Resource.json#/definitions/Name",
284*f2a8e57eSGunnar Mills                    "readonly": true
285*f2a8e57eSGunnar Mills                },
286*f2a8e57eSGunnar Mills                "Oem": {
287*f2a8e57eSGunnar Mills                    "$ref": "http://redfish.dmtf.org/schemas/v1/Resource.json#/definitions/Oem",
288*f2a8e57eSGunnar Mills                    "description": "The OEM extension property.",
289*f2a8e57eSGunnar Mills                    "longDescription": "This property shall contain the OEM extensions.  All values for properties that this object contains shall conform to the Redfish Specification-described requirements."
290*f2a8e57eSGunnar Mills                },
291*f2a8e57eSGunnar Mills                "Parity": {
292*f2a8e57eSGunnar Mills                    "$ref": "#/definitions/Parity",
293*f2a8e57eSGunnar Mills                    "description": "The type of parity used by the sender and receiver to detect errors over the serial connection.",
294*f2a8e57eSGunnar Mills                    "longDescription": "This property shall indicate parity information for a serial connection.",
295*f2a8e57eSGunnar Mills                    "readonly": false
296*f2a8e57eSGunnar Mills                },
297*f2a8e57eSGunnar Mills                "PinOut": {
298*f2a8e57eSGunnar Mills                    "anyOf": [
299*f2a8e57eSGunnar Mills                        {
300*f2a8e57eSGunnar Mills                            "$ref": "#/definitions/PinOut"
301*f2a8e57eSGunnar Mills                        },
302*f2a8e57eSGunnar Mills                        {
303*f2a8e57eSGunnar Mills                            "type": "null"
304*f2a8e57eSGunnar Mills                        }
305*f2a8e57eSGunnar Mills                    ],
306*f2a8e57eSGunnar Mills                    "description": "The physical pinout configuration for a serial connector.",
307*f2a8e57eSGunnar Mills                    "longDescription": "This property shall indicate the physical pinout for the serial connector.",
308*f2a8e57eSGunnar Mills                    "readonly": true
309*f2a8e57eSGunnar Mills                },
310*f2a8e57eSGunnar Mills                "SignalType": {
311*f2a8e57eSGunnar Mills                    "$ref": "#/definitions/SignalType",
312*f2a8e57eSGunnar Mills                    "description": "The type of signal used for the communication connection.",
313*f2a8e57eSGunnar Mills                    "longDescription": "This property shall contain the type of serial signaling in use for the serial connection.",
314*f2a8e57eSGunnar Mills                    "readonly": true
315*f2a8e57eSGunnar Mills                },
316*f2a8e57eSGunnar Mills                "StopBits": {
317*f2a8e57eSGunnar Mills                    "$ref": "#/definitions/StopBits",
318*f2a8e57eSGunnar Mills                    "description": "The period of time before the next start bit is transmitted.",
319*f2a8e57eSGunnar Mills                    "longDescription": "This property shall indicate the stop bits for the serial connection.",
320*f2a8e57eSGunnar Mills                    "readonly": false
321*f2a8e57eSGunnar Mills                }
322*f2a8e57eSGunnar Mills            },
323*f2a8e57eSGunnar Mills            "required": [
324*f2a8e57eSGunnar Mills                "@odata.id",
325*f2a8e57eSGunnar Mills                "@odata.type",
326*f2a8e57eSGunnar Mills                "Id",
327*f2a8e57eSGunnar Mills                "Name"
328*f2a8e57eSGunnar Mills            ],
329*f2a8e57eSGunnar Mills            "type": "object"
330*f2a8e57eSGunnar Mills        },
331*f2a8e57eSGunnar Mills        "SignalType": {
332*f2a8e57eSGunnar Mills            "enum": [
333*f2a8e57eSGunnar Mills                "Rs232",
334*f2a8e57eSGunnar Mills                "Rs485"
335*f2a8e57eSGunnar Mills            ],
336*f2a8e57eSGunnar Mills            "enumDescriptions": {
337*f2a8e57eSGunnar Mills                "Rs232": "The serial interface follows RS232.",
338*f2a8e57eSGunnar Mills                "Rs485": "The serial interface follows RS485."
339*f2a8e57eSGunnar Mills            },
340*f2a8e57eSGunnar Mills            "type": "string"
341*f2a8e57eSGunnar Mills        },
342*f2a8e57eSGunnar Mills        "StopBits": {
343*f2a8e57eSGunnar Mills            "enum": [
344*f2a8e57eSGunnar Mills                "1",
345*f2a8e57eSGunnar Mills                "2"
346*f2a8e57eSGunnar Mills            ],
347*f2a8e57eSGunnar Mills            "enumDescriptions": {
348*f2a8e57eSGunnar Mills                "1": "One stop bit following the data bits.",
349*f2a8e57eSGunnar Mills                "2": "Two stop bits following the data bits."
350*f2a8e57eSGunnar Mills            },
351*f2a8e57eSGunnar Mills            "type": "string"
352*f2a8e57eSGunnar Mills        }
353*f2a8e57eSGunnar Mills    },
354*f2a8e57eSGunnar Mills    "language": "en",
355*f2a8e57eSGunnar Mills    "owningEntity": "DMTF",
356*f2a8e57eSGunnar Mills    "release": "2023.2",
357*f2a8e57eSGunnar Mills    "title": "#SerialInterface.v1_2_1.SerialInterface"
358*f2a8e57eSGunnar Mills}