changedOutput schema / (root)
Previous value: -nullNew value: +{
+ "properties": {
+ "comment": {
+ "description": "Error comment (if status is FAILED)",
+ "type": "string"
+ },
+ "result": {
+ "description": "Problemset result",
+ "properties": {
+ "problemStatistics": {
+ "description": "Submission statistics per problem",
+ "items": {
+ "properties": {
+ "contestId": {
+ "description": "Contest ID",
+ "type": "number"
+ },
+ "index": {
+ "description": "Problem index",
+ "type": "string"
+ },
+ "solvedCount": {
+ "description": "Number of solves",
+ "type": "number"
+ },
+ "totalSubmissions": {
+ "description": "Total submissions",
+ "type": "number"
+ }
+ },
+ "type": "object"
+ },
+ "type": "array"
+ },
+ "problems": {
+ "description": "Array of problems",
+ "items": {
+ "properties": {
+ "contestId": {
+ "description": "Contest ID",
+ "type": "number"
+ },
+ "index": {
+ "description": "Problem index",
+ "type": "string"
+ },
+ "name": {
+ "description": "Problem name",
+ "type": "string"
+ },
+ "points": {
+ "description": "Points",
+ "type": "number"
+ },
+ "problemsetName": {
+ "description": "Problemset name",
+ "type": "string"
+ },
+ "rating": {
+ "description": "Difficulty rating",
+ "type": "number"
+ },
+ "tags": {
+ "description": "Problem tags",
+ "items": {
+ "type": "string"
+ },
+ "type": "array"
+ },
+ "type": {
+ "description": "Problem type",
+ "type": "string"
+ }
+ },
+ "type": "object"
+ },
+ "type": "array"
+ }
+ },
+ "type": "object"
+ },
+ "status": {
+ "description": "Response status (OK or FAILED)",
+ "type": "string"
+ }
+ },
+ "required": [
+ "status"
+ ],
+ "type": "object"
+}