Properties
| Name | Type | Description |
|---|---|---|
| FieldValueId | integer | Specification field value ID. |
| Value | string | Specification field value. |
| IsActive | boolean | Defines if the specification field is active (`true`) or inactive (`false`). |
| Position | integer | Specification field value position. |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/GetSpecFieldValue",
"title": "GetSpecFieldValue",
"required": [
"FieldValueId",
"Value",
"IsActive",
"Position"
],
"type": "object",
"properties": {
"FieldValueId": {
"type": "integer",
"format": "int32",
"description": "Specification field value ID."
},
"Value": {
"type": "string",
"description": "Specification field value."
},
"IsActive": {
"type": "boolean",
"description": "Defines if the specification field is active (`true`) or inactive (`false`)."
},
"Position": {
"type": "integer",
"format": "int32",
"description": "Specification field value position."
}
},
"example": {
"FieldValueId": 52,
"Value": "0 a 6 meses",
"IsActive": true,
"Position": 1
}
}