For images, it's "image data", for text, it's "text data", and for numbers, it's "numerical data".
It is important in programming studies, but in ComfyUI, since "things only connect where they can connect", you honestly don't need to think about it that deeply.
Therefore, it is rare to get an error because you connected the wrong data type, but it is not zero, so let's lightly understand the concept of this "type".
Basic Data Types
If you study the mechanism of image generation AI, you will naturally understand it.
MODEL
CLIP (Conditioning)
VAE (Latent Space)
CONDITIONING
LATENT (Latent Space)
IMAGE
MASK
Primitive (Basic) Data Types
These are numbers and characters themselves.
INT (Integer)
Integers such as 1, 20, 1024.
FLOAT (Floating Point Number)
Decimals such as 1.5, 0.75.
STRING (Text)
Character strings. Prompt input fields fall into this category.
Custom Defined Types
Since ComfyUI is highly extensible, custom nodes may add their own "types".
For example, in the famous Impact Pack, a unique type called SEGS appears.
This is a collection of several data, but even so, these also only connect where they can connect.
If you get lost, just try pulling the wire. If it connects, it's good!
Preview as Text Node
This is a node for previewing arbitrary data as text.