LogoLogo
  • Internet Object 1.0
  • Internet Object
    • Abstract
    • The Poetic Principles of Internet Object
    • Objectives
    • Introducing Internet Object
  • The Structure
    • Internet Object Document
      • Header
      • Data Sections
    • Structural Elements
      • Structural Characters and Literals
      • Literals
      • Other Special Characters
      • Whitespaces
    • Values Representations
      • Objects
      • Arrays
      • Strings
        • Open Strings
        • Regular Strings
        • Raw Strings
      • Numeric Values
        • Number
        • BigInt
        • Decimal
        • Special Numeric Integer Formats
          • Hexadecimal
          • Octal
          • Binary
        • NaN and Infinity
      • Binary
      • Date and Time
      • Booleans
      • Nulls
    • Comments
    • Encoding
  • The Collections
    • Collection
    • Creating Collection
    • Collection Rules
    • Data Streaming
  • The Definitions
    • Definitions
    • Variables
    • Complex Schema
  • Schema Definition Language
    • Internet Object Schema
    • The structure
    • Data Types
      • Any
      • String
        • String Derived Types
          • Email
          • URL
          • Date
          • Time
          • DateTime
      • Number
        • Derived Types
          • int
          • byte
          • int16
          • int32
      • Object
      • Array
      • Bool
    • Dynamic Schema
    • Is Object, a MemberDef or a Schema?
  • Other
    • Best Practices
    • FAQs
    • Contributors
    • License
Powered by GitBook
On this page
  • Why do we need another data-interchange format?
  • Does Internet Object support binary data?
  • Can the Internet Object parser parse the JSON object?
  • Can the Internet Object Schema validate JSON objects?
  • When compared with JSON, is Internet Object smaller?
  • When compared with JSON, is Internet Object document building and parsing is faster?
  • I would like to contribute. How do I do that?

Was this helpful?

Edit on GitHub
Export as PDF
  1. Other

FAQs

Frequently Asked Questions about Internet Object (In no particular order). These are the questions that have been frequently asked after the concept was previewed to the community.

PreviousBest PracticesNextContributors

Last updated 3 years ago

Was this helpful?

Why do we need another data-interchange format?

As the Greek philosopher, Heraclitus, said: “change is the only constant.”. Internet Object was created to address some of the issues found in JSON which happens to be the most prominent data serialization format today. For more information, .

Does Internet Object support binary data?

One of the primary objectives of the Internet Object is to be solely a text-based human-readable serialization format. Hence, the current version of Intenet Object natively does not support direct binary data. Binary data may be escaped using the algorithms like Base64 so that it can be passed as a string value.

Can the Internet Object parser parse the JSON object?

JSON support was not one of the objectives of creating the Internet Object. However, the final format turned out to be JSON compatible. So yes, Internet Object understands the JSON format.

Can the Internet Object Schema validate JSON objects?

Yes, Internet Object schema can validate an Internet Object document as well as a JSON object.

When compared with JSON, is Internet Object smaller?

The uncompressed (non-gzipped) IO document is generally 40% smaller. When compared with gzipped versions of JSON and IO documents, we saw unpredicatable results. Sometimes IO document was smaller than JSON, sometimes it was around the same size. On a few occasions, the JSON document was a bit smaller than the IO version.

When compared with JSON, is Internet Object document building and parsing is faster?

Internet Object is a very simple format. It is very easy to build the document just by concatenating the strings! In such cases, it is very fast to build the document. However, in reality, the performance of the parsing depends upon the parser and other factors. A well-written parser will be faster than poorly written parsers.

I would like to contribute. How do I do that?

Great, that you would like to support Internet Object. You can contribute in many ways.

Some of them are...

  1. Join the team that is developing an Internet Object library in your favorite language.

  2. Write a blog or article about the Internet Object

  3. Help friends and colleagues get started with the concept

  4. Help us develop various technical documentations

  5. Be a proofreader and help us correct the specification and document language

  6. Translate the documentation in various languages

  7. Spread the word about Internet Object

please read the story