Advertisement
Guest User

Untitled

a guest
Oct 22nd, 2018
162
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
JSON 4.15 KB | None | 0 0
  1. {
  2.     "Relations": [
  3.         {
  4.             "Id": "R1",
  5.             "From": "P2",
  6.             "To": "P3"
  7.         },
  8.         {
  9.             "Id": "R2",
  10.             "From": "P1",
  11.             "To": "P4"
  12.         },
  13.         {
  14.             "Id": "R3",
  15.             "From": "P1",
  16.             "To": "P5"
  17.         },
  18.         {
  19.             "Id": "R4",
  20.             "From": "P1",
  21.             "To": "P6"
  22.         },
  23.         {
  24.             "Id": "R5",
  25.             "From": "P7",
  26.             "To": "P8"
  27.         },
  28.         {
  29.             "Id": "R6",
  30.             "From": "P11",
  31.             "To": "P12"
  32.         }
  33.     ],
  34.     "Persons": [
  35.         {
  36.             "Id": "P1",
  37.             "Name": "Иванов Петр Николаевич",
  38.             "IsMale": true,
  39.             "Birth": "1970.01.01",
  40.             "Death": null,
  41.             "Photo": "pic1",
  42.             "Url": "#url1",
  43.             "Parents": "R1"
  44.         },
  45.         {
  46.             "Id": "P2",
  47.             "Name": "Иванов Николай Алексеевич",
  48.             "IsMale": true,
  49.             "Birth": "1950.01.02",
  50.             "Death": null,
  51.             "Photo": "pic2",
  52.             "Url": "#url2",
  53.             "Parents": null
  54.         },
  55.         {
  56.             "Id": "P3",
  57.             "Name": "Петрова Анна Евгеньевна",
  58.             "IsMale": false,
  59.             "Birth": "1951.01.03",
  60.             "Death": null,
  61.             "Photo": "pic3",
  62.             "Url": "#url3",
  63.             "Parents": null
  64.         },
  65.         {
  66.             "Id": "P4",
  67.             "Name": "Михайлова Елена",
  68.             "IsMale": false,
  69.             "Birth": "1972.01.04",
  70.             "Photo": "pic4",
  71.             "Url": "#url4",
  72.             "Parents": null
  73.         },
  74.         {
  75.             "Id": "P5",
  76.             "Name": "Николаева Дарья",
  77.             "IsMale": false,
  78.             "Birth": "1973.01.05",
  79.             "Photo": "pic5",
  80.             "Url": "#url5",
  81.             "Parents": null
  82.         },
  83.         {
  84.             "Id": "P6",
  85.             "Name": "Сергеева Наталья Дмитриевна",
  86.             "IsMale": false,
  87.             "Birth": "1974.01.06",
  88.             "Photo": "pic6",
  89.             "Url": "#url6",
  90.             "Parents": "R5"
  91.         },
  92.         {
  93.             "Id": "P7",
  94.             "Name": "Сергеев Дмитрий",
  95.             "IsMale": true,
  96.             "Birth": "1947.01.07",
  97.             "Photo": null,
  98.             "Url": null,
  99.             "Parents": null
  100.         },
  101.         {
  102.             "Id": "P8",
  103.             "Name": "Константинова Людмила",
  104.             "IsMale": false,
  105.             "Birth": "1949.01.08",
  106.             "Death": "1987.01.01",
  107.             "Photo": "pic8",
  108.             "Url": "#url8",
  109.             "Parents": null
  110.         },
  111.         {
  112.             "Id": "P9",
  113.             "Name": "Иванов Илья Петрович",
  114.             "IsMale": true,
  115.             "Birth": "1990.01.09",
  116.             "Photo": "pic9",
  117.             "Url": "#url9",
  118.             "Parents": "R2"
  119.         },
  120.         {
  121.             "Id": "P10",
  122.             "Name": "Иванова Светлана Петровна",
  123.             "IsMale": false,
  124.             "Birth": "1993.01.10",
  125.             "Photo": "pic10",
  126.             "Url": "#url10",
  127.             "Parents": "R3"
  128.         },
  129.         {
  130.             "Id": "P11",
  131.             "Name": "Иванова Юлия Петровна",
  132.             "IsMale": false,
  133.             "Birth": "1995.01.11",
  134.             "Photo": "pic11",
  135.             "Url": "#url11",
  136.             "Parents": "R4"
  137.         },
  138.         {
  139.             "Id": "P12",
  140.             "Name": "Кузнецов Вадим Михайлович",
  141.             "IsMale": true,
  142.             "Birth": "1992.01.12",
  143.             "Photo": null,
  144.             "Url": "#url12",
  145.             "Parents": null
  146.         },
  147.         {
  148.             "Id": "P13",
  149.             "Name": "Кузнецов Олег Вадимович",
  150.             "IsMale": true,
  151.             "Birth": "2013.01.12",
  152.             "Photo": "pic13",
  153.             "Url": "#url13",
  154.             "Parents": "R6"
  155.         }
  156.     ]
  157. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement