I want to model an API with RAML 1.0. Within this API I have a map where the included objects have dynamic key values. It should look like the following:
"map" : {
"key1" : {
...
}
"key2" : {
...
}
"key3" : {
...
}
}
In this stackoverflow article I found a solution for the dynamic keys but now I am stuck. How can I create the map? For sure I can do a workaround with array, but this is not what I am looking for.
Cheers.