Questions tagged [json]

JavaScript Object Notation (JSON) is an open, human and machine-readable standard that facilitates data interchange, and along with XML is the main format for data interchange used on the modern web.

JavaScript Object Notation (JSON) is an open, human and machine-readable standard that facilitates data interchange, and along with XML is the main format for data interchange used on the modern web. JSON supports all the basic data types you’d expect: numbers, strings, and boolean values, as well as arrays and hashes.

References

JSON

667 questions
1
vote
0 answers

JSON format for time-logging

Hi I'm creating a very simple application that logs activities. Right now I'm thinking I would just do {"Activity":[ {"ActivityType":"Sleep"}, {"time_begin": someunixtime, "time_end":someotherunixtime},]} and from there I could retrieve and…