changedOutput schema / (root)
Previous value: -nullNew value: +{
+ "dependentRequired": {
+ "found": [
+ "id",
+ "display_name",
+ "level",
+ "description",
+ "works_count",
+ "cited_by_count",
+ "ancestors",
+ "related_concepts"
+ ]
+ },
+ "properties": {
+ "ancestors": {
+ "description": "Parent concepts in hierarchy",
+ "items": {
+ "properties": {
+ "level": {
+ "description": "Ancestor hierarchy level",
+ "type": "number"
+ },
+ "name": {
+ "description": "Ancestor concept name",
+ "type": "string"
+ }
+ },
+ "required": [
+ "name",
+ "level"
+ ],
+ "type": "object"
+ },
+ "type": "array"
+ },
+ "cited_by_count": {
+ "description": "Total citations in this field",
+ "type": "number"
+ },
+ "description": {
+ "description": "Concept description",
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "display_name": {
+ "description": "Concept display name",
+ "type": "string"
+ },
+ "found": {
+ "description": "Whether a matching concept was found",
+ "type": "boolean"
+ },
+ "id": {
+ "description": "OpenAlex concept ID",
+ "type": "string"
+ },
+ "level": {
+ "description": "Concept hierarchy level",
+ "type": "number"
+ },
+ "query": {
+ "description": "The concept query searched",
+ "type": "string"
+ },
+ "related_concepts": {
+ "description": "Related concepts (up to 10)",
+ "items": {
+ "properties": {
+ "level": {
+ "description": "Related concept hierarchy level",
+ "type": "number"
+ },
+ "name": {
+ "description": "Related concept name",
+ "type": "string"
+ },
+ "score": {
+ "description": "Relatedness score",
+ "type": "number"
+ }
+ },
+ "required": [
+ "name",
+ "level",
+ "score"
+ ],
+ "type": "object"
+ },
+ "type": "array"
+ },
+ "works_count": {
+ "description": "Number of works in this field",
+ "type": "number"
+ }
+ },
+ "required": [
+ "query",
+ "found"
+ ],
+ "type": "object"
+}