| 123456789101112131415161718192021222324 |
- {
- "$id": "https://openwrt.org/wifi.station.json",
- "$schema": "http://json-schema.org/draft-07/schema#",
- "description": "OpenWrt WiFi Station Schema",
- "type": "object",
- "properties": {
- "mac": {
- "description": "The station's MAC addresses",
- "type": "array",
- "items": {
- "type": "string"
- },
- "default": ["00:00:00:00:00:00"]
- },
- "key": {
- "description": "The passphrase that shall be used",
- "type": "string"
- },
- "vid": {
- "description": "The VLAN Id used by the station",
- "type": "string"
- }
- }
- }
|