Skip to content

Instantly share code, notes, and snippets.

@freizl
Created December 9, 2015 06:56
Show Gist options
  • Save freizl/5b737ccd2acf701e56ab to your computer and use it in GitHub Desktop.
Save freizl/5b737ccd2acf701e56ab to your computer and use it in GitHub Desktop.
Flexible schema

API URI

  • /api/v1/user/{uid}

Response

{
    // base schema
    "firstName": "Kevin",
    "lastName": "Smith",
    "login": "ks@test.com",
    "email": "ks@test.com",
    "created": "2015-11-01",
    "updated": "2015-11-12",

    // flexible schema. key and value are all created by application user.
    // e.g.
    "foo": "bar",
    "t": "x",
    ......

}


Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment