Table Schema¶
v5.0.0 uses the object-oriented models
This page documents the legacy Schema class. New code should define table
structure with the object-oriented Table and
Column models.
synapseclient.table.Schema
¶
Bases: SchemaBase
A Schema is an Entity that defines a set of columns in a table.
| ATTRIBUTE | DESCRIPTION |
|---|---|
name |
The name for the Table Schema object
|
description |
User readable description of the schema
|
columns |
A list of Column objects or their IDs
|
parent |
The project in Synapse to which this table belongs
|
properties |
A map of Synapse properties
|
annotations |
A map of user defined annotations
|
local_state |
Internal use only
TYPE:
|
Example:
cols = [Column(name='Isotope', columnType='STRING'),
Column(name='Atomic Mass', columnType='INTEGER'),
Column(name='Halflife', columnType='DOUBLE'),
Column(name='Discovered', columnType='DATE')]
schema = syn.store(Schema(name='MyTable', columns=cols, parent=project))
Source code in synapseclient/table.py
697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 | |