app-automation_studio Schemas

On this page:

projects-search-parameters

{ "$id": "projects-search-parameters", "title": "Project Search Parameters", "description": "Parameters used to filter and paginate Project documents in the Project search API", "type": "object", "additionalProperties": true, "properties": { "equals": { "type": "object", "properties": { "_id": { "type": "string" }, "iid": { "type": "number" }, "name": { "type": "string" }, "createdBy": { "type": "string" }, "lastUpdatedBy": { "type": "string" } } }, "in": { "type": "object", "properties": { "_id": { "$ref": "#/definitions/stringOrArray" }, "iid": { "$ref": "#/definitions/stringOrArray" }, "name": { "$ref": "#/definitions/stringOrArray" }, "createdBy": { "$ref": "#/definitions/stringOrArray" }, "lastUpdatedBy": { "$ref": "#/definitions/stringOrArray" } } }, "starts-with": { "type": "object", "properties": { "name": { "type": "string" } } }, "contains": { "type": "object", "properties": { "name": { "type": "string" }, "description": { "type": "string" }, "name,description": { "type": "string" }, "description,name": { "type": "string" } } }, "sort": { "type": "string", "enum": [ "_id", "iid", "name", "created", "lastUpdated", "createdBy", "lastUpdatedBy" ] }, "order": { "type": "string", "enum": [ "asc", "desc" ] }, "skip": { "oneOf": [ { "type": "number" }, { "type": "string" } ] }, "limit": { "oneOf": [ { "type": "number" }, { "type": "string" } ] } }, "definitions": { "stringOrArray": { "oneOf": [ { "type": "string" }, { "type": "array" } ] } } }