abacusai.schema =============== .. py:module:: abacusai.schema Classes ------- .. autoapisummary:: abacusai.schema.Schema Module Contents --------------- .. py:class:: Schema(client, name=None, featureMapping=None, detectedFeatureMapping=None, featureType=None, detectedFeatureType=None, dataType=None, detectedDataType=None, nestedFeatures={}, pointInTimeInfo={}) Bases: :py:obj:`abacusai.return_class.AbstractApiClass` A schema description for a feature :param client: An authenticated API Client instance :type client: ApiClient :param name: The unique name of the feature. :type name: str :param featureMapping: The mapping of the feature. The possible values will be based on the project's use-case. See the (Use Case Documentation)[https://api.abacus.ai/app/help/useCases] for more details. :type featureMapping: str :param detectedFeatureMapping: Detected feature mapping for this feature :type detectedFeatureMapping: str :param featureType: The underlying data type of each feature: CATEGORICAL, CATEGORICAL_LIST, NUMERICAL, TIMESTAMP, TEXT, EMAIL, LABEL_LIST, ENTITY_LABEL_LIST, PAGE_LABEL_LIST, JSON, OBJECT_REFERENCE, MULTICATEGORICAL_LIST, COORDINATE_LIST, NUMERICAL_LIST, TIMESTAMP_LIST, ZIPCODE, URL, PAGE_INFOS, PAGES_DOCUMENT, TOKENS_DOCUMENT, MESSAGE_LIST. :type featureType: str :param detectedFeatureType: The detected feature type for this feature :type detectedFeatureType: str :param dataType: The underlying data type of each feature: INTEGER, FLOAT, STRING, DATE, DATETIME, BOOLEAN, LIST, STRUCT, NULL, BINARY. :type dataType: str :param detectedDataType: The detected data type for this feature :type detectedDataType: str :param nestedFeatures: List of features of nested feature :type nestedFeatures: NestedFeatureSchema :param pointInTimeInfo: Point in time information for this feature :type pointInTimeInfo: PointInTimeFeatureInfo .. py:attribute:: name :value: None .. py:attribute:: feature_mapping :value: None .. py:attribute:: detected_feature_mapping :value: None .. py:attribute:: feature_type :value: None .. py:attribute:: detected_feature_type :value: None .. py:attribute:: data_type :value: None .. py:attribute:: detected_data_type :value: None .. py:attribute:: nested_features .. py:attribute:: point_in_time_info .. py:attribute:: deprecated_keys .. py:method:: __repr__() .. py:method:: to_dict() Get a dict representation of the parameters in this class :returns: The dict value representation of the class parameters :rtype: dict