changedOutput schema / (root)
Previous value: -nullNew value: +{
+ "properties": {
+ "count": {
+ "description": "Total number of universities found",
+ "type": "number"
+ },
+ "universities": {
+ "description": "List of universities matching the search criteria",
+ "items": {
+ "properties": {
+ "country": {
+ "description": "Country name",
+ "type": "string"
+ },
+ "country_code": {
+ "description": "Two-letter country code",
+ "type": "string"
+ },
+ "domains": {
+ "description": "University domain names",
+ "items": {
+ "type": "string"
+ },
+ "type": "array"
+ },
+ "name": {
+ "description": "University name",
+ "type": "string"
+ },
+ "state_province": {
+ "description": "State or province name if applicable",
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "web_pages": {
+ "description": "University web page URLs",
+ "items": {
+ "type": "string"
+ },
+ "type": "array"
+ }
+ },
+ "required": [
+ "name",
+ "country",
+ "country_code",
+ "state_province",
+ "domains",
+ "web_pages"
+ ],
+ "type": "object"
+ },
+ "type": "array"
+ }
+ },
+ "required": [
+ "count",
+ "universities"
+ ],
+ "type": "object"
+}