rebel-l / sessionservice

A simple session service based on golang.
GNU General Public License v3.0
0 stars 0 forks source link

Implement Session Data Model #23

Closed rebel-l closed 6 years ago

rebel-l commented 7 years ago

One part of the SessionResponse is the Data Model. The definition you can find at Swagger hub.

rebel-l commented 6 years ago

decided to use a map of strings: data := map[string]string

updated swagger doc as this should result in a simple key: value map in JSON: "data": { "additionalProp1": "a value to store", "additionalProp2": "a value to store", "additionalProp3": "a value to store" },