Last active
September 29, 2016 12:13
-
-
Save nanasess/ee253434ef6a669095480342164bcff3 to your computer and use it in GitHub Desktop.
EC-CUBE API の JSON フォーマット例
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"product": { | |
"id": "...snip", | |
"id": 1, | |
"name": "ディナーフォーク", | |
"description_list": null, | |
"ProductCategories": "...snip", | |
"ProductCategories": "プロパティがコレクションの場合は, キー情報のみの配列を返す", | |
"ProductCategories": [ | |
{ | |
"product_id": 1, | |
"category_id": 5 | |
}, | |
{ | |
"product_id": 1, | |
"category_id": 6 | |
} | |
], | |
"Creator": "...snip", | |
"Creator": "プロパティがオブジェクトの場合は, キー情報のみのオブジェクトを返す", | |
"Creator": { | |
"id": 1 | |
}, | |
"Status": { | |
"id": 1 | |
}, | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment