Welcome to mirror list, hosted at ThFree Co, Russian Federation.

zbx_jsonpath_query.inc.yaml « zbxjson « libs « tests - github.com/zabbix/zabbix.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 456f49ebe289afc7264f619fda0ad43dd6ed03e5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
---
|
  {
    "books": [
      {
        "category": "reference",
        "author": "Nigel Rees",
        "title": "Sayings of the Century",
        "price": 8.95,
        "id": 1
      },
      {
        "category": "fiction",
        "author": "Evelyn Waugh",
        "title": "Sword of Honour",
        "price": 12.99,
        "id": 2
      },
      {
        "category": "fiction",
        "author": "Herman Melville",
        "title": "Moby Dick",
        "isbn": "0-553-21311-3",
        "price": 8.99,
        "id": 3
      },
      {
        "category": "fiction",
        "author": "J. R. R. Tolkien",
        "title": "The Lord of the Rings",
        "isbn": "0-395-19395-8",
        "price": 22.99,
        "id": 4
      }
    ],
    "services": {
      "delivery": {
        "servicegroup": 1000,
        "description": "Next day delivery in local town",
        "active": true,
        "price": 5
      },
      "bookbinding": {
        "servicegroup": 1001,
        "description": "Printing and assembling book in A5 format",
        "active": true,
        "price": 154.99
      },
      "restoration": {
        "servicegroup": 1002,
        "description": "Various restoration methods",
        "active": false,
        "methods": [
          {
            "description": "Checmical cleaning",
            "price": 46
          },
          {
            "description": "Pressing pages damaged by moisture",
            "price": 24.5
          },
          {
            "description": "Rebinding torn book",
            "price": 99.49
          }
        ]
      }
    },
    "filters": {
      "price": 10,
      "category": "fiction",
      "no filters": "no \"filters\""
    },
    "closed message": "Store is closed",
    "tags": ["a", "b", "c", "d", "e" ]
  }
...