{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/MACAddressResponse", "title": "MACAddressResponse", "type": "object", "required": [ "status", "macStatus" ], "properties": { "status": { "type": "string", "enum": [ "OK", "ERRORS" ], "description": "Status of MAC address." }, "macStatus": { "type": "array", "items": { "$ref": "#/components/schemas/MacStatusObject" }, "description": "Contains an array of all the MAC address provided and their statuses." } } }