Skip to content
Snippets Groups Projects
Commit d35270b5 authored by Erik Reid's avatar Erik Reid
Browse files

added doc for /msr/access-services

parent e9bea61e
No related branches found
No related tags found
No related merge requests found
...@@ -1044,6 +1044,44 @@ Any non-empty responses are JSON formatted messages. ...@@ -1044,6 +1044,44 @@ Any non-empty responses are JSON formatted messages.
``` ```
* /msr/access-services
The response will be the list of services that
are of type 'IP Acccess', and will formatted
according to the following schema:
```json
{
"$schema": "http://json-schema.org/draft-07/schema#",
"definitions": {
"service": {
"type": "object",
"properties": {
"id": {"type": "integer"},
"name": {"type": "string"},
"equipment": {"type": "string"},
"pop_name": {"type": "string"},
"other_end_equipment": {"type": "string"},
"other_end_pop_name": {"type": "string"},
"speed_value": {"type": "integer"},
"speed_unit": {"type": "string"}
},
"required": [
"id", "name",
"pop_name", "equipment",
"other_end_pop_name", "other_end_equipment",
"speed_value", "speed_unit"
],
"additionalProperties": False
}
},
"type": "array",
"items": {"$ref": "#/definitions/service"}
}
```
### Testing utilities ### Testing utilities
The following routes are only available if the server The following routes are only available if the server
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment