{ "$schema": "http://json-schema.org/draft-07/schema", "$id": "http://tizen.org/taskRequest.json", "title": "Task Request", "description": "Request for getting information about tasks", "type": "object", "required": [ "type", "duration", "period" ], "properties": { "type": { "$id": "#/properties/type", "description": "Type of the task information - currently only supports 1 which gets task info of all apps", "type": "integer", "examples": [ 1 ] }, "duration": { "$id": "#/properties/duration", "description": "How long the task information to be gathered for (in sec)", "type": "integer", "examples": [ 30 ] }, "period": { "$id": "#/properties/period", "description": "How frequent the task information to be gathered (in sec)", "type": "integer", "examples": [ 1 ] } } }