Versions Compared

Key

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

...

Developing the APIs

Developing Common Code

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

Wiki Markup
{"Foo": "value"}


Wiki Markup
{"FooBar":"value1"}

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

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

Developing Utility Code

Testing

...