Get Last Upload Timestamp
GET/v1/dataset/:dataset_id/last_modified
Get the last timestamp for a change to lance dataset.
Request
Path Parameters
dataset_id Dataset Idrequired
Responses
- 200
- 422
Successful Response
- application/json
- Schema
- Example (from schema)
Schema
- MOD1
result Result (string)
Default value: ok
checkpoint
object
anyOf
integer
latest_addition_timestamp Latest Addition Timestamp (integer)required
The timestamp of the added file in epoch time
{
"result": "ok",
"checkpoint": 0,
"latest_addition_timestamp": 0
}
Validation Error
- application/json
- Schema
- Example (from schema)
Schema
Array [
Array [
- MOD1
- MOD2
]
]
detail
object[]
loc
object[]
required
anyOf
string
integer
msg Message (string)required
type Error Type (string)required
{
"detail": [
{
"loc": [
"string",
0
],
"msg": "string",
"type": "string"
}
]
}
Loading...