Skip to content

Instantly share code, notes, and snippets.

@dftpnd
Created August 10, 2018 07:50
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save dftpnd/25d1536cd31e86968cbe44a5344a2b2f to your computer and use it in GitHub Desktop.
Save dftpnd/25d1536cd31e86968cbe44a5344a2b2f to your computer and use it in GitHub Desktop.
[
{
"date": "Date",
"contr": "Кудрявцева А",
"value": "1002"
},
{
"date": "Date",
"contr": "Гараж",
"value": "777"
}
]
@altafard
Copy link

altafard commented Aug 10, 2018

[
  {
    "date": Date | NULL,
    "isOverdue": bool,
    "days": int | NULL,
    "contractors":
    [
      {
        "name": string,
        "debt": decimal
      }
    ]
  },
  {
    "date": "2018-08-10T00:00:00.000",
    "isOverdue": false,
    "days": null,
    "contractors":
    [
      {
        "name": "ГАРАЖ",
        "debt": 100.50
      }
    ]
  },
  {
    "date": null,
    "isOverdue": true,
    "days": 2,
    "contractors":
    [
      {
        "name": "ЧАСТНОЕ ЛИЦО",
        "debt": 1000
      }
    ]
  }
]

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