milvus/docs/developer_guides/chap02_schema.md
GuoRentong 9057c506b2 Reorganize developer guides
Signed-off-by: GuoRentong <rentong.guo@zilliz.com>
2020-11-19 10:59:10 +08:00

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
}
2.2.1 Data Types
2.2.2 Type Params
2.2.3 Index Params