changedOutput schema / (root)
Previous value: -nullNew value: +{
+ "properties": {
+ "applications": {
+ "description": "Applications from human executors",
+ "items": {
+ "properties": {
+ "cover_letter": {
+ "type": "string"
+ },
+ "executor": {
+ "description": "name, rating, completed_tasks of the human",
+ "type": "object"
+ },
+ "id": {
+ "description": "Application UUID, use with accept/reject/review",
+ "type": "string"
+ },
+ "result_file_url": {
+ "description": "Photo/file URL, present after submission",
+ "type": "string"
+ },
+ "result_text": {
+ "description": "Present after the human submits",
+ "type": "string"
+ },
+ "status": {
+ "enum": [
+ "pending",
+ "accepted",
+ "revision",
+ "submitted",
+ "approved",
+ "rejected"
+ ],
+ "type": "string"
+ }
+ },
+ "type": "object"
+ },
+ "type": "array"
+ },
+ "id": {
+ "type": "string"
+ },
+ "reward": {
+ "type": "number"
+ },
+ "status": {
+ "type": "string"
+ },
+ "title": {
+ "type": "string"
+ }
+ },
+ "required": [
+ "id",
+ "applications"
+ ],
+ "type": "object"
+}