> For clean Markdown of any page, append .md to the page URL.
> For a complete documentation index, see https://docs.revvue.ai/llms.txt.
> For AI client integration (Claude Code, Cursor, etc.), connect to the MCP server at https://docs.revvue.ai/_mcp/server.

# SurveyFieldInput

GraphQL input

Reference: https://docs.revvue.ai/api-reference/surveys/types/inputs/survey-field-input

## Fields

- `id` — Id.
- `name` — Field name.
- `description` — Field description.
- `page` — Page number.
- `type` — Survey value type.
- `label` — Label.
- `dateValue` — Date value.
- `boolValue` — Field value.
- `stringValue` — String value
- `stringValues` — String value
- `stringOptions` — Options for string value.
- `numberValue` — Number value
- `numberValues` — Number value
- `numberOptions` — Options for number value.
- `group` — Description.
- `completed` — Field completed.
- `mandatory` — Field mandatory.
- `showRemark` — Show remark.
- `remark` — Remark.
- `otherLabel` — Other label.
- `otherValue` — Other value.
- `tags` — Tags.
- `showMedia` — Show media.
- `allowFutureDate` — Allow selecting future dates for a date field.
- `categorizationTags` — Categorization tags

## Definition

```graphql
input SurveyFieldInput {
  id: UUID
  name: String
  description: String
  page: Int
  type: SurveyValueType
  label: String
  dateValue: DateTime
  boolValue: Boolean
  stringValue: String
  stringValues: [String]
  stringOptions: [String]
  numberValue: Float
  numberValues: [Float]
  numberOptions: [Float]
  group: String
  completed: Boolean
  mandatory: Boolean
  showRemark: Boolean
  remark: String
  otherLabel: String
  otherValue: String
  tags: [SurveyFieldTagInput]
  showMedia: Boolean
  allowFutureDate: Boolean
  categorizationTags: [CategorizationTagsInput]
}
```