Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Standard object notation is JSON. Keys/Attributes will be named using PascalCase example:

Wiki Markup
{"Foo": "value"}

...

  {'Foo': 'val'},{'FooBar': 'val2'}

Objects will have singular names

...

. Lists of objects will be names as plural form of singular object.

...

  ex: {"Foos" : [{"Foo":"val3"},{"Foo":"val4"}]

Developing Utility Code

Testing

...