changedOutput schema / (root)
Previous value: -nullNew value: +{
+ "properties": {
+ "paper_id": {
+ "description": "The paper ID queried",
+ "type": "string"
+ },
+ "repositories": {
+ "description": "Array of repository objects",
+ "items": {
+ "properties": {
+ "description": {
+ "description": "Repository description",
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "framework": {
+ "description": "Framework used in the repository",
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "id": {
+ "description": "Repository ID",
+ "type": [
+ "number",
+ "null"
+ ]
+ },
+ "is_official": {
+ "description": "Whether this is the official implementation",
+ "type": [
+ "boolean",
+ "null"
+ ]
+ },
+ "name": {
+ "description": "Repository name",
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "owner": {
+ "description": "Repository owner",
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "stars": {
+ "description": "Number of stars on the repository",
+ "type": [
+ "number",
+ "null"
+ ]
+ },
+ "url": {
+ "description": "Repository URL",
+ "type": [
+ "string",
+ "null"
+ ]
+ }
+ },
+ "required": [
+ "id",
+ "url",
+ "owner",
+ "name",
+ "description",
+ "stars",
+ "framework",
+ "is_official"
+ ],
+ "type": "object"
+ },
+ "type": "array"
+ },
+ "total": {
+ "description": "Total number of repositories linked to the paper",
+ "type": "number"
+ }
+ },
+ "required": [
+ "paper_id",
+ "total",
+ "repositories"
+ ],
+ "type": "object"
+}