mirror of
https://github.com/GSA/notifications-api.git
synced 2025-12-22 16:31:15 -05:00
18 lines
456 B
Python
18 lines
456 B
Python
letter_references = {
|
|
"$schema": "http://json-schema.org/draft-04/schema#",
|
|
"description": "list of letter notification references",
|
|
"type": "object",
|
|
"title": "references",
|
|
"properties": {
|
|
"references": {
|
|
"type": "array",
|
|
"items": {
|
|
"type": "string",
|
|
"pattern": "^[0-9A-Z]{16}$"
|
|
},
|
|
"minItems": 1
|
|
},
|
|
},
|
|
"required": ["references"]
|
|
}
|