{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/SpecificationsInsertFieldValueRequest", "title": "SpecificationsInsertFieldValueRequest", "required": [ "FieldId", "Name", "Text", "IsActive", "Position" ], "type": "object", "properties": { "FieldId": { "type": "integer", "format": "int32", "description": "Specification field ID." }, "Name": { "type": "string", "description": "Specification field value name." }, "Text": { "type": "string", "description": "Specification field value description." }, "IsActive": { "type": "boolean", "description": "Defines if the specification field value is active (`true`) or inactive (`false`)." }, "Position": { "type": "integer", "format": "int32", "description": "Specification field value position." } }, "example": { "FieldValueId": 143, "FieldId": 34, "Name": "Cotton", "Text": "Cotton fibers", "IsActive": true, "Position": 100 } }