FactualSchemaResult


The return object type associated with a schema query.

Superclass: NSObject
Declared In: FactualSchemaResult.h

Discussion

An successful getTableSchema call returns a FactualSchemaResult which provides schema metadata information about a Factual Table.



Properties

tableId
tableName
tableDescription
creator
createdAt
updatedAt
isGeoEnabled
isDownloadable
source
totalRowCount
fieldMetadata

tableId


@property (
    nonatomic,
    readonly) NSString* tableId; 
Discussion

The id of the Factual Table


tableName


@property (
    nonatomic,
    readonly) NSString* tableName; 
Discussion

The table name of the Factual Table


tableDescription


@property (
    nonatomic,
    readonly) NSString* tableDescription; 
Discussion

The Table description


creator


@property (
    nonatomic,
    readonly) NSString* creator; 
Discussion

The user who created the Table


createdAt


@property (
    nonatomic,
    readonly) NSString* createdAt; 
Discussion

The date/time on which this table was created.


updatedAt


@property (
    nonatomic,
    readonly) NSString* updatedAt; 
Discussion

The date/time on which this table was last updated.


isGeoEnabled


@property (
    nonatomic,
    readonly) BOOL isGeoEnabled; 
Discussion

boolean that is set to True if the table has support for Geo queries.


isDownloadable


@property (
    nonatomic,
    readonly) BOOL isDownloadable; 
Discussion

boolean that is set to True if the table is enabled for bulk download.


source


@property (
    nonatomic,
    readonly) NSString* source; 
Discussion

attribution information for this table


totalRowCount


@property (
    nonatomic,
    readonly) NSUInteger totalRowCount; 
Discussion

total row count for this table


fieldMetadata


@property (
    nonatomic,
    readonly) NSArray* fieldMetadata; 
Discussion

an array of FactualFieldMetadata objects for each field in the table.

Last Updated: Friday, January 28, 2011