twitst4tz

twitter statistics web application
Log | Files | Refs | README | LICENSE

timings.json (647B)


      1 {
      2   "$id": "timings.json#",
      3   "$schema": "http://json-schema.org/draft-06/schema#",
      4   "required": [
      5     "send",
      6     "wait",
      7     "receive"
      8   ],
      9   "properties": {
     10     "dns": {
     11       "type": "number",
     12       "min": -1
     13     },
     14     "connect": {
     15       "type": "number",
     16       "min": -1
     17     },
     18     "blocked": {
     19       "type": "number",
     20       "min": -1
     21     },
     22     "send": {
     23       "type": "number",
     24       "min": -1
     25     },
     26     "wait": {
     27       "type": "number",
     28       "min": -1
     29     },
     30     "receive": {
     31       "type": "number",
     32       "min": -1
     33     },
     34     "ssl": {
     35       "type": "number",
     36       "min": -1
     37     },
     38     "comment": {
     39       "type": "string"
     40     }
     41   }
     42 }