mirror of
https://github.com/Telecominfraproject/ols-ucentral-schema.git
synced 2025-10-29 17:22:23 +00:00
Add a schema.json version file similar to AP in wlan-ucentral-schema
Enhance connect.capabilties.yml to include both the switch and schema versions
version:
type: object
description:
Switch version info, OLS release and schema.
properties:
switch:
type: object
description: the ols release of this Switch
properties:
major:
type: integer
minor:
type: integer
patch:
type: integer
examples:
- 'major': 3
'minor': 2
'patch': 0
schema:
type: object
description: the schema version used for this ols release.
properties:
major:
type: integer
minor:
type: integer
patch:
type: integer
examples:
- 'major': 3
'minor': 2
'patch': 0
Signed-off-by: Mike Hansen <mike.hansen@netexperience.com>