跳到主要内容
版本:v3.0.x

StructFieldSchema

A StructFieldSchema instance represents the schema of the Struct elements in an Array of Structs field. A schema sketches the structure of its Struct elements.

Java
io.milvus.v2.service.collection.request.CreateCollectionReq.StructFieldSchema

This class cannot be explicitly instantiated. You need to describe a collection with an Array of Structs field to view its instances.

Example

The following example illustrates how to create an Array of Structs field and add fields to its Struct elements.

Java
import io.milvus.v2.common.DataType;
import io.milvus.v2.service.collection.request.AddFieldReq;
import io.milvus.v2.service.collection.request.CreateCollectionReq;

CreateCollectionReq.CollectionSchema collectionSchema = CreateCollectionReq.CollectionSchema.builder()
.build();

collectionSchema.addField(AddFieldReq.builder()
.fieldName(STRUCT_FIELD)
.description("clips of a film")
.dataType(DataType.Array)
.elementType(DataType.Struct)
.maxCapacity(100)
.addStructField(AddFieldReq.builder()
.fieldName(FRAME_FIELD)
.description("from which frame this clip begin")
.dataType(DataType.Int32)
.build())
.addStructField(AddFieldReq.builder()
.fieldName(CLIP_VECTOR_FIELD)
.description("embedding of a clip")
.dataType(DataType.FloatVector)
.dimension(VECTOR_DIM)
.build())
.addStructField(AddFieldReq.builder()
.fieldName(DESC_FIELD)
.description("description of a clip")
.dataType(DataType.VarChar)
.maxLength(1024)
.build())
.addStructField(AddFieldReq.builder()
.fieldName(DESC_VECTOR_FIELD)
.description("embedding of description")
.dataType(DataType.FloatVector)
.dimension(VECTOR_DIM)
.build())
.build());

Methods

The following are the methods of the StructFieldSchema class: