Sha256: 0bdf58aa19b3b829952534676917e3d5fde606c7c1bd2f9a5bf7d2cc300402b4
Contents?: true
Size: 1.03 KB
Versions: 19
Compression:
Stored size: 1.03 KB
Contents
{ "$schema": "http://json-schema.org/draft-07/schema#", "type": "object", "properties": { "eventIds": { "type": "array", "items": { "type": "string", "pattern": "^[A-Fa-f\\d]{24}$" } }, "updates": { "title": "Event Patch", "description": "Schema for the body of an Event modification request", "type": "object", "properties": { "state": { "type": "string", "enum": [ "new", "acknowledged", "resolved" ] }, "comment": { "type": "string", "maxLength": 32767 }, "data": {}, "eventTags": { "type": "object", "patternProperties": { "^[0-9a-zA-Z_-]{1,255}$": { "type": "string", "minLength": 1, "maxLength": 255 } }, "additionalProperties": false } }, "additionalProperties": false } }, "additionalProperties": false }
Version data entries
19 entries across 19 versions & 1 rubygems