wireless.wifi-station.json 535 B

123456789101112131415161718192021222324
  1. {
  2. "$id": "https://openwrt.org/wifi.station.json",
  3. "$schema": "http://json-schema.org/draft-07/schema#",
  4. "description": "OpenWrt WiFi Station Schema",
  5. "type": "object",
  6. "properties": {
  7. "mac": {
  8. "description": "The station's MAC addresses",
  9. "type": "array",
  10. "items": {
  11. "type": "string"
  12. },
  13. "default": ["00:00:00:00:00:00"]
  14. },
  15. "key": {
  16. "description": "The passphrase that shall be used",
  17. "type": "string"
  18. },
  19. "vid": {
  20. "description": "The VLAN Id used by the station",
  21. "type": "string"
  22. }
  23. }
  24. }