aboutsummaryrefslogtreecommitdiffstats
path: root/plugins/plugins-context/plugins-context-schema/plugins-context-schema-json/src/test/resources/schema/commonHeaderType_draft04.json
blob: de1c05b6f0fde01fa872a00a180d2b7fa3df8056 (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
{
  "$schema": "http://json-schema.org/draft-04/schema#",
  "type": "object",
  "properties": {
    "requestId": {
      "type": "string"
    },
    "subRequestId": {
      "type": "string"
    },
    "originatorId": {
      "type": "string"
    },
    "testId": {
      "type": "number"
    }
  },
  "required": [
    "requestId",
    "subRequestId",
    "originatorId",
    "testId"
  ]
}