Compare commits

..

2 Commits

Author SHA1 Message Date
50824255f8 Extend TOC info type to handle URL
All checks were successful
Generate and Release Protos / release (push) Successful in 32s
2026-03-25 13:24:20 +00:00
e1950c0ef3 Fix TIPLOC in darwin-tiplocs to be a simple string, rather than an array
All checks were successful
Generate and Release Protos / release (push) Successful in 36s
2026-03-22 19:26:37 +00:00
2 changed files with 8 additions and 1 deletions

View File

@@ -38,7 +38,7 @@
"description": "CRS of the location"
},
"t": {
"type": "array",
"type": "string",
"description": "TIPLOC assigned to the location"
},
"n": {

View File

@@ -34,12 +34,19 @@
"required": ["c", "n"],
"properties": {
"c": {
"name": "ATOC Code",
"type": "string",
"description": "The ATOC 'code' for the TOC"
},
"n": {
"name": "TOC Name",
"type": "string",
"description": "The name of the TOC"
},
"u": {
"name": "URL",
"type": "string",
"description": "URL for TOC Information"
}
}
}