Created
December 14, 2020 05:28
-
-
Save ganeshrn/0a479d580caa96326a7c8186c4b12d7d to your computer and use it in GitHub Desktop.
jsonschema criteria for interface up state
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"type": "object", | |
"patternProperties": { | |
"^.*": { | |
"type": "object", | |
"properties": { | |
"admin_state": { | |
"type": "string", | |
"pattern": "up" | |
} | |
} | |
} | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment