Properties
| Name | Type | Description |
|---|---|---|
| code | string | Feature code |
| name | string | Feature name |
| comparable | boolean | Whether this feature supports comparison |
| featureUnit | object | |
| featureValues | array |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/Feature",
"title": "Feature",
"type": "object",
"properties": {
"code": {
"type": "string",
"description": "Feature code"
},
"name": {
"type": "string",
"description": "Feature name"
},
"comparable": {
"type": "boolean",
"description": "Whether this feature supports comparison"
},
"featureUnit": {
"type": "object",
"properties": {
"symbol": {
"type": "string"
},
"name": {
"type": "string"
}
}
},
"featureValues": {
"type": "array",
"items": {
"type": "object",
"properties": {
"value": {
"type": "string"
}
}
}
}
}
}