changedOutput schema / (root)
Previous value: -nullNew value: +{
+ "properties": {
+ "code": {
+ "description": "Three-letter driver code",
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "date_of_birth": {
+ "description": "Date of birth (ISO format)",
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "driver_id": {
+ "description": "Ergast driver ID",
+ "type": "string"
+ },
+ "name": {
+ "description": "Full driver name",
+ "type": "string"
+ },
+ "nationality": {
+ "description": "Driver nationality",
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "number": {
+ "description": "Permanent car number",
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "url": {
+ "description": "Wikipedia URL for driver",
+ "type": [
+ "string",
+ "null"
+ ]
+ }
+ },
+ "required": [
+ "driver_id",
+ "number",
+ "code",
+ "name",
+ "date_of_birth",
+ "nationality",
+ "url"
+ ],
+ "type": "object"
+}