changedInput schema / additionalProperties
Previous value: -trueNew value: +false
addedInput schema / anyOf
Added value: +[
+ {
+ "required": [
+ "from_system"
+ ]
+ },
+ {
+ "required": [
+ "geography_binding"
+ ]
+ }
+]
addedInput schema / properties / bridge_vintage
Added value: +{
+ "type": "string"
+}
addedInput schema / properties / geography_binding
Added value: +{
+ "additionalProperties": false,
+ "properties": {
+ "country_scope": {
+ "type": "string"
+ },
+ "geo_level": {
+ "anyOf": [
+ {
+ "type": "string"
+ },
+ {
+ "type": "integer"
+ }
+ ]
+ },
+ "id_column": {
+ "type": "string"
+ },
+ "mode": {
+ "enum": [
+ "reference",
+ "loc_id"
+ ],
+ "type": "string"
+ },
+ "system": {
+ "type": "string"
+ },
+ "vintage": {
+ "type": "string"
+ }
+ },
+ "required": [
+ "system"
+ ],
+ "type": "object"
+}
addedInput schema / properties / iso3
Added value: +{
+ "type": "string"
+}
changedInput schema / properties / items / description
Previous value: -"Rows to convert; each row needs value and may include row_index."New value: +"Rows to convert; row-level fields may override top-level defaults."
addedInput schema / properties / items / items / additionalProperties
Added value: +false
addedInput schema / properties / items / items / properties
Added value: +{
+ "bridge_vintage": {
+ "type": "string"
+ },
+ "data": {
+ "additionalProperties": {
+ "anyOf": [
+ {
+ "type": "string"
+ },
+ {
+ "type": "number"
+ },
+ {
+ "type": "integer"
+ },
+ {
+ "type": "boolean"
+ },
+ {
+ "type": "null"
+ }
+ ]
+ },
+ "description": "Original spreadsheet columns to preserve. Column names beginning daedalmap_ are reserved for generated output fields.",
+ "maxProperties": 200,
+ "type": "object"
+ },
+ "from_system": {
+ "type": "string"
+ },
+ "id": {
+ "anyOf": [
+ {
+ "type": "integer"
+ },
+ {
+ "type": "string"
+ }
+ ]
+ },
+ "iso3": {
+ "type": "string"
+ },
+ "limit": {
+ "maximum": 100,
+ "minimum": 1,
+ "type": "integer"
+ },
+ "min_share": {
+ "maximum": 1,
+ "minimum": 0,
+ "type": "number"
+ },
+ "row_index": {
+ "anyOf": [
+ {
+ "type": "integer"
+ },
+ {
+ "type": "string"
+ }
+ ]
+ },
+ "target_admin_level": {
+ "anyOf": [
+ {
+ "type": "string"
+ },
+ {
+ "type": "integer"
+ }
+ ]
+ },
+ "to_system": {
+ "type": "string"
+ },
+ "value": {
+ "description": "Identifier value; keep as a string to preserve leading zeros.",
+ "type": "string"
+ }
+}
addedInput schema / properties / items / items / required
Added value: +[
+ "value"
+]
addedInput schema / properties / limit
Added value: +{
+ "maximum": 100,
+ "minimum": 1,
+ "type": "integer"
+}
addedInput schema / properties / min_share
Added value: +{
+ "maximum": 1,
+ "minimum": 0,
+ "type": "number"
+}
addedInput schema / properties / output_format
Added value: +{
+ "enum": [
+ "json_rows",
+ "csv",
+ "jsonl",
+ "parquet"
+ ],
+ "type": "string"
+}
addedInput schema / properties / output_name
Added value: +{
+ "maxLength": 80,
+ "type": "string"
+}
changedInput schema / required
Previous value: -[
- "from_system",
- "items"
-]New value: +[
+ "items"
+]