-
Notifications
You must be signed in to change notification settings - Fork 1
/
sqs_input.json
34 lines (31 loc) · 983 Bytes
/
sqs_input.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
{
"$schema": "http://json-schema.org/draft-04/schema#",
"title": "opener-daemons",
"description": "Schema for SQS input messages",
"type": "object",
"properties": {
"input_url": {
"description": "URL to the KAF document to process",
"type": "string"
},
"input": {
"description": "A Base64 representation of the gzip compressed input",
"type": "string"
},
"identifier": {
"description": "A unique identifier to associate with the document",
"type": "string"
},
"callbacks": {
"description": "An Array of URLs to submit the result to",
"type": "array",
"minItems": 1
},
"metadata": {
"description": "Extra metadata to pass along to each output URL",
"type": "object",
"additionalProperties": true
}
},
"required": ["callbacks"]
}