mirror of
https://gitee.com/milvus-io/milvus.git
synced 2025-12-07 01:28:27 +08:00
421 B
421 B
2. Schema
2.1 Collection Schema
type CollectionSchema struct {
Name string
Description string
AutoId bool
Fields []FieldSchema
}
2.2 Field Schema
type FieldSchema struct {
Name string
Description string
DataType DataType
TypeParams map[string]string
IndexParams map[string]string
}