I'm trying to understand fields inside this sub-resource fields characteristicValueSpecification. If for example I want to define a product spec characteristic of type Integer. And now I'm setting up the IntegerCharacteristicValueSpecification
"characteristicValueSpecification": [
{
"isDefault": true,
"valueType": "number",
"validFor": {
"startDateTime": "2020-09-23T00:00:00Z",
"endDateTime": "2022-11-24T00:00:00Z"
},
"rangeInterval":"closed",
"value": 1, --> should be removed?
"valueFrom": 1,
"valueTo": 10,
"@type": "NumberCharacteristicValueSpecification"
}
]
Question : If I want to set the range of the value to be 1-10 then does that mean I don't have to fill-up the field "value":1 , or do I have to create 10 characteristic values with values=1-10 like below:
"characteristicValueSpecification": [
{
"isDefault": false,
"valueType": "number",
"validFor": {
"startDateTime": "2020-09-23T00:00:00Z",
"endDateTime": "2022-11-24T00:00:00Z"
},
"value": 1,
"@type": "NumberCharacteristicValueSpecification"
},
.....
{
"isDefault": false,
"valueType": "number",
"validFor": {
"startDateTime": "2020-09-23T00:00:00Z",
"endDateTime": "2022-11-24T00:00:00Z"
},
"value": 10,
"@type": "NumberCharacteristicValueSpecification"
}
]
If I have Range 1-10 what does the range Interval type means, please confirm if correct understanding
Open - valid values are 2-9
Closed - valid values are 1-10
ClosedBottom - any number <10
ClosedTop - any number >1
------------------------------
Mary Gene Tecson
Globe Telecom Inc.
------------------------------