Re: [web-nfc] URL objects

Since JSON, text and URL could be mapped to MIME types 
(```application/json```, ```text/plain```, and ```text/url``` indeed 
we could go with
```webidl
interface NFCData {
    readonly attribute DOMString mimeType;
    ArrayBuffer arrayBuffer();
    JSON json();  // same as 'Object json();'
    USVString url();
    DOMString text();
}
```


-- 
GitHub Notif of comment by zolkis
See https://github.com/w3c/web-nfc/issues/26#issuecomment-129873195

Received on Tuesday, 11 August 2015 13:28:42 UTC