summaryrefslogtreecommitdiffstats
path: root/examples/examples-grpc/src/main/resources/schemas/CDSResponseCommonHeaderType.json
blob: 08bc87c93618e6e52bf95d46ec96fd4c57077709 (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
{
  "$schema": "http://json-schema.org/draft-04/schema#",
  "type": "object",
  "properties": {
    "timestamp": {
      "type": "string"
    },
    "requestId": {
      "type": "string"
    },
    "subRequestId": {
      "type": "string"
    },
    "flag": {
      "type": "object"
    },
    "originatorId": {
      "type": "string"
    }
  },
  "required": [
    "timestamp",
    "requestId",
    "subRequestId",
    "flag",
    "originatorId"
  ]
}