-
Notifications
You must be signed in to change notification settings - Fork 5.1k
/
EventHub.json
56 lines (56 loc) · 1.75 KB
/
EventHub.json
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
{
"swagger": "2.0",
"info": {
"version": "2018-01-01",
"title": "Schema of Azure EventHub events published to Azure Event Grid",
"description": "Describes the schema of the Azure EventHub events published to Azure Event Grid. This corresponds to the Data property of an EventGridEvent."
},
"paths": {},
"definitions": {
"EventHubCaptureFileCreatedEventData": {
"description": "Schema of the Data property of an EventGridEvent for a Microsoft.EventHub.CaptureFileCreated event.",
"type": "object",
"properties": {
"fileUrl": {
"description": "The path to the capture file.",
"type": "string",
"x-ms-client-name": "fileurl"
},
"fileType": {
"description": "The file type of the capture file.",
"type": "string"
},
"partitionId": {
"description": "The shard ID.",
"type": "string"
},
"sizeInBytes": {
"description": "The file size.",
"type": "integer"
},
"eventCount": {
"description": "The number of events in the file.",
"type": "integer"
},
"firstSequenceNumber": {
"description": "The smallest sequence number from the queue.",
"type": "integer"
},
"lastSequenceNumber": {
"description": "The last sequence number from the queue.",
"type": "integer"
},
"firstEnqueueTime": {
"description": "The first time from the queue.",
"format": "date-time",
"type": "string"
},
"lastEnqueueTime": {
"description": "The last time from the queue.",
"format": "date-time",
"type": "string"
}
}
}
}
}