aboutsummaryrefslogtreecommitdiffstats
path: root/plugins/plugins-context/plugins-context-schema/plugins-context-schema-json/src/test/resources/schema/commonHeaderTypeWithOptional.json
blob: d8d994fda4d82e0e156f45798d09799ee97cc169 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
{
  "$schema": "http://json-schema.org/draft-04/schema#",
  "type": "object",
  "properties": {
    "requestId": {
      "type": "string"
    },
    "subRequestId": {
      "type": "string"
    },
    "originatorId": {
      "type": "string"
    },
    "testId": {
      "type": "integer"
    }
  },
  "required": [
    "requestId",
    "subRequestId",
    "originatorId"
  ]
}