• Skip to main content
  • Select language
  • Skip to search
MDN Web Docs
  • Technologies
    • HTML
    • CSS
    • JavaScript
    • Graphics
    • HTTP
    • APIs / DOM
    • WebExtensions
    • MathML
  • References & Guides
    • Learn web development
    • Tutorials
    • References
    • Developer Guides
    • Accessibility
    • Game development
    • ...more docs
B2G OS
  1. MDN
  2. Archive of obsolete content
  3. B2G OS
  4. B2G OS APIs
  5. MozNDEFRecord

MozNDEFRecord

In This Article
  1. Syntax
  2. Properties
  3. Specifications
  4. Browser compatibility
  5. See also

This API is available on Firefox OS for privileged or certified applications only.

MozNDEFRecord is a data structure that implements the NFC Data Exchange Format (NDEF). It is a standard common format for NFC-related data communication between applications, NFC tags, and devices.

Syntax

MozNDEFRecord(optional MozNDEFRecordOptions options);
dictionary MozNDEFRecordOptions {
  TNF tnf = "empty";
  Uint8Array type;
  Uint8Array id;
  Uint8Array payload;
};

Properties

MozNDEFRecord.tnf Read only
tnf contains the Type Name Format (3-bit field) of the record. This field is required.
MozNDEFRecord.type Read only
type is an optional field describing the content of the payload. This is usually a mime type.
MozNDEFRecord.id Read only
id is an optional field representing a Uint8Array. The meaning of this field is application dependent (an appropriate id can be used, depending on functionality.)
MozNDEFRecord.payload Read only
payload is an optional field representing a Uint8Array. The meaning of this field is application dependent (for example, a contact application could contain URLs, mime-types, postal address, etc.)

Specifications

The NFC implementation in Gecko follows the NFC Forum specifications.

Browser compatibility

  • Desktop
  • Mobile
Feature Chrome Firefox (Gecko) Internet Explorer Opera Safari (WebKit)
Basic support

No support

No support No support No support No support
Feature Android Firefox Mobile (Gecko) Firefox OS (Gecko) IE Phone Opera Mobile Safari Mobile
Basic support No support No support 2.0 moz [1] No support No support No support

[1] Available in privileged apps as of Firefox OS 2.2; certified-only before that.

See also

  • Using the NFC API
  • Using the NFC emulator
  • NFC Forum Data Exchange Format Technical Specification
  • Draft W3C NDEF-related formats

Document Tags and Contributors

Tags: 
  • API
  • Firefox OS
  • Interface
  • MozNDEFRecord
  • NDEFRecord
  • NFC
  • Reference
 Contributors to this page: chrisdavidmills, fscholz, teoli, kscarfone, allstars.chh, lgarner
 Last updated by: chrisdavidmills, Feb 27, 2017, 2:09:07 AM
See also
  1. NFC API
  2. Archive
  3. Related pages for NFC API
    1. MozNDEFRecord
    2. MozNFC
    3. MozNFCPeer
    4. MozNFCTag