@pdtf/schemas 0.9.3 → 0.9.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json
CHANGED
|
@@ -1983,7 +1983,8 @@
|
|
|
1983
1983
|
"type": "string",
|
|
1984
1984
|
"minLength": 1
|
|
1985
1985
|
}
|
|
1986
|
-
}
|
|
1986
|
+
},
|
|
1987
|
+
"required": ["line1", "postcode"]
|
|
1987
1988
|
},
|
|
1988
1989
|
"contactDetails": {
|
|
1989
1990
|
"type": "object",
|
|
@@ -2005,7 +2006,31 @@
|
|
|
2005
2006
|
},
|
|
2006
2007
|
"address": {
|
|
2007
2008
|
"title": "Address",
|
|
2008
|
-
"
|
|
2009
|
+
"type": "object",
|
|
2010
|
+
"properties": {
|
|
2011
|
+
"line1": {
|
|
2012
|
+
"title": "Address 1",
|
|
2013
|
+
"type": "string",
|
|
2014
|
+
"minLength": 1
|
|
2015
|
+
},
|
|
2016
|
+
"line2": {
|
|
2017
|
+
"title": "Address 2",
|
|
2018
|
+
"type": "string"
|
|
2019
|
+
},
|
|
2020
|
+
"town": {
|
|
2021
|
+
"title": "Town",
|
|
2022
|
+
"type": "string"
|
|
2023
|
+
},
|
|
2024
|
+
"county": {
|
|
2025
|
+
"title": "County",
|
|
2026
|
+
"type": "string"
|
|
2027
|
+
},
|
|
2028
|
+
"postcode": {
|
|
2029
|
+
"title": "Postcode",
|
|
2030
|
+
"type": "string",
|
|
2031
|
+
"minLength": 1
|
|
2032
|
+
}
|
|
2033
|
+
}
|
|
2009
2034
|
}
|
|
2010
2035
|
}
|
|
2011
2036
|
}
|