construct_from_dict()
This operation constructs a FieldSchema object from a dictionary representation.
Request Syntax
construct_from_dict(
raw: dict
)
notes
This is a class method. You should call it from the class instead of an instance of the class as follows:
FieldSchema.construct_from_dict()
PARAMETERS:
raw (dict)
A dictionary containing the raw data to construct the field schema.
RETURN TYPE:
FieldSchema
RETURNS:
A FieldSchema object.
EXCEPTIONS:
MilvusException
This exception will be raised when any error occurs during this operation.
Examples
from pymilvus import FieldSchema, DataType
# Create a dictionary to pass to construct_from_dict
field_dict = {
"name": "primary_key",
"type": DataType.INT64,
"description": "test_field_schema"
}
# Construct a FieldSchema object from the dictionary
field = FieldSchema.construct_from_dict(field_dict)
print(field)
# Output
# {'name': 'primary_key', 'description': 'test_field_schema', 'type': <DataType.INT64: 5>}
Related operations
The following operations are related to construct_from_dict()
: