Skip to content
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@
"$ref": "#/parameters/TiType"
},
{
"$ref": "#/parameters/Query"
"$ref": "#/parameters/CountQuery"
}
],
"responses": {
Expand Down Expand Up @@ -99,7 +99,7 @@
"count"
]
},
"Query": {
"CountQuery": {
"description": "Represents a query to run on the TI objects in the workspace.",
"properties": {
"properties": {
Expand Down Expand Up @@ -315,12 +315,12 @@
}
},
"parameters": {
"Query": {
"CountQuery": {
"description": "The query to run on the TI objects in the workspace.",
"in": "body",
"name": "query",
"schema": {
"$ref": "#/definitions/Query"
"$ref": "#/definitions/CountQuery"
},
"x-ms-parameter-location": "method"
},
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -177,7 +177,7 @@
},
"createdBy": {
"description": "The UserInfo of the user/entity which originally created this TI object.",
"$ref": "#/definitions/UserInfo",
"$ref": "../../../common/2.0/types.json#/definitions/UserInfo",
"readOnly": true,
"type": "object"
},
Expand Down Expand Up @@ -211,7 +211,7 @@
},
"lastModifiedBy": {
"description": "The UserInfo of the user/entity which last modified this TI object.",
"$ref": "#/definitions/UserInfo",
"$ref": "../../../common/2.0/types.json#/definitions/UserInfo",
"readOnly": true,
"type": "object"
},
Expand Down Expand Up @@ -482,26 +482,6 @@
],
"type": "object"
},
"UserInfo": {
"description": "Data about a user or client application.",
"properties": {
"objectId": {
"description": "The user's object ID.",
"readOnly": true,
"format": "uuid",
"type": "string"
},
"email": {
"description": "The user's email address.",
"type": "string"
},
"name": {
"description": "The user's name.",
"type": "string"
}
},
"type": "object"
},
"ThreatActor": {
"allOf": [
{
Expand Down