Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
A
access-node
Manage
Activity
Members
Labels
Plan
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package Registry
Model registry
Operate
Environments
Terraform modules
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
This is an archived project. Repository and other project resources are read-only.
Show more breadcrumbs
LuFG VR VIS
VR-Group
In Situ Pipeline
access-node
Commits
7c0e8850
Commit
7c0e8850
authored
5 years ago
by
Simon Oehrl
Browse files
Options
Downloads
Patches
Plain Diff
Update swagger.yaml
parent
5a28e90b
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
access_node/swagger/swagger.yaml
+225
-36
225 additions, 36 deletions
access_node/swagger/swagger.yaml
with
225 additions
and
36 deletions
access_node/swagger/swagger.yaml
+
225
−
36
View file @
7c0e8850
...
...
@@ -10,12 +10,12 @@ schemes:
-
"
https"
-
"
http"
paths
:
/
t
im
estep
:
/
s
im
ulation_time_info
:
get
:
tags
:
-
"
nest"
summary
:
"
Retrieves
the
time
between
two
simulation
steps."
operationId
:
"
get_
timestep
"
summary
:
"
Retrieves
the
number
of
simulation
steps."
operationId
:
"
get_
simulation_step_count
"
produces
:
-
"
application/json"
parameters
:
[]
...
...
@@ -23,19 +23,19 @@ paths:
200
:
description
:
"
Operation
successful."
schema
:
type
:
"
number"
format
:
"
double"
$ref
:
"
#/definitions/SimulationTimeInfo"
400
:
description
:
"
Operation
failed."
schema
:
$ref
:
"
#/definitions/Error"
type
:
"
string"
example
:
"
Error
message"
x-swagger-router-controller
:
"
access_node.controllers.nest_controller"
/
simulation_step_count
:
/
gids
:
get
:
tags
:
-
"
nest"
summary
:
"
Retrieves
the
number
of
simulation
steps
."
operationId
:
"
get_
simulation_step_count
"
summary
:
"
Retrieves
the
list
of
all
GID
."
operationId
:
"
get_
gids
"
produces
:
-
"
application/json"
parameters
:
[]
...
...
@@ -43,19 +43,52 @@ paths:
200
:
description
:
"
Operation
successful."
schema
:
type
:
"
number"
format
:
"
int64"
type
:
"
array"
items
:
type
:
"
number"
format
:
"
uint64"
400
:
description
:
"
Operation
failed."
schema
:
$ref
:
"
#/definitions/Error"
type
:
"
string"
example
:
"
Error
message"
x-swagger-router-controller
:
"
access_node.controllers.nest_controller"
/
gid
s
:
/
neuron_propertie
s
:
get
:
tags
:
-
"
nest"
summary
:
"
Retrieves
the
list
of
all
neuron
IDs."
operationId
:
"
get_gids"
summary
:
"
Retrieves
the
properties
of
the
specified
neurons."
operationId
:
"
get_neuron_properties"
produces
:
-
"
application/json"
parameters
:
-
name
:
"
gids"
in
:
"
query"
description
:
"
A
list
of
GIDs
queried
for
properties."
required
:
false
type
:
"
array"
items
:
type
:
"
number"
format
:
"
uint64"
responses
:
200
:
description
:
"
Operation
successful."
schema
:
type
:
"
array"
items
:
$ref
:
"
#/definitions/NeuronProperties"
400
:
description
:
"
Operation
failed."
schema
:
type
:
"
string"
example
:
"
Error
message"
x-swagger-router-controller
:
"
access_node.controllers.nest_controller"
/positions
:
get
:
tags
:
-
"
nest"
summary
:
"
Retrieves
a
mapping
from
GIDs
to
3D
positions."
operationId
:
"
get_positions"
produces
:
-
"
application/json"
parameters
:
[]
...
...
@@ -65,37 +98,130 @@ paths:
schema
:
type
:
"
array"
items
:
type
:
"
number"
format
:
"
int64"
$ref
:
"
#/definitions/Positions"
400
:
description
:
"
Operation
failed."
schema
:
type
:
"
string"
example
:
"
Error
message"
x-swagger-router-controller
:
"
access_node.controllers.nest_controller"
/populations
:
get
:
tags
:
-
"
nest"
summary
:
"
Retrieves
the
list
of
all
populations."
operationId
:
"
get_populations"
produces
:
-
"
application/json"
parameters
:
[]
responses
:
200
:
description
:
"
Operation
successful."
schema
:
type
:
"
array"
items
:
type
:
"
string"
400
:
description
:
"
Operation
failed."
schema
:
$ref
:
"
#/definitions/Error"
type
:
"
string"
example
:
"
Error
message"
x-swagger-router-controller
:
"
access_node.controllers.nest_controller"
/spikes
:
get
:
tags
:
-
"
nest"
summary
:
"
Retrieves
the
spikes
for
the
given
simulation
steps
(optional)
and
GIDS
(optional)."
operationId
:
"
get_spikes"
consumes
:
-
"
application/json"
produces
:
-
"
application/json"
parameters
:
-
name
:
"
from"
in
:
"
query"
description
:
"
The
start
time
(including)
to
be
queried."
required
:
false
type
:
"
number"
format
:
"
uint64"
-
name
:
"
to"
in
:
"
query"
description
:
"
The
end
time
(excluding)
to
be
queried."
required
:
false
type
:
"
number"
format
:
"
uint64"
-
name
:
"
gids"
in
:
"
query"
description
:
"
A
list
of
GIDs
queried
for
spike
data."
required
:
false
type
:
"
array"
items
:
type
:
"
number"
format
:
"
uint64"
-
name
:
"
offset"
in
:
"
query"
description
:
"
The
offset
into
the
result."
required
:
false
type
:
"
number"
format
:
"
uint64"
-
name
:
"
limit"
in
:
"
query"
description
:
"
The
maximum
of
entries
to
be
result."
required
:
false
type
:
"
number"
format
:
"
uint64"
responses
:
200
:
description
:
"
Operation
successful."
schema
:
$ref
:
"
#/definitions/Spikes"
400
:
description
:
"
Operation
failed."
schema
:
type
:
"
string"
example
:
"
Error
message"
x-swagger-router-controller
:
"
access_node.controllers.nest_controller"
/population/${population_id}/spikes
:
get
:
tags
:
-
"
nest"
summary
:
"
Retrieves
the
spikes
for
the
given
simulation
steps
(optional)
and
\
\
neuron
IDs
(optional)."
operationId
:
"
get_spikes"
operationId
:
"
get_spikes
_by_population
"
consumes
:
-
"
application/json"
produces
:
-
"
application/json"
parameters
:
-
name
:
"
population_id"
in
:
"
path"
description
:
"
The
identifier
of
the
population."
required
:
true
type
:
"
string"
-
name
:
"
from"
in
:
"
query"
description
:
"
T
ODO
"
description
:
"
T
he
start
time
(including)
to
be
queried.
"
required
:
false
type
:
"
number"
format
:
"
int64"
format
:
"
u
int64"
-
name
:
"
to"
in
:
"
query"
description
:
"
TODO"
description
:
"
The
end
time
(excluding)
to
be
queried."
required
:
false
type
:
"
number"
format
:
"
uint64"
-
name
:
"
offset"
in
:
"
query"
description
:
"
The
offset
into
the
result."
required
:
false
type
:
"
number"
format
:
"
uint64"
-
name
:
"
limit"
in
:
"
query"
description
:
"
The
maximum
of
entries
to
be
result."
required
:
false
type
:
"
number"
format
:
"
int64"
format
:
"
u
int64"
responses
:
200
:
description
:
"
Operation
successful."
...
...
@@ -104,33 +230,96 @@ paths:
400
:
description
:
"
Operation
failed."
schema
:
$ref
:
"
#/definitions/Error"
type
:
"
string"
example
:
"
Error
message"
x-swagger-router-controller
:
"
access_node.controllers.nest_controller"
/population/${population_id}/gids
:
get
:
tags
:
-
"
nest"
summary
:
"
Retrieves
the
list
of
all
neuron
IDs."
operationId
:
"
get_gids_in_population"
produces
:
-
"
application/json"
parameters
:
-
name
:
"
population_id"
in
:
"
path"
description
:
"
The
identifier
of
the
population"
required
:
true
type
:
"
string"
responses
:
200
:
description
:
"
Operation
successful."
schema
:
type
:
"
array"
items
:
type
:
"
number"
format
:
"
uint64"
400
:
description
:
"
Operation
failed."
schema
:
type
:
"
string"
example
:
"
Error
message"
x-swagger-router-controller
:
"
access_node.controllers.nest_controller"
definitions
:
Spikes
:
type
:
"
object"
properties
:
simulation_steps
:
description
:
"
This
array
is
always
sorted."
type
:
"
array"
items
:
type
:
"
number"
format
:
"
int64"
format
:
"
u
int64"
gids
:
type
:
"
array"
items
:
type
:
"
number"
format
:
"
int64"
example
:
simulation_steps
:
-
2
-
5
format
:
"
uint64"
Position
:
type
:
"
object"
properties
:
x
:
type
:
"
number"
format
:
"
double"
y
:
type
:
"
number"
format
:
"
double"
z
:
type
:
"
number"
format
:
"
double"
Positions
:
type
:
"
object"
properties
:
gids
:
-
1
-
2
Error
:
type
:
"
array"
items
:
type
:
"
number"
format
:
"
uint64"
positions
:
type
:
"
array"
items
:
$ref
:
"
#/definitions/Position"
NeuronProperties
:
type
:
"
object"
properties
:
gid
:
type
:
"
number"
format
:
"
uint64"
properties
:
type
:
"
object"
SimulationTimeInfo
:
type
:
"
object"
properties
:
code
:
start
:
type
:
"
number"
format
:
"
uint64"
end
:
type
:
"
number"
format
:
"
uint64"
current
:
type
:
"
number"
format
:
"
uint64"
timestep
:
type
:
"
number"
message
:
type
:
"
string"
\ No newline at end of file
format
:
"
double"
\ No newline at end of file
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment