| 242 | === Getting all association type URIs === |
| 243 | |
| 244 | {{{ |
| 245 | GET /core/assoctype |
| 246 | }}} |
| 247 | |
| 248 | ==== Example ==== |
| 249 | |
| 250 | {{{ |
| 251 | curl localhost:8080/core/assoctype -i | jsonpretty |
| 252 | }}} |
| 253 | |
| 254 | Response: |
| 255 | |
| 256 | {{{ |
| 257 | HTTP/1.1 200 OK |
| 258 | Content-Type: application/json |
| 259 | |
| 260 | [ |
| 261 | "dm4.core.aggregation", |
| 262 | "dm4.core.aggregation_def", |
| 263 | "dm4.core.association", |
| 264 | "dm4.core.composition" |
| 265 | "dm4.core.composition_def", |
| 266 | "dm4.core.instantiation", |
| 267 | "dm4.core.sequence", |
| 268 | "dm4.topicmaps.association_mapcontext", |
| 269 | "dm4.topicmaps.topic_mapcontext", |
| 270 | "dm4.webclient.search_result_item", |
| 271 | "dm4.workspaces.workspace_context", |
| 272 | ] |
| 273 | }}} |
| 274 | |