Single entry in the lineage chain of a collection. Each lineage entry represents one processing stage with one feature extractor.
| Name | Type | Description | Notes |
|---|---|---|---|
| source_config | SourceConfigOutput | Configuration of the source for this lineage entry | |
| feature_extractor | SharedCollectionFeaturesExtractorsModelsFeatureExtractorConfigOutput | Single feature extractor applied at this stage | |
| output_schema | BucketSchemaOutput | Output schema produced by this processing stage |
from mixpeek.models.single_lineage_entry import SingleLineageEntry
# TODO update the JSON string below
json = "{}"
# create an instance of SingleLineageEntry from a JSON string
single_lineage_entry_instance = SingleLineageEntry.from_json(json)
# print the JSON string representation of the object
print(SingleLineageEntry.to_json())
# convert the object into a dict
single_lineage_entry_dict = single_lineage_entry_instance.to_dict()
# create an instance of SingleLineageEntry from a dict
single_lineage_entry_from_dict = SingleLineageEntry.from_dict(single_lineage_entry_dict)