Schema.Rd
A Schema is an Entity that defines a set of columns in a table.
Schema(name=NULL, columns=NULL, parent=NULL, properties=NULL, annotations=NULL, description=NULL)
the name for the Table Schema object
a list of Column objects or their IDs
the project in Synapse to which this table belongs
A map of Synapse properties
A map of user defined annotations
optional named parameter: User readable description of the schema
An object of type Schema
if (FALSE) { # \dontrun{
cols <- c(Column(name='Isotope', columnType='STRING'),
Column(name='Atomic Mass', columnType='INTEGER'),
Column(name='Halflife', columnType='DOUBLE'),
Column(name='Discovered', columnType='DATE'))
schema <- synStore(Schema(name='MyTable', columns=cols, parent=project))
} # }