You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
description: 'Starting Timestamp in ISO8601 format, in the UTC timezone'
306
306
schema:
307
307
type: string
308
308
responses:
@@ -353,7 +353,7 @@ paths:
353
353
- in: query
354
354
name: startingTimestamp
355
355
required: false
356
-
description: 'Starting Timestamp'
356
+
description: 'Starting Timestamp ISO8601 format, in the UTC timezone'
357
357
schema:
358
358
type: string
359
359
- in: header
@@ -416,7 +416,7 @@ paths:
416
416
- in: query
417
417
name: startingTimestamp
418
418
required: false
419
-
description: 'Starting Timestamp'
419
+
description: 'Starting Timestamp ISO8601 format, in the UTC timezone'
420
420
schema:
421
421
type: string
422
422
requestBody:
@@ -494,7 +494,7 @@ paths:
494
494
- in: query
495
495
name: startingTimestamp
496
496
required: false
497
-
description: 'The starting timestamp of the query, a string in the Timestamp Format, which will be converted to a version created greater or equal to this timestamp. '
497
+
description: 'The starting timestamp of the query, a string in the Timestamp Format, which will be converted to a version created greater or equal to this timestamp. ISO8601 format, in the UTC timezone'
498
498
schema:
499
499
type: string
500
500
- in: query
@@ -512,7 +512,7 @@ paths:
512
512
- in: query
513
513
name: endingTimestamp
514
514
required: false
515
-
description: 'The starting timestamp of the query, a string in the Timestamp Format, which will be converted to a version created greater or equal to this timestamp. '
515
+
description: 'The starting timestamp of the query, a string in the Timestamp Format, which will be converted to a version created greater or equal to this timestamp. ISO8601 format, in the UTC timezone'
516
516
schema:
517
517
type: string
518
518
- in: query
@@ -702,14 +702,15 @@ components:
702
702
can send limit=1000 to the server
703
703
version:
704
704
type: integer
705
+
format: int64
705
706
description: |
706
707
an optional version number. If set, will return files as of the
707
708
specified version of the table. This is only supported on tables
708
709
with history sharing enabled.
709
710
example: 1005
710
711
timestamp:
711
712
type: string
712
-
example: yyyy-[m]m-[d]d hh:mm:ss[.f...]
713
+
example: 2022-01-01T00:00:00Z
713
714
description: |
714
715
an optional timestamp string in the Timestamp Format,. If set, will
715
716
return files as of the table version corresponding to the specified
@@ -755,34 +756,122 @@ components:
755
756
message:
756
757
type: string
757
758
758
-
ProtocolResponse:
759
+
# This is not used for the spec but comes handy for autogeneration
760
+
TableMetadataResponseObject:
761
+
type: object
762
+
properties:
763
+
protocol:
764
+
# it refers to ./delta-sharing-protocol.md#protocol
765
+
$ref: '#/components/schemas/ProtocolObject'
766
+
metadata:
767
+
# it refers to ./delta-sharing-protocol.md#metadata
768
+
$ref: '#/components/schemas/MetadataObject'
769
+
770
+
# This is not used for the spec but comes handy for autogeneration
771
+
TableQueryResponseObject:
772
+
type: object
773
+
properties:
774
+
protocol:
775
+
# it refers to ./delta-sharing-protocol.md#protocol
776
+
$ref: '#/components/schemas/ProtocolObject'
777
+
metadata:
778
+
# it refers to ./delta-sharing-protocol.md#metadata
0 commit comments