[DOCS] Sort field data types in docs (#64288) (#64305)

Co-authored-by: Andrew Kroh <andrew.kroh@elastic.co>
This commit is contained in:
James Rodewig 2020-10-28 13:54:12 -04:00 committed by GitHub
parent 0980b88e80
commit e7f2beae05
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 12 additions and 9 deletions

View File

@ -51,7 +51,7 @@ Dates:: Date types, including <<date,`date`>> and
<<range,Range>>:: Range types, such as `long_range`, `double_range`,
`date_range`, and `ip_range`.
<<ip,`ip`>>:: IPv4 and IPv6 addresses.
<<version,Version>>:: Software versions. Supports https://semver.org/[Semantic Versioning]
<<version,`version`>>:: Software versions. Supports https://semver.org/[Semantic Versioning]
precedence rules.
{plugins}/mapper-murmur3.html[`murmur3`]:: Compute and stores hashes of
values.
@ -140,17 +140,15 @@ include::types/date_nanos.asciidoc[]
include::types/dense-vector.asciidoc[]
include::types/histogram.asciidoc[]
include::types/flattened.asciidoc[]
include::types/geo-point.asciidoc[]
include::types/geo-shape.asciidoc[]
include::types/ip.asciidoc[]
include::types/histogram.asciidoc[]
include::types/version.asciidoc[]
include::types/ip.asciidoc[]
include::types/parent-join.asciidoc[]
@ -174,10 +172,14 @@ include::types/rank-features.asciidoc[]
include::types/search-as-you-type.asciidoc[]
include::types/shape.asciidoc[]
include::types/sparse-vector.asciidoc[]
include::types/text.asciidoc[]
include::types/token-count.asciidoc[]
include::types/shape.asciidoc[]
include::types/unsigned_long.asciidoc[]
include::types/version.asciidoc[]

View File

@ -170,5 +170,3 @@ The following parameters are accepted by numeric types:
sorting) will behave as if the document had a value of +2.3+. High values
of `scaling_factor` improve accuracy but also increase space requirements.
This parameter is required.
include::unsigned_long.asciidoc[]

View File

@ -2,7 +2,10 @@
[testenv="basic"]
[[unsigned-long]]
=== Unsigned long data type
=== Unsigned long field type
++++
<titleabbrev>Unsigned long</titleabbrev>
++++
Unsigned long is a numeric field type that represents an unsigned 64-bit
integer with a minimum value of 0 and a maximum value of +2^64^-1+
(from 0 to 18446744073709551615 inclusive).