-
Notifications
You must be signed in to change notification settings - Fork 2
/
acnh-api-v1.yaml
1669 lines (1662 loc) · 47.6 KB
/
acnh-api-v1.yaml
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.0
info:
description: 'A free Animal Crossing: New Horizons API for getting information about critters (bugs,fish, sea creatures), art, villagers and more!'
title: ACNH API
version: v1
servers:
- url: http://acnhapi.com
- url: https://acnhapi.com
paths:
/v1/art/:
get:
description: Get all art data .
operationId: getV1Art
responses:
'200':
content:
application/json:
schema:
items:
$ref: '#/components/schemas/inline_response_200_6'
type: array
description: OK
summary: All Art
tags:
- Art
/v1/art/{artID}:
get:
description: Get art data
operationId: getV1ArtArtid
parameters:
- explode: false
in: path
name: artID
required: true
schema:
type: string
style: simple
responses:
'200':
content:
application/json:
examples:
/v1/art/1:
value:
buy-price: 4980
file-name: academic_painting
hasFake: true
id: 1
image_uri: https://acnhapi.com/v1/images/art/academic_painting
museum-desc: This drawing is based on the "ideal" human-body ratio,
as stated in "De architectura." "De architectura" was a treatise
by Vitruvius, an architect from the early 1st century BCE.
name:
name-CNzh: "\u5B66\u672F\u6027\u7684\u540D\u753B"
name-EUde: "Wissenschaftsgem\xE4lde"
name-EUen: academic painting
name-EUes: "cuadro anat\xF3mico"
name-EUfr: "toile acad\xE9mique"
name-EUit: quadro accademico
name-EUnl: academische schilderij
name-EUru: "\u0430\u043A\u0430\u0434\u0435\u043C\u0438\u0447\u0435\u0441\u043A\u0430\u044F
\u043A\u0430\u0440\u0442\u0438\u043D\u0430"
name-JPja: "\u30A2\u30AB\u30C7\u30DF\u30C3\u30AF\u306A\u3081\u3044\u304C"
name-KRko: "\uC544\uCE74\uB370\uBBF9\uD55C \uBA85\uD654"
name-TWzh: "\u5B78\u8853\u6027\u7684\u540D\u756B"
name-USen: academic painting
name-USes: "cuadro anat\xF3mico"
name-USfr: "toile acad\xE9mique"
sell-price: 1245
schema:
$ref: '#/components/schemas/inline_response_200_6'
description: OK
'404':
description: Not Found
summary: Art
tags:
- Art
/v1/bugs/:
get:
description: Get all bugs data
operationId: getV1Bugs
responses:
'200':
content:
application/json:
schema:
items:
$ref: '#/components/schemas/inline_response_200_2'
type: array
description: OK
summary: All Bugs
tags:
- Bugs
/v1/bugs/{bugID}:
get:
description: Get bugs data .
operationId: getV1BugsBugid
parameters:
- description: Either the file-name of a bug or it's ID.
explode: false
in: path
name: bugID
required: true
schema:
type: string
style: simple
responses:
'200':
content:
application/json:
examples:
/v1/bugs/1:
value:
availability:
isAllDay: false
isAllYear: false
location: Flying
month-array-northern:
- 9
- 10
- 11
- 12
- 1
- 2
- 3
- 4
- 5
- 6
month-array-southern:
- 3
- 4
- 5
- 6
- 7
- 8
- 9
- 10
- 11
- 12
month-northern: 9-6
month-southern: 3-12
rarity: Common
time: 4am - 7pm
time-array:
- 4
- 5
- 6
- 7
- 8
- 9
- 10
- 11
- 12
- 13
- 14
- 15
- 16
- 17
- 18
catch-phrase: I caught a common butterfly! They often flutter
by!
file-name: common_butterfly
icon_uri: https://acnhapi.com/v1/icons/bugs/1
id: 1
image_uri: https://acnhapi.com/v1/images/bugs/1
museum-phrase: The common butterfly would have you believe it
is but a beautiful friend flitting prettily about the flowers.
Bah, I say! They may seem innocent things with their pretty
white wings, but they hide a dark side! The common butterfly
caterpillar is called a cabbage worm, you see, and it's a most
voracious pest. The ravenous beasts chew through cabbage, broccoli,
kale and the like with a devastating gusto. And my feathers!
Their green coloring is truly GROSS! A hoo-rrific hue, I say.
name:
name-CNzh: "\u767D\u7C89\u8776"
name-EUde: "Kohlwei\xDFling"
name-EUen: common butterfly
name-EUes: "mariposa com\xFAn"
name-EUfr: "pi\xE9ride de la rave"
name-EUit: farfalla comune
name-EUnl: koolwitje
name-EUru: "\u0431\u0435\u043B\u044F\u043D\u043A\u0430"
name-JPja: "\u30E2\u30F3\u30B7\u30ED\u30C1\u30E7\u30A6"
name-KRko: "\uBC30\uCD94\uD770\uB098\uBE44"
name-TWzh: "\u767D\u7C89\u8776"
name-USen: common butterfly
name-USes: "mariposa com\xFAn"
name-USfr: "pi\xE9ride de la rave"
price: 160
price-flick: 240
schema:
$ref: '#/components/schemas/inline_response_200_2'
description: OK
'404':
description: Not Found
summary: Bugs
tags:
- Bugs
/v1/fish/:
get:
description: Get fish data
operationId: getV1Fish
responses:
'200':
content:
application/json:
schema:
items:
$ref: '#/components/schemas/inline_response_200'
type: array
description: OK
summary: All Fish
tags:
- Fish
/v1/fish/{fishID}:
get:
description: Get fish data .
operationId: getV1FishFishid
parameters:
- description: Either the file-name of a fish or it's ID.
explode: false
in: path
name: fishID
required: true
schema:
type: string
style: simple
responses:
'200':
content:
application/json:
examples:
/v1/fish/1:
value:
availability:
isAllDay: true
isAllYear: false
location: River
month-array-northern:
- 11
- 12
- 1
- 2
- 3
month-array-southern:
- 5
- 6
- 7
- 8
- 9
month-northern: 11-3
month-southern: 5-9
rarity: Common
time: ''
time-array:
- 0
- 1
- 2
- 3
- 4
- 5
- 6
- 7
- 8
- 9
- 10
- 11
- 12
- 13
- 14
- 15
- 16
- 17
- 18
- 19
- 20
- 21
- 22
- 23
catch-phrase: I caught a bitterling! It's mad at me, but only
a little.
file-name: bitterling
icon_uri: https://acnhapi.com/v1/icons/fish/1
id: 1
image_uri: https://acnhapi.com/v1/images/fish/1
museum-phrase: "Bitterlings hide their eggs inside large bivalves\u2014like
clams\u2014where the young can stay safe until grown. The bitterling
isnt being sneaky. No, their young help keep the bivalve healthy
by eating invading parasites! Its a wonderful bit of evolutionary
deal making, don't you think? Each one keeping the other safe...
Though eating parasites does not sound like a happy childhood...
Is that why the fish is so bitter?"
name:
name-CNzh: "\u7EA2\u76EE\u9CAB"
name-EUde: Bitterling
name-EUen: bitterling
name-EUes: amarguillo
name-EUfr: "bouvi\xE8re"
name-EUit: rodeo
name-EUnl: bittervoorn
name-EUru: "\u0433\u043E\u0440\u0447\u0430\u043A"
name-JPja: "\u30BF\u30CA\u30B4"
name-KRko: "\uB0A9\uC904\uAC1C"
name-TWzh: "\u7D05\u76EE\u9BFD"
name-USen: bitterling
name-USes: amarguillo
name-USfr: "bouvi\xE8re"
price: 900
price-cj: 1350
shadow: Smallest (1)
schema:
$ref: '#/components/schemas/inline_response_200'
description: OK
'404':
description: Not Found
summary: Fish
tags:
- Fish
/v1/sea/:
get:
description: Get all sea creatures data
operationId: getV1Sea
responses:
'200':
content:
application/json:
schema:
items:
$ref: '#/components/schemas/inline_response_200_1'
type: array
description: OK
summary: All Sea Creatures
tags:
- Sea Creatures
/v1/sea/{seaID}:
get:
description: Get sea creature data by Id
operationId: getV1SeaSeaid
parameters:
- description: Either the file-name of a sea creature or it's ID.
explode: false
in: path
name: seaID
required: true
schema:
type: string
style: simple
responses:
'200':
content:
application/json:
examples:
/v1/sea/1:
value:
availability:
isAllDay: true
isAllYear: false
month-array-northern:
- 10
- 11
- 12
- 1
- 2
- 3
- 4
- 5
- 6
- 7
month-array-southern:
- 4
- 5
- 6
- 7
- 8
- 9
- 10
- 11
- 12
- 1
month-northern: 10-7
month-southern: 4-1
time: ''
time-array:
- 0
- 1
- 2
- 3
- 4
- 5
- 6
- 7
- 8
- 9
- 10
- 11
- 12
- 13
- 14
- 15
- 16
- 17
- 18
- 19
- 20
- 21
- 22
- 23
catch-phrase: I got some seaweed! I couldn't kelp myself.
file-name: seaweed
icon_uri: https://acnhapi.com/v1/icons/sea/1
id: 1
image_uri: https://acnhapi.com/v1/images/sea/1
museum-phrase: Let it be known that seaweed is a misnomer of the
highest order! That is, it is not a noxious weed so much as
it is a marine algae most beneficial to life on land and sea.
Seaweed, you see, provides essential habitat and food for all
manner of marine creatures. And it creates a great deal of the
oxygen we land lovers love to breath too, hoo! And yet, I cant
help but shudder when the slimy stuff touches my toes during
a swim. Hoot! The horror!
name:
name-CNzh: "\u88D9\u5E26\u83DC"
name-EUde: Wakame-Alge
name-EUen: seaweed
name-EUes: alga wakame
name-EUfr: wakame
name-EUit: alga wakame
name-EUnl: zeewier
name-EUru: "\u043C\u043E\u0440\u0441\u043A\u0438\u0435 \u0432\u043E\u0434\u043E\u0440\u043E\u0441\u043B\u0438"
name-JPja: "\u30EF\u30AB\u30E1"
name-KRko: "\uBBF8\uC5ED"
name-TWzh: "\u88D9\u5E36\u83DC"
name-USen: seaweed
name-USes: alga wakame
name-USfr: "wakam\xE9"
price: 600
shadow: Large
speed: Stationary
schema:
$ref: '#/components/schemas/inline_response_200_1'
description: OK
'404':
description: Not Found
summary: Sea Creatures
tags:
- Sea Creatures
/v1/songs/:
get:
description: Get All K.K. songs data
operationId: getV1Songs
responses:
'200':
content:
application/json:
schema:
items:
$ref: '#/components/schemas/inline_response_200_5'
type: array
description: OK
summary: All Songs
tags:
- Songs
/v1/songs/{songID}:
get:
description: Get K.K. songs data by Id
operationId: getV1SongsSongid
parameters:
- explode: false
in: path
name: songID
required: true
schema:
type: string
style: simple
responses:
'200':
content:
application/json:
examples:
/v1/songs/1:
value:
buy-price: 3200
file-name: mjk_Keiji
id: 1
image_uri: https://acnhapi.com/v1/images/songs/1
isOrderable: true
music_uri: https://acnhapi.com/v1/music/1
name:
name-CNzh: "K.K.\u5211\u8B66"
name-EUde: Agent K.K.
name-EUen: Agent K.K.
name-EUes: Agente Totakeke
name-EUfr: "Agent K\xE9k\xE9"
name-EUit: Agente K.K.
name-EUnl: Agent K.K.
name-EUru: "\u0410\u0433\u0435\u043D\u0442 \u041A. \u041A."
name-JPja: "\u3051\u3051\u3051\u3044\u3058"
name-KRko: "K.K.\uD615\uC0AC"
name-TWzh: "K.K.\u5211\u8B66"
name-USen: Agent K.K.
name-USes: Agente Totakeke
name-USfr: "Agent K\xE9k\xE9"
sell-price: 800
schema:
$ref: '#/components/schemas/inline_response_200_5'
description: OK
'404':
description: Not Found
summary: Songs
tags:
- Songs
/v1/villagers/:
get:
description: Get all villagers data
operationId: getV1Villagers
responses:
'200':
content:
application/json:
schema:
items:
$ref: '#/components/schemas/inline_response_200_4'
type: array
description: OK
summary: All Villagers
tags:
- Villagers
/v1/villagers/{villagerID}:
get:
description: Get villager data by Id
operationId: getV1VillagersVillagerid
parameters:
- description: Either the file-name of a villager or it's ID.
explode: false
in: path
name: villagerID
required: true
schema:
type: string
style: simple
responses:
'200':
content:
application/json:
examples:
/v1/villagers/1:
value:
birthday: 9/3
birthday-string: March 9th
catch-phrase: ah-CHOO
file-name: ant00
gender: Male
icon_uri: https://acnhapi.com/v1/icons/villagers/1
id: 1
image_uri: https://acnhapi.com/v1/images/villagers/1
name:
name-CNzh: "\u9633\u660E"
name-EUde: Theo
name-EUen: Cyrano
name-EUes: Cirano
name-EUfr: Cyrano
name-EUit: Cirano
name-EUnl: Cyrano
name-EUru: "\u0421\u0438\u0440\u0430\u043D\u043E"
name-JPja: "\u3055\u304F\u3089\u3058\u307E"
name-KRko: "\uC0AC\uC9C0\uB9C8"
name-TWzh: "\u967D\u660E"
name-USen: Cyrano
name-USes: Cirano
name-USfr: Cyrano
personality: Cranky
species: Anteater
schema:
$ref: '#/components/schemas/inline_response_200_4'
description: OK
'404':
description: Not Found
summary: Villagers
tags:
- Villagers
components:
schemas:
inline_response_200:
properties:
alt-catch-phrase:
description: Alternate catch phrases, when available.
items:
type: string
type: array
availability:
$ref: '#/components/schemas/inline_response_200_availability'
catch-phrase:
description: Phrase (or often pun) when the fish is caught.
type: string
file-name:
description: Name of the image files.
type: string
icon_uri:
description: URI for icon
type: string
id:
description: Number of the fish.
type: integer
image_uri:
description: URI for image
type: string
museum-phrase:
description: Description from Blathers.
type: string
name:
$ref: '#/components/schemas/inline_response_200_name'
price:
description: Selling price.
type: number
price-cj:
description: Selling price from C.J.
type: number
shadow:
description: Size and/or shape of the shadow.
type: string
required:
- availability
- catch-phrase
- file-name
- icon_uri
- id
- image_uri
- museum-phrase
- name
- price
- price-cj
- shadow
type: object
inline_response_200_1:
properties:
availability:
$ref: '#/components/schemas/inline_response_200_1_availability'
catch-phrase:
description: Catch phrase of the sea creature
type: string
file-name:
description: Name of the image files.
type: string
icon_uri:
description: URI for icon
type: string
id:
description: Number of the sea creature (as found in the critterpedia).
type: integer
image_uri:
description: URI for image
type: string
museum-phrase:
description: Facts from Blathers
type: string
name:
$ref: '#/components/schemas/inline_response_200_1_name'
price:
description: Selling price.
type: number
shadow:
description: Size of the shadow.
type: string
speed:
description: Speed of the sea creature
type: string
required:
- availability
- catch-phrase
- file-name
- icon_uri
- id
- image_uri
- museum-phrase
- name
- price
- shadow
- speed
type: object
inline_response_200_1_availability:
description: When to find the sea creature.
properties:
isAllDay:
description: Is the sea creature available at any hour?
type: boolean
isAllYear:
description: Is the sea creature available at any day?
type: boolean
month-array-northern:
description: Array containing the month when the critter is available in
the Northern Hemisphere.
items:
type: number
type: array
month-array-southern:
description: Array containing the month when the critter is available in
the Southern Hemisphere.
items:
type: number
type: array
month-northern:
description: Month for the Northern hemisphere, empty if isAllYear is true.
type: string
month-southern:
description: Month for the Southern hemisphere, empty if isAllYear is true.
type: string
time:
description: Time of availability, empty is isAllDay is true.
type: string
time-array:
description: Array containing the hours when the critter is available during
the day (24h format).
items:
type: number
type: array
required:
- isAllDay
- isAllYear
- location
- rarity
type: object
inline_response_200_1_name:
description: Name of the sea creature in different languages.
properties:
name-CNzh:
description: Simplified Chinese
type: string
name-EUde:
description: German
type: string
name-EUen:
description: Non US English
type: string
name-EUes:
description: Spanish
type: string
name-EUfr:
description: French
type: string
name-EUit:
description: Italian
type: string
name-EUnl:
description: Dutch
type: string
name-EUru:
description: Russian
type: string
name-JPja:
description: Japanese
type: string
name-KRko:
description: Korean
type: string
name-TWzh:
description: Traditional Chinese
type: string
name-USen:
description: English
type: string
name-USes:
description: Latin American Spanish
type: string
name-USfr:
description: Canadian French
type: string
required:
- name-CNzh
- name-EUde
- name-EUen
- name-EUes
- name-EUfr
- name-EUit
- name-EUnl
- name-EUru
- name-JPja
- name-KRko
- name-TWzh
- name-USen
- name-USes
- name-USfr
type: object
inline_response_200_2:
properties:
alt-catch-phrase:
description: Alternate catch phrases, when available.
items:
type: string
type: array
availability:
$ref: '#/components/schemas/inline_response_200_2_availability'
catch-phrase:
description: Phrase (or often pun) when the bug is caught.
type: string
file-name:
type: string
icon_uri:
description: URI for icon
type: string
id:
type: number
image_uri:
description: URI for image
type: string
museum-phrase:
description: Description from Blathers.
type: string
name:
$ref: '#/components/schemas/inline_response_200_2_name'
price:
description: Selling price.
type: string
price-flick:
description: Selling price from Flick.
type: string
required:
- availability
- catch-phrase
- file-name
- icon_uri
- id
- image_uri
- museum-phrase
- name
- price
- price-flick
type: object
inline_response_200_2_availability:
description: When and where to find the bug.
properties:
isAllDay:
description: Is the bug available at any hour?
type: boolean
isAllYear:
description: Is the bug available at any day?
type: boolean
location:
description: Location of the bug.
type: string
month-array-northern:
description: Array containing the month when the critter is available in
the Northern Hemisphere.
items:
type: number
type: array
month-array-southern:
description: Array containing the month when the critter is available in
the Southern Hemisphere.
items:
type: number
type: array
month-northern:
description: Month for the Northern hemisphere, empty if isAllYear is true.
type: string
month-southern:
description: Month for the Southern hemisphere, empty if isAllYear is true.
type: string
rarity:
description: Rarity of the bug.
type: string
time:
description: Time of availability, empty is isAllDay is true.
type: string
time-array:
description: Array containing the hours when the critter is available during
the day (24h format).
items:
type: number
type: array
required:
- isAllDay
- isAllYear
- location
- rarity
type: object
inline_response_200_2_name:
description: Name of the bug in different languages.
properties:
name-CNzh:
description: Simplified Chinese
type: string
name-EUde:
description: German
type: string
name-EUen:
description: Non US English
type: string
name-EUes:
description: Spanish
type: string
name-EUfr:
description: French
type: string
name-EUit:
description: Italian
type: string
name-EUnl:
description: Dutch
type: string
name-EUru:
description: Russian
type: string
name-JPja:
description: Japanese
type: string
name-KRko:
description: Korean
type: string
name-TWzh:
description: Traditional Chinese
type: string
name-USen:
description: English
type: string
name-USes:
description: Latin American Spanish
type: string
name-USfr:
description: Canadian French
type: string
required:
- name-CNzh
- name-EUde
- name-EUen
- name-EUes
- name-EUfr
- name-EUit
- name-EUnl
- name-EUru
- name-JPja
- name-KRko
- name-TWzh
- name-USen
- name-USes
- name-USfr
type: object
inline_response_200_3:
properties:
file-name:
description: Name of the image files.
type: string
image_uri:
description: URI for icon
type: string
museum-phrase:
description: Description from Blathers.
type: string
name:
$ref: '#/components/schemas/inline_response_200_3_name'
price:
description: Selling price.
type: number
required:
- file-name
- image_uri
- museum-phrase
- name
- price
type: object
inline_response_200_3_name:
description: Name of the fossil in different languages.
properties:
name-CNzh:
description: Simplified Chinese
type: string
name-EUde:
description: German
type: string
name-EUen:
description: Non American English
type: string
name-EUes:
description: Spanish
type: string
name-EUfr:
description: French
type: string
name-EUit:
description: Italian
type: string
name-EUnl:
description: Dutch
type: string
name-EUru:
description: Russian
type: string
name-JPja:
description: Japanese
type: string
name-KRko:
description: Korean
type: string
name-TWzh: