Created
April 4, 2016 07:13
-
-
Save sivabudh/b9c82e181aba9cca51a7fe56868d4c3b to your computer and use it in GitHub Desktop.
UIH Portal BoD JSON Schema
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
{ | |
"new_bandwidths": [ | |
{ | |
"circuit_id": "12345", | |
"new_bandwidith": 10 | |
}, | |
{ | |
"circuit_id": "67890", | |
"new_bandwidth": 12 | |
} | |
] | |
} | |
{ | |
"status": "400", | |
"errors": { | |
"circuits": [ | |
{ | |
"message": "Violate circuit bandwith constraint", | |
"circuit_ids": [ | |
"12345", | |
"67890" | |
] | |
}, | |
{ | |
"message": "Vilidate circuit bandwidth change quota", | |
"circuit_ids": [ | |
"12345" | |
] | |
} | |
], | |
"transaction": [ | |
{ | |
"message": "Exceed bandwidth sum quota" | |
}, | |
{ | |
"message": "Exceed change quota" | |
} | |
] | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment