| 526 | === Get an association type === |
| 527 | |
| 528 | {{{ |
| 529 | GET /core/assoctype/<Association Type URI> |
| 530 | }}} |
| 531 | |
| 532 | ==== Example ==== |
| 533 | |
| 534 | {{{ |
| 535 | curl localhost:8080/core/assoctype/dm4.core.instantiation -i | jsonpretty |
| 536 | }}} |
| 537 | |
| 538 | Response: |
| 539 | |
| 540 | {{{ |
| 541 | HTTP/1.1 200 OK |
| 542 | Content-Type: application/json |
| 543 | |
| 544 | { |
| 545 | "id": 10, |
| 546 | "uri": "dm4.core.instantiation", |
| 547 | "type_uri": "dm4.core.assoc_type", |
| 548 | "value": "Instantiation", |
| 549 | "composite": { |
| 550 | }, |
| 551 | "data_type_uri": "dm4.core.text", |
| 552 | "index_mode_uris": [ |
| 553 | ], |
| 554 | "assoc_defs": [ |
| 555 | ], |
| 556 | "label_config": [ |
| 557 | ], |
| 558 | "view_config_topics": [ |
| 559 | { |
| 560 | "id": 792, |
| 561 | "uri": "", |
| 562 | "type_uri": "dm4.webclient.view_config", |
| 563 | "value": "", |
| 564 | "composite": { |
| 565 | "dm4.webclient.color": "rgb(41, 194, 225)" |
| 566 | } |
| 567 | } |
| 568 | ] |
| 569 | } |
| 570 | }}} |
| 571 | |
| 572 | For details about the association type format see DataFormat#AssociationType. |
| 573 | |