What is RFC 6350?
RFC 6350 defines the vCard 4.0 format: a standard, text-based way to exchange contact information. Ozama uses the standard format so a card exported here can be opened by address books, email clients, and phones without vendor lock-in.
Every card begins with BEGIN:VCARD, declares VERSION:4.0, and ends with END:VCARD. One property belongs on each line.
Required fields
RFC 6350 requires these two properties in every vCard. Ozama marks them with an asterisk in the editor.
Common properties
Add only the details that are useful for the person receiving the card.
- EMAIL — an email address, optionally labeled with a type such as work or home.
- TEL — a telephone number. Use the type to describe how it should be used.
- URL — a personal or professional website.
- ORG and TITLE — workplace and role information.
- NOTE — a short piece of context or a reminder.
A minimal valid example
This is the structure generated by the Studio for a contact with a name, email, and phone number.
BEGIN:VCARD VERSION:4.0 FN:Maya Chen N:Chen;Maya;;; EMAIL;TYPE=work:[email protected] TEL;TYPE=cell:+1 415 555 0184 END:VCARD
How Ozama validates
Before export, the Studio checks the card envelope, confirms required fields are present, and formats each property for vCard 4.0. Special characters such as commas, semicolons, and line breaks are escaped when needed.