Skip to content

ProjectDataIndexWithStatus

Properties

Name Type Description Notes
source Source
name str
documents int
health str
status str
creation_date str
metadata ElasticMetadata [optional]
description str
schema_key str [optional]
type str
view_of ViewOf [optional]
record_properties object [optional]
provenance str [optional]

Example

from deepsearch.cps.apis.public_v2.models.project_data_index_with_status import ProjectDataIndexWithStatus

# TODO update the JSON string below
json = "{}"
# create an instance of ProjectDataIndexWithStatus from a JSON string
project_data_index_with_status_instance = ProjectDataIndexWithStatus.from_json(json)
# print the JSON string representation of the object
print(ProjectDataIndexWithStatus.to_json())

# convert the object into a dict
project_data_index_with_status_dict = project_data_index_with_status_instance.to_dict()
# create an instance of ProjectDataIndexWithStatus from a dict
project_data_index_with_status_form_dict = project_data_index_with_status.from_dict(project_data_index_with_status_dict)
[Back to Model list] [Back to API list] [Back to README]