Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Modify the text of data types of property-api #372

Merged
merged 3 commits into from
Sep 22, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions content/cn/docs/clients/restful-api/propertykey.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,8 @@ weight: 2
Params说明:

- name:属性类型名称,必填
- data_type:属性类型数据类型,包括:bool、byte、int、long、float、double、string、date、uuid、blob,默认string类型
- cardinality:属性类型基数,包括:single、list、set,默认single
- data_type:属性类型数据类型,包括:bool、byte、int、long、float、double、text、date、uuid、blob,默认 `text` 类型 (代表 string 字符串类型)
- cardinality:属性类型基数,包括:single、list、set,默认 `single` (代表单属性值)

请求体字段说明:

Expand Down
4 changes: 2 additions & 2 deletions content/en/docs/clients/restful-api/propertykey.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,8 @@ weight: 2
Params Description:

- name: The name of the property type, required.
- data_type: The data type of the property type, including: bool, byte, int, long, float, double, string, date, uuid, blob. The default data type is string.
- cardinality: The cardinality of the property type, including: single, list, set. The default cardinality is single.
- data_type: The data type of the property type, including: bool, byte, int, long, float, double, text, blob, date, uuid. The default data type is `text` (Represent a `string` type)
- cardinality: The cardinality of the property type, including: single, list, set. The default cardinality is `single`.

Request Body Field Description:

Expand Down
Loading