Skip to main content

ValuesetCreateInput

No description

input ValuesetCreateInput {
name: String!
descriptions: [LocalizedStringInput!]
type: ValuesetType!
}

Fields

ValuesetCreateInput.name ● String! non-null scalar

Unique identifier name for the new value set that will be used throughout the system for referencing and configuration purposes.

Must be unique across all value sets and follow naming conventions for system identifiers.

ValuesetCreateInput.descriptions ● [LocalizedStringInput!] list input

Human-readable descriptions explaining the purpose and usage of this value set in multiple languages.

Provides context for administrators and developers about what this value set represents and how it should be used throughout the system.

ValuesetCreateInput.type ● ValuesetType! non-null enum

Classification determining the management scope and modification permissions for this value set.

SYSTEM types are reserved for core system functionality and can only be created by automated processes. CUSTOM types can be created and modified by authorized users for business-specific needs.

Member Of

valuesetCreate mutation