changedOutput schema / (root)
Previous value: -nullNew value: +{
+ "properties": {
+ "comment": {
+ "description": "Error comment (if status is FAILED)",
+ "type": "string"
+ },
+ "result": {
+ "description": "Array of submission objects",
+ "items": {
+ "properties": {
+ "author": {
+ "description": "Author/participant info",
+ "type": "object"
+ },
+ "contestId": {
+ "description": "Contest ID",
+ "type": "number"
+ },
+ "creationTimeSeconds": {
+ "description": "Unix timestamp of submission",
+ "type": "number"
+ },
+ "id": {
+ "description": "Submission ID",
+ "type": "number"
+ },
+ "memoryConsumedBytes": {
+ "description": "Memory consumed in bytes",
+ "type": "number"
+ },
+ "passedTestCount": {
+ "description": "Number of passed tests",
+ "type": "number"
+ },
+ "problem": {
+ "description": "Problem info",
+ "type": "object"
+ },
+ "programmingLanguage": {
+ "description": "Programming language",
+ "type": "string"
+ },
+ "relativeTimeSeconds": {
+ "description": "Time since contest start",
+ "type": "number"
+ },
+ "testset": {
+ "description": "Testset type (SAMPLES, PRETESTS, TESTS)",
+ "type": "string"
+ },
+ "timeConsumedMillis": {
+ "description": "Time consumed in milliseconds",
+ "type": "number"
+ },
+ "verdict": {
+ "description": "Verdict (e.g., OK, WA, TLE, etc.)",
+ "type": "string"
+ }
+ },
+ "type": "object"
+ },
+ "type": "array"
+ },
+ "status": {
+ "description": "Response status (OK or FAILED)",
+ "type": "string"
+ }
+ },
+ "required": [
+ "status"
+ ],
+ "type": "object"
+}