RelationType
A single relation type.
More info: see the get operation and the relation types endpoint.
Fields
Field | Description |
---|---|
id int (required) | Unique ID Example value:123 |
name mlstring (required) | Name of the relation type Example value:"Sponsor" |
parentid int (required) | ID of the parent relation type. Example value:2 |
isarchived bool (required) | Whether or not this item is archived |
createdts timestamp (required) | Created timestamp Example value:"2014-09-26 15:24:36" |
lastupdatets timestamp (required) | Last updated timestamp Example value:"2014-09-26 15:24:36" |
Example
1{
2 "id": 123,
3 "name": "Sponsor",
4 "parentid": 2,
5 "isarchived": false,
6 "createdts": "2014-09-26 15:24:36",
7 "lastupdatets": "2014-09-26 15:24:36"
8}