changedOutput schema / properties / legislators / items / properties / current_role / anyOf
Previous value: -[
- {
- "additionalProperties": false,
- "properties": {
- "district": {
- "anyOf": [
- {
- "type": "string"
- },
- {
- "type": "null"
- }
- ],
- "description": "District label or null."
- },
- "division_id": {
- "anyOf": [
- {
- "type": "string"
- },
- {
- "type": "null"
- }
- ],
- "description": "OCD division the district maps to (e.g., \"ocd-division/country:us/state:wa/sldu:37\"). Null when undistricted, absent when upstream omits it."
- },
- "org_classification": {
- "description": "Chamber classification.",
- "type": "string"
- },
- "title": {
- "description": "Role title.",
- "type": "string"
- }
- },
- "required": [
- "title",
- "org_classification",
- "district"
- ],
- "type": "object"
- },
- {
- "type": "null"
- }
-]New value: +[
+ {
+ "additionalProperties": false,
+ "properties": {
+ "district": {
+ "description": "District label or null.",
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "division_id": {
+ "description": "OCD division the district maps to (e.g., \"ocd-division/country:us/state:wa/sldu:37\"). Null when undistricted, absent when upstream omits it.",
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "org_classification": {
+ "description": "Chamber classification.",
+ "type": "string"
+ },
+ "title": {
+ "description": "Role title.",
+ "type": "string"
+ }
+ },
+ "required": [
+ "title",
+ "org_classification",
+ "district"
+ ],
+ "type": "object"
+ },
+ {
+ "type": "null"
+ }
+]