FactualFieldMetadata


Metadata associated with a single field in a Factual Table

Superclass: NSObject
Declared In: FactualFieldMetadata.h



Properties

fieldName
fieldId
dataType
isAutoGenerated
isHidden
isPrimary
isVotable
isEnumerated
enumerationList

fieldName


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

The name of the field


fieldId


@property (
    nonatomic,
    readonly) NSInteger fieldId; 
Discussion

The numerical field id of the field


dataType


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

The data type associated with this field


isAutoGenerated


@property (
    nonatomic,
    readonly) BOOL isAutoGenerated; 
Discussion

a boolean set to True if this is a system generated field


isHidden


@property (
    nonatomic,
    readonly) BOOL isHidden; 
Discussion

a boolean set to True if this is a hidden field


isPrimary


@property (
    nonatomic,
    readonly) BOOL isPrimary; 
Discussion

a boolean set to True if this is part of the primary key.


isVotable


@property (
    nonatomic,
    readonly) BOOL isVotable; 
Discussion

a boolean set to True if this field's value can be changed via user feedback (votes/updates).


isEnumerated


@property (
    nonatomic,
    readonly) BOOL isEnumerated; 
Discussion

a boolean set to True if this an enumerated value field


enumerationList


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

an array of enumerated value strings if this field is an enumerated value field.

Last Updated: Friday, January 28, 2011