Schema bulk-sender-post-schema.json
Resolve referenced schemas (may reorder keys)
{
"$schema": "http://json-schema.org/draft-04/schema#",
"type": "array",
"description": "Describes a bulk sender update resource",
"title": "Bulk sender resource",
"items": {
"type": "object",
"additionalProperties": false,
"required": [
"id",
"params"
],
"properties": {
"id": {
"description": "ID of the target sender to apply parameters to",
"type": "string",
"pattern": "^[0-9a-f]{8}-[0-9a-f]{4}-[1-5][0-9a-f]{3}-[89ab][0-9a-f]{3}-[0-9a-f]{12}$"
},
"params": {
"$ref": "sender-stage-schema.json"
}
}
}
}