-
Notifications
You must be signed in to change notification settings - Fork 13
Expand file tree
/
Copy pathopenapi.yaml
More file actions
1361 lines (1297 loc) · 42.1 KB
/
openapi.yaml
File metadata and controls
1361 lines (1297 loc) · 42.1 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
openapi: 3.0.3
info:
title: Apple CloudKit Web Services API
description: |
CloudKit web services provides an HTTP interface to fetch, create, update, and delete records, zones, and subscriptions.
You also have access to discoverable users and contacts.
## Authentication
There are two authentication methods:
1. API Token Authentication - Use query parameters: `?ckAPIToken=[API token]&ckWebAuthToken=[Web Auth Token]`
2. Server-to-Server Key Authentication - Pass the key ID as `X-Apple-CloudKit-Request-KeyID` header
## Base URL Structure
`https://api.apple-cloudkit.com/database/{version}/{container}/{environment}/{database}/{operation}`
Where:
- version: Protocol version (currently "1")
- container: Unique identifier for the app's container (begins with "iCloud.")
- environment: "development" or "production"
- database: "public", "private", or "shared"
version: 1.0.0
contact:
name: Apple Developer Support
url: https://developer.apple.com/support/
servers:
- url: https://api.apple-cloudkit.com
description: CloudKit Web Services API
security:
- ApiTokenAuth: []
- ServerToServerAuth: []
paths:
/database/{version}/{container}/{environment}/{database}/records/query:
post:
summary: Query Records
description: Fetch records using a query with filters and sorting options
operationId: queryRecords
tags:
- Records
parameters:
- $ref: '#/components/parameters/version'
- $ref: '#/components/parameters/container'
- $ref: '#/components/parameters/environment'
- $ref: '#/components/parameters/database'
requestBody:
required: true
content:
application/json:
schema:
type: object
properties:
zoneID:
$ref: '#/components/schemas/ZoneID'
resultsLimit:
type: integer
description: Maximum number of records to return
query:
type: object
properties:
recordType:
type: string
description: The record type to query
filterBy:
type: array
items:
$ref: '#/components/schemas/Filter'
sortBy:
type: array
items:
$ref: '#/components/schemas/Sort'
desiredKeys:
type: array
items:
type: string
description: List of field names to return
continuationMarker:
type: string
description: Marker for pagination
responses:
'200':
description: Successful query
content:
application/json:
schema:
$ref: '#/components/schemas/QueryResponse'
'400':
$ref: '#/components/responses/BadRequest'
'401':
$ref: '#/components/responses/Unauthorized'
'403':
$ref: '#/components/responses/Forbidden'
'404':
$ref: '#/components/responses/NotFound'
'409':
$ref: '#/components/responses/Conflict'
'412':
$ref: '#/components/responses/PreconditionFailed'
'413':
$ref: '#/components/responses/RequestEntityTooLarge'
'429':
$ref: '#/components/responses/TooManyRequests'
'421':
$ref: '#/components/responses/UnprocessableEntity'
'500':
$ref: '#/components/responses/InternalServerError'
'503':
$ref: '#/components/responses/ServiceUnavailable'
/database/{version}/{container}/{environment}/{database}/records/modify:
post:
summary: Modify Records
description: Create, update, or delete records (supports bulk operations)
operationId: modifyRecords
tags:
- Records
parameters:
- $ref: '#/components/parameters/version'
- $ref: '#/components/parameters/container'
- $ref: '#/components/parameters/environment'
- $ref: '#/components/parameters/database'
requestBody:
required: true
content:
application/json:
schema:
type: object
properties:
operations:
type: array
items:
$ref: '#/components/schemas/RecordOperation'
atomic:
type: boolean
description: If true, all operations must succeed or all fail
responses:
'200':
description: Records modified successfully
content:
application/json:
schema:
$ref: '#/components/schemas/ModifyResponse'
'400':
$ref: '#/components/responses/BadRequest'
'401':
$ref: '#/components/responses/Unauthorized'
'403':
$ref: '#/components/responses/Forbidden'
'404':
$ref: '#/components/responses/NotFound'
'409':
$ref: '#/components/responses/Conflict'
'412':
$ref: '#/components/responses/PreconditionFailed'
'413':
$ref: '#/components/responses/RequestEntityTooLarge'
'429':
$ref: '#/components/responses/TooManyRequests'
'421':
$ref: '#/components/responses/UnprocessableEntity'
'500':
$ref: '#/components/responses/InternalServerError'
'503':
$ref: '#/components/responses/ServiceUnavailable'
/database/{version}/{container}/{environment}/{database}/records/lookup:
post:
summary: Lookup Records
description: Fetch specific records by their IDs
operationId: lookupRecords
tags:
- Records
parameters:
- $ref: '#/components/parameters/version'
- $ref: '#/components/parameters/container'
- $ref: '#/components/parameters/environment'
- $ref: '#/components/parameters/database'
requestBody:
required: true
content:
application/json:
schema:
type: object
properties:
records:
type: array
items:
type: object
properties:
recordName:
type: string
desiredKeys:
type: array
items:
type: string
responses:
'200':
description: Records retrieved successfully
content:
application/json:
schema:
$ref: '#/components/schemas/LookupResponse'
'400':
$ref: '#/components/responses/BadRequest'
'401':
$ref: '#/components/responses/Unauthorized'
'403':
$ref: '#/components/responses/Forbidden'
'404':
$ref: '#/components/responses/NotFound'
'409':
$ref: '#/components/responses/Conflict'
'412':
$ref: '#/components/responses/PreconditionFailed'
'413':
$ref: '#/components/responses/RequestEntityTooLarge'
'429':
$ref: '#/components/responses/TooManyRequests'
'421':
$ref: '#/components/responses/UnprocessableEntity'
'500':
$ref: '#/components/responses/InternalServerError'
'503':
$ref: '#/components/responses/ServiceUnavailable'
/database/{version}/{container}/{environment}/{database}/records/changes:
post:
summary: Fetch Record Changes
description: Get all record changes relative to a sync token
operationId: fetchRecordChanges
tags:
- Records
parameters:
- $ref: '#/components/parameters/version'
- $ref: '#/components/parameters/container'
- $ref: '#/components/parameters/environment'
- $ref: '#/components/parameters/database'
requestBody:
required: true
content:
application/json:
schema:
type: object
properties:
zoneID:
$ref: '#/components/schemas/ZoneID'
syncToken:
type: string
description: Token from previous sync operation
resultsLimit:
type: integer
responses:
'200':
description: Changes retrieved successfully
content:
application/json:
schema:
$ref: '#/components/schemas/ChangesResponse'
'400':
$ref: '#/components/responses/BadRequest'
'401':
$ref: '#/components/responses/Unauthorized'
'403':
$ref: '#/components/responses/Forbidden'
'404':
$ref: '#/components/responses/NotFound'
'409':
$ref: '#/components/responses/Conflict'
'412':
$ref: '#/components/responses/PreconditionFailed'
'413':
$ref: '#/components/responses/RequestEntityTooLarge'
'429':
$ref: '#/components/responses/TooManyRequests'
'421':
$ref: '#/components/responses/UnprocessableEntity'
'500':
$ref: '#/components/responses/InternalServerError'
'503':
$ref: '#/components/responses/ServiceUnavailable'
/database/{version}/{container}/{environment}/{database}/zones/list:
get:
summary: List All Zones
description: Fetch all zones in the database
operationId: listZones
tags:
- Zones
parameters:
- $ref: '#/components/parameters/version'
- $ref: '#/components/parameters/container'
- $ref: '#/components/parameters/environment'
- $ref: '#/components/parameters/database'
responses:
'200':
description: Zones retrieved successfully
content:
application/json:
schema:
$ref: '#/components/schemas/ZonesListResponse'
'400':
$ref: '#/components/responses/BadRequest'
'401':
$ref: '#/components/responses/Unauthorized'
'403':
$ref: '#/components/responses/Forbidden'
'404':
$ref: '#/components/responses/NotFound'
'409':
$ref: '#/components/responses/Conflict'
'412':
$ref: '#/components/responses/PreconditionFailed'
'413':
$ref: '#/components/responses/RequestEntityTooLarge'
'429':
$ref: '#/components/responses/TooManyRequests'
'421':
$ref: '#/components/responses/UnprocessableEntity'
'500':
$ref: '#/components/responses/InternalServerError'
'503':
$ref: '#/components/responses/ServiceUnavailable'
/database/{version}/{container}/{environment}/{database}/zones/lookup:
post:
summary: Lookup Zones
description: Fetch specific zones by their IDs
operationId: lookupZones
tags:
- Zones
parameters:
- $ref: '#/components/parameters/version'
- $ref: '#/components/parameters/container'
- $ref: '#/components/parameters/environment'
- $ref: '#/components/parameters/database'
requestBody:
required: true
content:
application/json:
schema:
type: object
properties:
zones:
type: array
items:
$ref: '#/components/schemas/ZoneID'
responses:
'200':
description: Zones retrieved successfully
content:
application/json:
schema:
$ref: '#/components/schemas/ZonesLookupResponse'
'400':
$ref: '#/components/responses/BadRequest'
'401':
$ref: '#/components/responses/Unauthorized'
/database/{version}/{container}/{environment}/{database}/zones/modify:
post:
summary: Modify Zones
description: Create or delete zones (only supported in private database)
operationId: modifyZones
tags:
- Zones
parameters:
- $ref: '#/components/parameters/version'
- $ref: '#/components/parameters/container'
- $ref: '#/components/parameters/environment'
- $ref: '#/components/parameters/database'
requestBody:
required: true
content:
application/json:
schema:
type: object
properties:
operations:
type: array
items:
$ref: '#/components/schemas/ZoneOperation'
responses:
'200':
description: Zones modified successfully
content:
application/json:
schema:
$ref: '#/components/schemas/ZonesModifyResponse'
'400':
$ref: '#/components/responses/BadRequest'
'401':
$ref: '#/components/responses/Unauthorized'
/database/{version}/{container}/{environment}/{database}/zones/changes:
post:
summary: Fetch Zone Changes
description: Get all changed zones relative to a meta-sync token
operationId: fetchZoneChanges
tags:
- Zones
parameters:
- $ref: '#/components/parameters/version'
- $ref: '#/components/parameters/container'
- $ref: '#/components/parameters/environment'
- $ref: '#/components/parameters/database'
requestBody:
required: true
content:
application/json:
schema:
type: object
properties:
syncToken:
type: string
description: Meta-sync token from previous operation
responses:
'200':
description: Zone changes retrieved successfully
content:
application/json:
schema:
$ref: '#/components/schemas/ZoneChangesResponse'
'400':
$ref: '#/components/responses/BadRequest'
'401':
$ref: '#/components/responses/Unauthorized'
/database/{version}/{container}/{environment}/{database}/subscriptions/list:
get:
summary: List All Subscriptions
description: Fetch all subscriptions in the database
operationId: listSubscriptions
tags:
- Subscriptions
parameters:
- $ref: '#/components/parameters/version'
- $ref: '#/components/parameters/container'
- $ref: '#/components/parameters/environment'
- $ref: '#/components/parameters/database'
responses:
'200':
description: Subscriptions retrieved successfully
content:
application/json:
schema:
$ref: '#/components/schemas/SubscriptionsListResponse'
'400':
$ref: '#/components/responses/BadRequest'
'401':
$ref: '#/components/responses/Unauthorized'
/database/{version}/{container}/{environment}/{database}/subscriptions/lookup:
post:
summary: Lookup Subscriptions
description: Fetch specific subscriptions by their IDs
operationId: lookupSubscriptions
tags:
- Subscriptions
parameters:
- $ref: '#/components/parameters/version'
- $ref: '#/components/parameters/container'
- $ref: '#/components/parameters/environment'
- $ref: '#/components/parameters/database'
requestBody:
required: true
content:
application/json:
schema:
type: object
properties:
subscriptions:
type: array
items:
type: object
properties:
subscriptionID:
type: string
responses:
'200':
description: Subscriptions retrieved successfully
content:
application/json:
schema:
$ref: '#/components/schemas/SubscriptionsLookupResponse'
'400':
$ref: '#/components/responses/BadRequest'
'401':
$ref: '#/components/responses/Unauthorized'
/database/{version}/{container}/{environment}/{database}/subscriptions/modify:
post:
summary: Modify Subscriptions
description: Create, update, or delete subscriptions
operationId: modifySubscriptions
tags:
- Subscriptions
parameters:
- $ref: '#/components/parameters/version'
- $ref: '#/components/parameters/container'
- $ref: '#/components/parameters/environment'
- $ref: '#/components/parameters/database'
requestBody:
required: true
content:
application/json:
schema:
type: object
properties:
operations:
type: array
items:
$ref: '#/components/schemas/SubscriptionOperation'
responses:
'200':
description: Subscriptions modified successfully
content:
application/json:
schema:
$ref: '#/components/schemas/SubscriptionsModifyResponse'
'400':
$ref: '#/components/responses/BadRequest'
'401':
$ref: '#/components/responses/Unauthorized'
/database/{version}/{container}/{environment}/{database}/users/current:
get:
summary: Get Current User
description: Fetch the current authenticated user's information
operationId: getCurrentUser
tags:
- Users
parameters:
- $ref: '#/components/parameters/version'
- $ref: '#/components/parameters/container'
- $ref: '#/components/parameters/environment'
- $ref: '#/components/parameters/database'
responses:
'200':
description: User information retrieved successfully
content:
application/json:
schema:
$ref: '#/components/schemas/UserResponse'
'400':
$ref: '#/components/responses/BadRequest'
'401':
$ref: '#/components/responses/Unauthorized'
'403':
$ref: '#/components/responses/Forbidden'
'404':
$ref: '#/components/responses/NotFound'
'409':
$ref: '#/components/responses/Conflict'
'412':
$ref: '#/components/responses/PreconditionFailed'
'413':
$ref: '#/components/responses/RequestEntityTooLarge'
'429':
$ref: '#/components/responses/TooManyRequests'
'421':
$ref: '#/components/responses/UnprocessableEntity'
'500':
$ref: '#/components/responses/InternalServerError'
'503':
$ref: '#/components/responses/ServiceUnavailable'
/database/{version}/{container}/{environment}/{database}/users/discover:
post:
summary: Discover User Identities
description: Discover all user identities based on email addresses or user record names
operationId: discoverUserIdentities
tags:
- Users
parameters:
- $ref: '#/components/parameters/version'
- $ref: '#/components/parameters/container'
- $ref: '#/components/parameters/environment'
- $ref: '#/components/parameters/database'
requestBody:
required: true
content:
application/json:
schema:
type: object
properties:
users:
type: array
items:
type: object
properties:
emailAddress:
type: string
userRecordName:
type: string
responses:
'200':
description: User identities discovered successfully
content:
application/json:
schema:
$ref: '#/components/schemas/DiscoverResponse'
'400':
$ref: '#/components/responses/BadRequest'
'401':
$ref: '#/components/responses/Unauthorized'
/database/{version}/{container}/{environment}/{database}/users/lookup/contacts:
post:
summary: Lookup Contacts (Deprecated)
description: Fetch contacts (This endpoint is deprecated)
deprecated: true
operationId: lookupContacts
tags:
- Users
parameters:
- $ref: '#/components/parameters/version'
- $ref: '#/components/parameters/container'
- $ref: '#/components/parameters/environment'
- $ref: '#/components/parameters/database'
requestBody:
required: true
content:
application/json:
schema:
type: object
properties:
contacts:
type: array
items:
type: object
responses:
'200':
description: Contacts retrieved successfully
content:
application/json:
schema:
$ref: '#/components/schemas/ContactsResponse'
'400':
$ref: '#/components/responses/BadRequest'
'401':
$ref: '#/components/responses/Unauthorized'
/database/{version}/{container}/{environment}/{database}/assets/upload:
post:
summary: Request Asset Upload URLs
description: |
Request upload URLs for asset fields. This is the first step in a two-step process:
1. Request upload URLs by specifying the record type and field name
2. Upload the actual binary data to the returned URL (separate HTTP request)
Upload URLs are valid for 15 minutes. Maximum file size is 15 MB.
operationId: uploadAssets
tags:
- Assets
parameters:
- $ref: '#/components/parameters/version'
- $ref: '#/components/parameters/container'
- $ref: '#/components/parameters/environment'
- $ref: '#/components/parameters/database'
requestBody:
required: true
content:
application/json:
schema:
type: object
properties:
zoneID:
$ref: '#/components/schemas/ZoneID'
description: Optional zone ID. Defaults to default zone if not specified.
tokens:
type: array
description: Array of asset fields to request upload URLs for
items:
type: object
required:
- recordType
- fieldName
properties:
recordName:
type: string
description: Unique name to identify the record. Defaults to random UUID if not specified.
recordType:
type: string
description: Name of the record type
fieldName:
type: string
description: Name of the Asset or Asset list field
required:
- tokens
responses:
'200':
description: Upload URLs returned successfully
content:
application/json:
schema:
$ref: '#/components/schemas/AssetUploadResponse'
'400':
$ref: '#/components/responses/BadRequest'
'401':
$ref: '#/components/responses/Unauthorized'
/database/{version}/{container}/{environment}/{database}/tokens/create:
post:
summary: Create APNs Token
description: Create an Apple Push Notification service (APNs) token
operationId: createToken
tags:
- Tokens
parameters:
- $ref: '#/components/parameters/version'
- $ref: '#/components/parameters/container'
- $ref: '#/components/parameters/environment'
- $ref: '#/components/parameters/database'
requestBody:
required: true
content:
application/json:
schema:
type: object
properties:
apnsEnvironment:
type: string
enum: [development, production]
responses:
'200':
description: Token created successfully
content:
application/json:
schema:
$ref: '#/components/schemas/TokenResponse'
'400':
$ref: '#/components/responses/BadRequest'
'401':
$ref: '#/components/responses/Unauthorized'
/database/{version}/{container}/{environment}/{database}/tokens/register:
post:
summary: Register Token
description: Register a token for push notifications
operationId: registerToken
tags:
- Tokens
parameters:
- $ref: '#/components/parameters/version'
- $ref: '#/components/parameters/container'
- $ref: '#/components/parameters/environment'
- $ref: '#/components/parameters/database'
requestBody:
required: true
content:
application/json:
schema:
type: object
properties:
apnsToken:
type: string
description: The APNs token to register
responses:
'200':
description: Token registered successfully
'400':
$ref: '#/components/responses/BadRequest'
'401':
$ref: '#/components/responses/Unauthorized'
components:
securitySchemes:
ApiTokenAuth:
type: apiKey
in: query
name: ckAPIToken
description: API token created using CloudKit Dashboard
ServerToServerAuth:
type: apiKey
in: header
name: X-Apple-CloudKit-Request-KeyID
description: Key ID for server-to-server authentication
parameters:
version:
name: version
in: path
required: true
schema:
type: string
default: "1"
description: Protocol version
container:
name: container
in: path
required: true
schema:
type: string
description: Container ID (begins with "iCloud.")
environment:
name: environment
in: path
required: true
schema:
type: string
enum: [development, production]
description: Container environment
database:
name: database
in: path
required: true
schema:
type: string
enum: [public, private, shared]
description: Database scope
schemas:
ZoneID:
type: object
properties:
zoneName:
type: string
ownerName:
type: string
Filter:
type: object
properties:
comparator:
type: string
enum: [EQUALS, NOT_EQUALS, LESS_THAN, LESS_THAN_OR_EQUALS, GREATER_THAN, GREATER_THAN_OR_EQUALS, NEAR, CONTAINS_ALL_TOKENS, IN, NOT_IN, CONTAINS_ANY_TOKENS, LIST_CONTAINS, NOT_LIST_CONTAINS, BEGINS_WITH, NOT_BEGINS_WITH, LIST_MEMBER_BEGINS_WITH, NOT_LIST_MEMBER_BEGINS_WITH]
fieldName:
type: string
fieldValue:
$ref: '#/components/schemas/FieldValueRequest'
Sort:
type: object
properties:
fieldName:
type: string
ascending:
type: boolean
RecordOperation:
type: object
properties:
operationType:
type: string
enum: [create, update, forceUpdate, replace, forceReplace, delete, forceDelete]
record:
$ref: '#/components/schemas/RecordRequest'
RecordRequest:
type: object
description: Record schema for API requests (fields use FieldValueRequest)
properties:
recordName:
type: string
description: The unique identifier for the record
recordType:
type: string
description: The record type (schema name)
recordChangeTag:
type: string
description: Change tag for optimistic concurrency control
fields:
type: object
description: Record fields with their values (no type metadata)
additionalProperties:
$ref: '#/components/schemas/FieldValueRequest'
RecordResponse:
type: object
description: Record schema for API responses (fields use FieldValueResponse)
properties:
recordName:
type: string
description: The unique identifier for the record
recordType:
type: string
description: The record type (schema name)
recordChangeTag:
type: string
description: Change tag for optimistic concurrency control
fields:
type: object
description: Record fields with their values and optional type information
additionalProperties:
$ref: '#/components/schemas/FieldValueResponse'
FieldValueRequest:
type: object
description: |
A CloudKit field value for API requests.
The type field is omitted as CloudKit infers types from the value structure.
properties:
value:
oneOf:
- $ref: '#/components/schemas/StringValue'
- $ref: '#/components/schemas/Int64Value'
- $ref: '#/components/schemas/DoubleValue'
- $ref: '#/components/schemas/BytesValue'
- $ref: '#/components/schemas/DateValue'
- $ref: '#/components/schemas/LocationValue'
- $ref: '#/components/schemas/ReferenceValue'
- $ref: '#/components/schemas/AssetValue'
- $ref: '#/components/schemas/ListValue'
required:
- value
FieldValueResponse:
type: object
description: |
A CloudKit field value from API responses.
May include optional type field for explicit type information.
properties:
value:
oneOf:
- $ref: '#/components/schemas/StringValue'
- $ref: '#/components/schemas/Int64Value'
- $ref: '#/components/schemas/DoubleValue'
- $ref: '#/components/schemas/BytesValue'
- $ref: '#/components/schemas/DateValue'
- $ref: '#/components/schemas/LocationValue'
- $ref: '#/components/schemas/ReferenceValue'
- $ref: '#/components/schemas/AssetValue'
- $ref: '#/components/schemas/ListValue'
type:
type: string
enum: [STRING, INT64, DOUBLE, BYTES, REFERENCE, ASSET, ASSETID, LOCATION, TIMESTAMP, LIST]
description: The CloudKit field type (optional, may be inferred from value)
required:
- value
StringValue:
type: string
description: A text string value
Int64Value:
type: integer
format: int64
description: A 64-bit integer value
DoubleValue:
type: number
format: double
description: A double-precision floating point value
BytesValue:
type: string
description: Base64-encoded string representing binary data
DateValue:
type: number
format: double
description: Number representing milliseconds since epoch (January 1, 1970)
LocationValue:
type: object
description: Location dictionary as defined in CloudKit Web Services
properties:
latitude:
type: number
format: double
description: Latitude in degrees
longitude:
type: number
format: double
description: Longitude in degrees
horizontalAccuracy:
type: number
format: double
description: Horizontal accuracy in meters
verticalAccuracy:
type: number
format: double
description: Vertical accuracy in meters
altitude:
type: number
format: double
description: Altitude in meters
speed:
type: number
format: double
description: Speed in meters per second
course:
type: number
format: double
description: Course in degrees
timestamp:
type: number
format: double
description: Timestamp in milliseconds since epoch
ReferenceValue:
type: object
description: Reference dictionary as defined in CloudKit Web Services
properties:
recordName:
type: string
description: The record name being referenced
action:
type: string
enum: [NONE, DELETE_SELF]