diff --git a/docs/API/content-type/creating-ctd.md b/docs/API/content-type/creating-ctd.md index 6c3e5829..3293610e 100644 --- a/docs/API/content-type/creating-ctd.md +++ b/docs/API/content-type/creating-ctd.md @@ -531,7 +531,7 @@ Property types (as of `schemaDefinition` properties), recognized by CMS panel: | string | Any string data that includes date and files | minLength | Minimal length of filed content | | | | pattern | Regex pattern of filed content | | | | default | Default value of the field | -| number | Any number, integer or float. Must be within float range. | minLength | Minimal length of filed content | +| number | Any number, integer or float. Must be within "long" type range. | minLength | Minimal length of filed content | | | | default | Default value of the field | | boolean | Represents two values, `true` and `false`. Note that truthy and falsy values such as "true", "", 0 or null are not considered boolean values. | none allowed | | | array | Used for lists or relations. | items | For relations: it has to be an object containing `{"$ref": "#/components/schemas/DataSource"}`, as the items of the array are objects described in DataSource schema.
For list items: it should be a valid json schema following the same restrictions as wrapping schema |