FactualSchemaResult |
The return object type associated with a schema query.
Superclass: NSObject
Declared In: FactualSchemaResult.h
An successful getTableSchema call returns a FactualSchemaResult which provides schema metadata information about a Factual Table.
tableId |
@property ( nonatomic, readonly) NSString* tableId;
The id of the Factual Table
tableName |
@property ( nonatomic, readonly) NSString* tableName;
The table name of the Factual Table
tableDescription |
@property ( nonatomic, readonly) NSString* tableDescription;
The Table description
creator |
@property ( nonatomic, readonly) NSString* creator;
The user who created the Table
createdAt |
@property ( nonatomic, readonly) NSString* createdAt;
The date/time on which this table was created.
updatedAt |
@property ( nonatomic, readonly) NSString* updatedAt;
The date/time on which this table was last updated.
isGeoEnabled |
@property ( nonatomic, readonly) BOOL isGeoEnabled;
boolean that is set to True if the table has support for Geo queries.
isDownloadable |
@property ( nonatomic, readonly) BOOL isDownloadable;
boolean that is set to True if the table is enabled for bulk download.
source |
@property ( nonatomic, readonly) NSString* source;
attribution information for this table
totalRowCount |
@property ( nonatomic, readonly) NSUInteger totalRowCount;
total row count for this table
fieldMetadata |
@property ( nonatomic, readonly) NSArray* fieldMetadata;
an array of FactualFieldMetadata objects for each field in the table.
Last Updated: Friday, January 28, 2011