keiono / cy-rest

This site is obsolete! Please use the link here:
http://github.com/idekerlab/cyREST
MIT License
4 stars 1 forks source link

For POST Column API, add option to create List data type #25

Closed keiono closed 10 years ago

keiono commented 10 years ago

Currently, there is no way to create new List column. We need to support it by adding new option in POST Column API. The new POST format will be:

{
    "name": COL_NAME,
    "type": COL_TYPE,
    "immutable": (optional),
    "isList": (optional.  If true, create as List)
{
keiono commented 10 years ago

Fixed, but format is slightly different from the proposal:

{
    "name": COL_NAME,
    "type": COL_TYPE,
    "immutable": (optional),
    "list": (optional.  If true, create as List)
{