-
Notifications
You must be signed in to change notification settings - Fork 89
/
indexer.oas3.yml
5245 lines (5245 loc) · 169 KB
/
indexer.oas3.yml
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
{
"components": {
"parameters": {
"account-id": {
"description": "account string",
"in": "path",
"name": "account-id",
"required": true,
"schema": {
"type": "string"
}
},
"address": {
"description": "Only include transactions with this address in one of the transaction fields.",
"in": "query",
"name": "address",
"schema": {
"type": "string",
"x-algorand-format": "Address"
},
"x-algorand-format": "Address"
},
"address-role": {
"description": "Combine with the address parameter to define what type of address to search for.",
"in": "query",
"name": "address-role",
"schema": {
"enum": [
"sender",
"receiver",
"freeze-target"
],
"type": "string"
}
},
"after-time": {
"description": "Include results after the given time. Must be an RFC 3339 formatted string.",
"in": "query",
"name": "after-time",
"schema": {
"format": "date-time",
"type": "string",
"x-algorand-format": "RFC3339 String"
},
"x-algorand-format": "RFC3339 String"
},
"application-id": {
"description": "Application ID",
"in": "query",
"name": "application-id",
"schema": {
"type": "integer"
}
},
"asset-id": {
"description": "Asset ID",
"in": "query",
"name": "asset-id",
"schema": {
"type": "integer"
}
},
"auth-addr": {
"description": "Include accounts configured to use this spending key.",
"in": "query",
"name": "auth-addr",
"schema": {
"type": "string",
"x-algorand-format": "Address"
},
"x-algorand-format": "Address"
},
"before-time": {
"description": "Include results before the given time. Must be an RFC 3339 formatted string.",
"in": "query",
"name": "before-time",
"schema": {
"format": "date-time",
"type": "string",
"x-algorand-format": "RFC3339 String"
},
"x-algorand-format": "RFC3339 String"
},
"box-name": {
"description": "A box name in goal-arg form 'encoding:value'. For ints, use the form 'int:1234'. For raw bytes, use the form 'b64:A=='. For printable strings, use the form 'str:hello'. For addresses, use the form 'addr:XYZ...'.",
"in": "query",
"name": "name",
"required": true,
"schema": {
"type": "string"
}
},
"currency-greater-than": {
"description": "Results should have an amount greater than this value. MicroAlgos are the default currency unless an asset-id is provided, in which case the asset will be used.",
"in": "query",
"name": "currency-greater-than",
"schema": {
"type": "integer"
}
},
"currency-less-than": {
"description": "Results should have an amount less than this value. MicroAlgos are the default currency unless an asset-id is provided, in which case the asset will be used.",
"in": "query",
"name": "currency-less-than",
"schema": {
"type": "integer"
}
},
"exclude": {
"description": "Exclude additional items such as asset holdings, application local data stored for this account, asset parameters created by this account, and application parameters created by this account.",
"explode": false,
"in": "query",
"name": "exclude",
"schema": {
"items": {
"enum": [
"all",
"assets",
"created-assets",
"apps-local-state",
"created-apps",
"none"
],
"type": "string"
},
"type": "array"
},
"style": "form"
},
"exclude-close-to": {
"description": "Combine with address and address-role parameters to define what type of address to search for. The close to fields are normally treated as a receiver, if you would like to exclude them set this parameter to true.",
"in": "query",
"name": "exclude-close-to",
"schema": {
"type": "boolean"
}
},
"header-only": {
"description": "Header only flag. When this is set to true, returned block does not contain the transactions",
"in": "query",
"name": "header-only",
"schema": {
"type": "boolean"
}
},
"include-all": {
"description": "Include all items including closed accounts, deleted applications, destroyed assets, opted-out asset holdings, and closed-out application localstates.",
"in": "query",
"name": "include-all",
"schema": {
"type": "boolean"
}
},
"limit": {
"description": "Maximum number of results to return. There could be additional pages even if the limit is not reached.",
"in": "query",
"name": "limit",
"schema": {
"type": "integer"
}
},
"max-round": {
"description": "Include results at or before the specified max-round.",
"in": "query",
"name": "max-round",
"schema": {
"type": "integer"
}
},
"min-round": {
"description": "Include results at or after the specified min-round.",
"in": "query",
"name": "min-round",
"schema": {
"type": "integer"
}
},
"next": {
"description": "The next page of results. Use the next token provided by the previous results.",
"in": "query",
"name": "next",
"schema": {
"type": "string"
}
},
"note-prefix": {
"description": "Specifies a prefix which must be contained in the note field.",
"in": "query",
"name": "note-prefix",
"schema": {
"type": "string",
"x-algorand-format": "base64"
},
"x-algorand-format": "base64"
},
"rekey-to": {
"description": "Include results which include the rekey-to field.",
"in": "query",
"name": "rekey-to",
"schema": {
"type": "boolean"
}
},
"round": {
"description": "Include results for the specified round.",
"in": "query",
"name": "round",
"schema": {
"type": "integer"
}
},
"round-number": {
"description": "Round number",
"in": "path",
"name": "round-number",
"required": true,
"schema": {
"type": "integer"
}
},
"sender-address": {
"description": "Only include transactions with this sender address.",
"in": "query",
"name": "sender-address",
"schema": {
"type": "string",
"x-algorand-format": "Address"
},
"x-algorand-format": "Address"
},
"sig-type": {
"description": "SigType filters just results using the specified type of signature:\n* sig - Standard\n* msig - MultiSig\n* lsig - LogicSig",
"in": "query",
"name": "sig-type",
"schema": {
"enum": [
"sig",
"msig",
"lsig"
],
"type": "string"
}
},
"tx-type": {
"in": "query",
"name": "tx-type",
"schema": {
"enum": [
"pay",
"keyreg",
"acfg",
"axfer",
"afrz",
"appl",
"stpf"
],
"type": "string"
}
},
"txid": {
"description": "Lookup the specific transaction by ID.",
"in": "query",
"name": "txid",
"schema": {
"type": "string"
}
}
},
"responses": {
"AccountResponse": {
"content": {
"application/json": {
"schema": {
"properties": {
"account": {
"$ref": "#/components/schemas/Account"
},
"current-round": {
"description": "Round at which the results were computed.",
"type": "integer"
}
},
"required": [
"account",
"current-round"
],
"type": "object"
}
}
},
"description": "(empty)"
},
"AccountsResponse": {
"content": {
"application/json": {
"schema": {
"properties": {
"accounts": {
"items": {
"$ref": "#/components/schemas/Account"
},
"type": "array"
},
"current-round": {
"description": "Round at which the results were computed.",
"type": "integer"
},
"next-token": {
"description": "Used for pagination, when making another request provide this token with the next parameter.",
"type": "string"
}
},
"required": [
"accounts",
"current-round"
],
"type": "object"
}
}
},
"description": "(empty)"
},
"ApplicationLocalStatesResponse": {
"content": {
"application/json": {
"schema": {
"properties": {
"apps-local-states": {
"items": {
"$ref": "#/components/schemas/ApplicationLocalState"
},
"type": "array"
},
"current-round": {
"description": "Round at which the results were computed.",
"type": "integer"
},
"next-token": {
"description": "Used for pagination, when making another request provide this token with the next parameter.",
"type": "string"
}
},
"required": [
"apps-local-states",
"current-round"
],
"type": "object"
}
}
},
"description": "(empty)"
},
"ApplicationLogsResponse": {
"content": {
"application/json": {
"schema": {
"properties": {
"application-id": {
"description": "\\[appidx\\] application index.",
"type": "integer"
},
"current-round": {
"description": "Round at which the results were computed.",
"type": "integer"
},
"log-data": {
"items": {
"$ref": "#/components/schemas/ApplicationLogData"
},
"type": "array"
},
"next-token": {
"description": "Used for pagination, when making another request provide this token with the next parameter.",
"type": "string"
}
},
"required": [
"application-id",
"current-round"
],
"type": "object"
}
}
},
"description": "(empty)"
},
"ApplicationResponse": {
"content": {
"application/json": {
"schema": {
"properties": {
"application": {
"$ref": "#/components/schemas/Application"
},
"current-round": {
"description": "Round at which the results were computed.",
"type": "integer"
}
},
"required": [
"current-round"
],
"type": "object"
}
}
},
"description": "(empty)"
},
"ApplicationsResponse": {
"content": {
"application/json": {
"schema": {
"properties": {
"applications": {
"items": {
"$ref": "#/components/schemas/Application"
},
"type": "array"
},
"current-round": {
"description": "Round at which the results were computed.",
"type": "integer"
},
"next-token": {
"description": "Used for pagination, when making another request provide this token with the next parameter.",
"type": "string"
}
},
"required": [
"applications",
"current-round"
],
"type": "object"
}
}
},
"description": "(empty)"
},
"AssetBalancesResponse": {
"content": {
"application/json": {
"schema": {
"properties": {
"balances": {
"items": {
"$ref": "#/components/schemas/MiniAssetHolding"
},
"type": "array"
},
"current-round": {
"description": "Round at which the results were computed.",
"type": "integer"
},
"next-token": {
"description": "Used for pagination, when making another request provide this token with the next parameter.",
"type": "string"
}
},
"required": [
"balances",
"current-round"
],
"type": "object"
}
}
},
"description": "(empty)"
},
"AssetHoldingsResponse": {
"content": {
"application/json": {
"schema": {
"properties": {
"assets": {
"items": {
"$ref": "#/components/schemas/AssetHolding"
},
"type": "array"
},
"current-round": {
"description": "Round at which the results were computed.",
"type": "integer"
},
"next-token": {
"description": "Used for pagination, when making another request provide this token with the next parameter.",
"type": "string"
}
},
"required": [
"assets",
"current-round"
],
"type": "object"
}
}
},
"description": "(empty)"
},
"AssetResponse": {
"content": {
"application/json": {
"schema": {
"properties": {
"asset": {
"$ref": "#/components/schemas/Asset"
},
"current-round": {
"description": "Round at which the results were computed.",
"type": "integer"
}
},
"required": [
"asset",
"current-round"
],
"type": "object"
}
}
},
"description": "(empty)"
},
"AssetsResponse": {
"content": {
"application/json": {
"schema": {
"properties": {
"assets": {
"items": {
"$ref": "#/components/schemas/Asset"
},
"type": "array"
},
"current-round": {
"description": "Round at which the results were computed.",
"type": "integer"
},
"next-token": {
"description": "Used for pagination, when making another request provide this token with the next parameter.",
"type": "string"
}
},
"required": [
"assets",
"current-round"
],
"type": "object"
}
}
},
"description": "(empty)"
},
"BlockResponse": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/Block"
}
}
},
"description": "(empty)"
},
"BoxResponse": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/Box"
}
}
},
"description": "Box information"
},
"BoxesResponse": {
"content": {
"application/json": {
"schema": {
"properties": {
"application-id": {
"description": "\\[appidx\\] application index.",
"type": "integer"
},
"boxes": {
"items": {
"$ref": "#/components/schemas/BoxDescriptor"
},
"type": "array"
},
"next-token": {
"description": "Used for pagination, when making another request provide this token with the next parameter.",
"type": "string"
}
},
"required": [
"application-id",
"boxes"
],
"type": "object"
}
}
},
"description": "Box names of an application"
},
"ErrorResponse": {
"content": {
"application/json": {
"schema": {
"properties": {
"data": {
"properties": {},
"type": "object"
},
"message": {
"type": "string"
}
},
"required": [
"message"
],
"type": "object"
}
}
},
"description": "Response for errors"
},
"HealthCheckResponse": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/HealthCheck"
}
}
},
"description": "(empty)"
},
"TransactionResponse": {
"content": {
"application/json": {
"schema": {
"properties": {
"current-round": {
"description": "Round at which the results were computed.",
"type": "integer"
},
"transaction": {
"$ref": "#/components/schemas/Transaction"
}
},
"required": [
"current-round",
"transaction"
],
"type": "object"
}
}
},
"description": "(empty)"
},
"TransactionsResponse": {
"content": {
"application/json": {
"schema": {
"properties": {
"current-round": {
"description": "Round at which the results were computed.",
"type": "integer"
},
"next-token": {
"description": "Used for pagination, when making another request provide this token with the next parameter.",
"type": "string"
},
"transactions": {
"items": {
"$ref": "#/components/schemas/Transaction"
},
"type": "array"
}
},
"required": [
"current-round",
"transactions"
],
"type": "object"
}
}
},
"description": "(empty)"
}
},
"schemas": {
"Account": {
"description": "Account information at a given round.\n\nDefinition:\ndata/basics/userBalance.go : AccountData\n",
"properties": {
"address": {
"description": "the account public key",
"type": "string"
},
"amount": {
"description": "total number of MicroAlgos in the account",
"type": "integer"
},
"amount-without-pending-rewards": {
"description": "specifies the amount of MicroAlgos in the account, without the pending rewards.",
"type": "integer"
},
"apps-local-state": {
"description": "application local data stored in this account.\n\nNote the raw object uses `map[int] -> AppLocalState` for this type.",
"items": {
"$ref": "#/components/schemas/ApplicationLocalState"
},
"type": "array"
},
"apps-total-extra-pages": {
"description": "the sum of all extra application program pages for this account.",
"type": "integer"
},
"apps-total-schema": {
"$ref": "#/components/schemas/ApplicationStateSchema"
},
"assets": {
"description": "assets held by this account.\n\nNote the raw object uses `map[int] -> AssetHolding` for this type.",
"items": {
"$ref": "#/components/schemas/AssetHolding"
},
"type": "array"
},
"auth-addr": {
"description": "The address against which signing should be checked. If empty, the address of the current account is used. This field can be updated in any transaction by setting the RekeyTo field.",
"type": "string",
"x-algorand-format": "Address"
},
"closed-at-round": {
"description": "Round during which this account was most recently closed.",
"type": "integer",
"x-algorand-format": "uint64"
},
"created-apps": {
"description": "parameters of applications created by this account including app global data.\n\nNote: the raw account uses `map[int] -> AppParams` for this type.",
"items": {
"$ref": "#/components/schemas/Application"
},
"type": "array"
},
"created-assets": {
"description": "parameters of assets created by this account.\n\nNote: the raw account uses `map[int] -> Asset` for this type.",
"items": {
"$ref": "#/components/schemas/Asset"
},
"type": "array"
},
"created-at-round": {
"description": "Round during which this account first appeared in a transaction.",
"type": "integer",
"x-algorand-format": "uint64"
},
"deleted": {
"description": "Whether or not this account is currently closed.",
"type": "boolean"
},
"incentive-eligible": {
"description": "can the account receive block incentives if its balance is in range at proposal time.",
"type": "boolean"
},
"last-heartbeat": {
"description": "The round in which this account last went online, or explicitly renewed their online status.",
"type": "integer"
},
"last-proposed": {
"description": "The round in which this account last proposed the block.",
"type": "integer"
},
"min-balance": {
"description": "MicroAlgo balance required by the account.\n\nThe requirement grows based on asset and application usage.",
"type": "integer"
},
"participation": {
"$ref": "#/components/schemas/AccountParticipation"
},
"pending-rewards": {
"description": "amount of MicroAlgos of pending rewards in this account.",
"type": "integer"
},
"reward-base": {
"description": "used as part of the rewards computation. Only applicable to accounts which are participating.",
"type": "integer"
},
"rewards": {
"description": "total rewards of MicroAlgos the account has received, including pending rewards.",
"type": "integer"
},
"round": {
"description": "The round for which this information is relevant.",
"type": "integer"
},
"sig-type": {
"description": "the type of signature used by this account, must be one of:\n* sig\n* msig\n* lsig\n* or null if unknown",
"enum": [
"sig",
"msig",
"lsig"
],
"type": "string"
},
"status": {
"description": "voting status of the account's MicroAlgos\n* Offline - indicates that the associated account is delegated.\n* Online - indicates that the associated account used as part of the delegation pool.\n* NotParticipating - indicates that the associated account is neither a delegator nor a delegate.",
"type": "string"
},
"total-apps-opted-in": {
"description": "The count of all applications that have been opted in, equivalent to the count of application local data (AppLocalState objects) stored in this account.",
"type": "integer"
},
"total-assets-opted-in": {
"description": "The count of all assets that have been opted in, equivalent to the count of AssetHolding objects held by this account.",
"type": "integer"
},
"total-box-bytes": {
"description": "For app-accounts only. The total number of bytes allocated for the keys and values of boxes which belong to the associated application.",
"type": "integer"
},
"total-boxes": {
"description": "For app-accounts only. The total number of boxes which belong to the associated application.",
"type": "integer"
},
"total-created-apps": {
"description": "The count of all apps (AppParams objects) created by this account.",
"type": "integer"
},
"total-created-assets": {
"description": "The count of all assets (AssetParams objects) created by this account.",
"type": "integer"
}
},
"required": [
"address",
"amount",
"amount-without-pending-rewards",
"min-balance",
"pending-rewards",
"rewards",
"round",
"status",
"total-apps-opted-in",
"total-assets-opted-in",
"total-box-bytes",
"total-boxes",
"total-created-apps",
"total-created-assets"
],
"type": "object"
},
"AccountParticipation": {
"description": "AccountParticipation describes the parameters used by this account in consensus protocol.",
"properties": {
"selection-participation-key": {
"description": "Selection public key (if any) currently registered for this round.",
"format": "byte",
"pattern": "^(?:[A-Za-z0-9+/]{4})*(?:[A-Za-z0-9+/]{2}==|[A-Za-z0-9+/]{3}=)?$",
"type": "string"
},
"state-proof-key": {
"description": "Root of the state proof key (if any)",
"format": "byte",
"pattern": "^(?:[A-Za-z0-9+/]{4})*(?:[A-Za-z0-9+/]{2}==|[A-Za-z0-9+/]{3}=)?$",
"type": "string"
},
"vote-first-valid": {
"description": "First round for which this participation is valid.",
"type": "integer"
},
"vote-key-dilution": {
"description": "Number of subkeys in each batch of participation keys.",
"type": "integer"
},
"vote-last-valid": {
"description": "Last round for which this participation is valid.",
"type": "integer"
},
"vote-participation-key": {
"description": "root participation public key (if any) currently registered for this round.",
"format": "byte",
"pattern": "^(?:[A-Za-z0-9+/]{4})*(?:[A-Za-z0-9+/]{2}==|[A-Za-z0-9+/]{3}=)?$",
"type": "string"
}
},
"required": [
"selection-participation-key",
"vote-first-valid",
"vote-key-dilution",
"vote-last-valid",
"vote-participation-key"
],
"type": "object"
},
"AccountStateDelta": {
"description": "Application state delta.",
"properties": {
"address": {
"type": "string"
},
"delta": {
"$ref": "#/components/schemas/StateDelta"
}
},
"required": [
"address",
"delta"
],
"type": "object"
},
"Application": {
"description": "Application index and its parameters",
"properties": {
"created-at-round": {
"description": "Round when this application was created.",
"type": "integer",
"x-algorand-format": "uint64"
},
"deleted": {
"description": "Whether or not this application is currently deleted.",
"type": "boolean"
},
"deleted-at-round": {
"description": "Round when this application was deleted.",
"type": "integer",
"x-algorand-format": "uint64"
},
"id": {
"description": "application index.",
"type": "integer"
},
"params": {
"$ref": "#/components/schemas/ApplicationParams"
}
},
"required": [
"id",
"params"
],
"type": "object"
},
"ApplicationLocalState": {
"description": "Stores local state associated with an application.",
"properties": {
"closed-out-at-round": {
"description": "Round when account closed out of the application.",
"type": "integer",
"x-algorand-format": "uint64"
},
"deleted": {
"description": "Whether or not the application local state is currently deleted from its account.",
"type": "boolean"
},
"id": {
"description": "The application which this local state is for.",
"type": "integer"
},
"key-value": {
"$ref": "#/components/schemas/TealKeyValueStore"
},
"opted-in-at-round": {
"description": "Round when the account opted into the application.",
"type": "integer",
"x-algorand-format": "uint64"
},
"schema": {
"$ref": "#/components/schemas/ApplicationStateSchema"
}
},
"required": [
"id",
"schema"
],
"type": "object"
},
"ApplicationLogData": {
"description": "Stores the global information associated with an application.",
"properties": {
"logs": {
"description": "Logs for the application being executed by the transaction.",
"items": {
"format": "byte",
"pattern": "^(?:[A-Za-z0-9+/]{4})*(?:[A-Za-z0-9+/]{2}==|[A-Za-z0-9+/]{3}=)?$",
"type": "string"
},
"type": "array"
},
"txid": {
"description": "Transaction ID",
"type": "string"
}
},
"required": [
"logs",
"txid"
],
"type": "object"
},
"ApplicationParams": {
"description": "Stores the global information associated with an application.",
"properties": {
"approval-program": {
"description": "approval program.",