Files
notifications-api/app/v2/template_schema.py
2017-04-19 10:51:12 +01:00

16 lines
441 B
Python

from app.schema_validation.definitions import uuid
# this may belong in a templates module
template = {
"$schema": "http://json-schema.org/draft-04/schema#",
"description": "template schema",
"type": "object",
"title": "notification content",
"properties": {
"id": uuid,
"version": {"type": "integer"},
"uri": {"type": "string", "format": "uri"}
},
"required": ["id", "version", "uri"]
}