Files
ols-ucentral-schema/capabilities
Mike Hansen b148155dea [OLS-562] Add schema version to ols-ucentral-schema
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>
2025-01-22 19:17:23 -05:00
..