@@ -84,33 +84,33 @@ This `data` field is composed of the product information you want to extract. Th
84
84
In a nutshell:
85
85
86
86
<!-- todo find the right language for comments highlight -->
87
- ``` code
87
+ ``` php
88
88
89
89
{
90
- "values": { # Contains all the product values, stored in associative arrays
91
- "an_attribute_code": [ # Key
92
- { # AttributeValue object
93
- "data": {...}, # the data you want to extract...
90
+ "values": { # Contains all the product values, stored in associative arrays
91
+ "an_attribute_code": [ # Key
92
+ { # AttributeValue object
93
+ "data": {...}, # the data you want to extract...
94
94
"locale": "a_locale", # ... for a given locale...
95
95
"scope": "a_channel" # ... and a channel.
96
96
},
97
97
{ # AttributeValue object
98
- "data": {...}, # the data you want to extract...
98
+ "data": {...}, # the data you want to extract...
99
99
"locale": "another_locale", # ... for a given locale...
100
100
"scope": "another_channel", # ... and a channel.
101
101
"linked_data": {
102
- "attribute": "attribute_code",
103
- "code": "an_option_code",
104
- "labels": {
102
+ "attribute": "attribute_code",
103
+ "code": "an_option_code",
104
+ "labels": {
105
105
"en_US": "option_code_label_for_locale_en_us",
106
- "fr_FR": "option_code_label_for_locale_fr_fr"
106
+ "fr_FR": "option_code_label_for_locale_fr_fr"
107
+ }
107
108
}
108
- }
109
109
},
110
- ...
110
+ ...
111
111
],
112
- "another_attribute_code": [...],
113
- ...
112
+ "another_attribute_code": [...],
113
+ ...
114
114
}
115
115
}
116
116
```
0 commit comments