Skip to main content

CreateEventScopedCustomFieldDefinitionInput

Defines the input details for creating a custom field definition for an event.

input CreateEventScopedCustomFieldDefinitionInput {
area: EventScopedCustomFieldArea!
containsPersonalData: Boolean
customFieldTabId: ID
eventId: ID!
isMandatory: Boolean
name: String!
sortOrder: NonNegativeInt
tags: [CreateCustomFieldDefinitionTagInput!]
type: CustomFieldType!
uniqueCode: String
}

Fields

CreateEventScopedCustomFieldDefinitionInput.area ● EventScopedCustomFieldArea! non-null enum

The area in an event the custom field definition applies to.

CreateEventScopedCustomFieldDefinitionInput.containsPersonalData ● Boolean scalar

A flag indicating whether the custom field includes sensitive personal data. Optional.

The default value is false.

CreateEventScopedCustomFieldDefinitionInput.customFieldTabId ● ID scalar

The identifier of the custom field tab to associate the custom field definition with. Optional.

CreateEventScopedCustomFieldDefinitionInput.eventId ● ID! non-null scalar

The identifier of the event the custom field definition is associated with.

CreateEventScopedCustomFieldDefinitionInput.isMandatory ● Boolean scalar

A flag indicating whether the custom field requires a value to be completed. Optional.

The default value is false.

CreateEventScopedCustomFieldDefinitionInput.name ● String! non-null scalar

A UTF-8 string representing the name of the custom field definition.

CreateEventScopedCustomFieldDefinitionInput.sortOrder ● NonNegativeInt scalar

Defines the order that the custom field definition is sorted by in lists. Optional.

The default value is 0.

CreateEventScopedCustomFieldDefinitionInput.tags ● [CreateCustomFieldDefinitionTagInput!] list input

Tag values for TAG type custom field definitions. Optional.

CreateEventScopedCustomFieldDefinitionInput.type ● CustomFieldType! non-null enum

The type of data collected in this custom field definition.

CreateEventScopedCustomFieldDefinitionInput.uniqueCode ● String scalar

A customer supplied, UTF-8 string value that represents a unique code for the custom field definition. Optional.

The value must be unique across all custom field definitions for an event.

Member Of

createEventScopedCustomFieldDefinition mutation