Skip to content

Commit

Permalink
generate schema
Browse files Browse the repository at this point in the history
  • Loading branch information
jessicamcinchak committed Feb 2, 2024
1 parent bd667f5 commit d1e0da8
Showing 1 changed file with 231 additions and 0 deletions.
231 changes: 231 additions & 0 deletions schema/schema.json
Original file line number Diff line number Diff line change
Expand Up @@ -4056,6 +4056,75 @@
],
"type": "object"
},
{
"additionalProperties": false,
"properties": {
"description": {
"const": "Listed Building - Grade I",
"type": "string"
},
"intersects": {
"const": false,
"type": "boolean"
},
"value": {
"const": "listed.gradeI",
"type": "string"
}
},
"required": [
"description",
"intersects",
"value"
],
"type": "object"
},
{
"additionalProperties": false,
"properties": {
"description": {
"const": "Listed Building - Grade II",
"type": "string"
},
"intersects": {
"const": false,
"type": "boolean"
},
"value": {
"const": "listed.gradeII",
"type": "string"
}
},
"required": [
"description",
"intersects",
"value"
],
"type": "object"
},
{
"additionalProperties": false,
"properties": {
"description": {
"const": "Listed Building - Grade II*",
"type": "string"
},
"intersects": {
"const": false,
"type": "boolean"
},
"value": {
"const": "listed.gradeII*",
"type": "string"
}
},
"required": [
"description",
"intersects",
"value"
],
"type": "object"
},
{
"additionalProperties": false,
"properties": {
Expand Down Expand Up @@ -5132,6 +5201,168 @@
],
"type": "object"
},
{
"additionalProperties": false,
"properties": {
"description": {
"const": "Listed Building - Grade I",
"type": "string"
},
"entities": {
"anyOf": [
{
"items": {
"additionalProperties": false,
"properties": {
"description": {
"type": "string"
},
"name": {
"type": "string"
},
"source": {
"$ref": "#/definitions/URL"
}
},
"required": [
"name"
],
"type": "object"
},
"type": "array"
},
{
"maxItems": 0,
"minItems": 0,
"type": "array"
}
]
},
"intersects": {
"const": true,
"type": "boolean"
},
"value": {
"const": "listed.gradeI",
"type": "string"
}
},
"required": [
"description",
"entities",
"intersects",
"value"
],
"type": "object"
},
{
"additionalProperties": false,
"properties": {
"description": {
"const": "Listed Building - Grade II",
"type": "string"
},
"entities": {
"anyOf": [
{
"items": {
"additionalProperties": false,
"properties": {
"description": {
"type": "string"
},
"name": {
"type": "string"
},
"source": {
"$ref": "#/definitions/URL"
}
},
"required": [
"name"
],
"type": "object"
},
"type": "array"
},
{
"maxItems": 0,
"minItems": 0,
"type": "array"
}
]
},
"intersects": {
"const": true,
"type": "boolean"
},
"value": {
"const": "listed.gradeII",
"type": "string"
}
},
"required": [
"description",
"entities",
"intersects",
"value"
],
"type": "object"
},
{
"additionalProperties": false,
"properties": {
"description": {
"const": "Listed Building - Grade II*",
"type": "string"
},
"entities": {
"anyOf": [
{
"items": {
"additionalProperties": false,
"properties": {
"description": {
"type": "string"
},
"name": {
"type": "string"
},
"source": {
"$ref": "#/definitions/URL"
}
},
"required": [
"name"
],
"type": "object"
},
"type": "array"
},
{
"maxItems": 0,
"minItems": 0,
"type": "array"
}
]
},
"intersects": {
"const": true,
"type": "boolean"
},
"value": {
"const": "listed.gradeII*",
"type": "string"
}
},
"required": [
"description",
"entities",
"intersects",
"value"
],
"type": "object"
},
{
"additionalProperties": false,
"properties": {
Expand Down

0 comments on commit d1e0da8

Please sign in to comment.