Getting Started
Data Formats
Understanding data types used in MileApp API
Documentation Index
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
Understanding data types used in MileApp API
10, 200, 2500
2.1, 14.2, 100.5
"Jakarta50", "Malang", "Solo Raya", "45", "Bandung_90an"
true, false
| Format | Example |
|---|---|
Y-m-d H:i:s | 2022-07-13 03:16:40 |
Y-m-d\TH:i:s.vP | 2022-07-13T03:16:40.000+00:00 |
Y-m-d\TH:i:sP | 2022-07-13T03:16:40+00:00 |
Y-m-d\TH:i:s | 2022-07-13T03:16:40 |
| Format | Example |
|---|---|
H:i:s | 08:30:00 |
H:i | 08:30 |
{
"key1": "value1",
"key2": "value2",
"keyN": "valueN"
}
["string1", "string2", "stringN"]
[
{"object": "1"},
{"object": "2"},
{"object": "n"}
]
| Data Type | Description | Example |
|---|---|---|
| Integer | Mathematical integers | 10, 200, 2500 |
| Float | Decimal numbers | 2.1, 14.2, 100.5 |
| String | Alphanumeric characters | "Jakarta50", "Malang" |
| Boolean | Logical values | true, false |
| Datetime | Date and time values | 2022-07-13T03:16:40+00:00 |
| Time | Time values | 08:30:00 |
| Object | Key-value pairs | {"key": "value"} |
| Array | Ordered set of elements | ["a", "b", "c"] |