-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathmembership.json
41 lines (41 loc) · 1.23 KB
/
membership.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
35
36
37
38
39
40
41
{
"fields": [
{
"name": "Local authority",
"description": "Local authority responsible for the library service",
"type": "string",
"format": "default",
"constraints": {
"required": true
}
},
{
"name": "Count date",
"description": "The date this count was completed",
"type": "date",
"format": "default",
"constraints": {
"required": true
}
},
{
"name": "Area code",
"description": "Office for National Statistics geographic area code. Use Unknown where the area code is not known.",
"type": "string",
"format": "default",
"constraints": {
"required": true
}
},
{
"name": "Members",
"description": "Count of active members (active in the last year) with address located in the specified area.",
"type": "string",
"format": "default",
"constraints": {
"required": true,
"pattern": "^x$|^[5-9]{1}$|^[1-9]\\d{1,}$"
}
}
]
}