addedInput schema / properties / include
Added value: +{
+ "description": "Extra sections to load. Omit unless you need them: each is its own round trip",
+ "items": {
+ "enum": [
+ "comments",
+ "attachments"
+ ],
+ "type": "string"
+ },
+ "type": "array"
+}
addedOutput schema / properties / attachments
Added value: +{
+ "items": {
+ "additionalProperties": false,
+ "properties": {
+ "filename": {
+ "type": "string"
+ },
+ "id": {
+ "type": "string"
+ },
+ "mediaType": {
+ "type": "string"
+ },
+ "sizeBytes": {
+ "maximum": 9007199254740991,
+ "minimum": -9007199254740991,
+ "type": "integer"
+ },
+ "url": {
+ "type": "string"
+ }
+ },
+ "required": [
+ "filename",
+ "id",
+ "mediaType",
+ "sizeBytes",
+ "url"
+ ],
+ "type": "object"
+ },
+ "type": "array"
+}
addedOutput schema / properties / comments
Added value: +{
+ "items": {
+ "additionalProperties": false,
+ "properties": {
+ "author": {
+ "description": "Display name of the member who wrote it",
+ "type": "string"
+ },
+ "authorId": {
+ "type": "string"
+ },
+ "body": {
+ "type": "string"
+ },
+ "createdAt": {
+ "anyOf": [
+ {
+ "type": "string"
+ },
+ {
+ "type": "null"
+ }
+ ],
+ "description": "ISO 8601 instant"
+ },
+ "edited": {
+ "description": "True when the body has been changed since it was posted",
+ "type": "boolean"
+ },
+ "id": {
+ "type": "string"
+ }
+ },
+ "required": [
+ "author",
+ "authorId",
+ "body",
+ "createdAt",
+ "edited",
+ "id"
+ ],
+ "type": "object"
+ },
+ "type": "array"
+}
addedOutput schema / properties / task / properties / completed
Added value: +{
+ "anyOf": [
+ {
+ "type": "string"
+ },
+ {
+ "type": "null"
+ }
+ ],
+ "description": "The date (YYYY-MM-DD) the task was completed, in the requested timezone. Null while it is still open"
+}
changedOutput schema / properties / task / required
Previous value: -[
- "assigneeId",
- "deadline",
- "description",
- "id",
- "number",
- "projectId",
- "startDate",
- "state",
- "teamId",
- "title",
- "view"
-]New value: +[
+ "assigneeId",
+ "completed",
+ "deadline",
+ "description",
+ "id",
+ "number",
+ "projectId",
+ "startDate",
+ "state",
+ "teamId",
+ "title",
+ "view"
+]