app-lifecycle_manager Schemas

On this page:

instance-group-search-params

{ "$schema": "http://json-schema.org/draft-07/schema", "$id": "instance-group-search-params", "title": "Resource Instance Group Search Parameters", "description": "Search Parameters supported on the Resource Instance Group collection.", "type": "object", "definitions": { "comparison-operator": { "type": "object", "properties": { "created": { "$ref": "common#/definitions/iso-date-string" }, "lastUpdated": { "$ref": "common#/definitions/iso-date-string" } } } }, "allOf": [ { "$ref": "common-http#/definitions/pagination-parameters" }, { "$ref": "common-http#/definitions/sort-parameters" }, { "properties": { "equals": { "type": "object", "properties": { "modelName": { "$ref": "common#/definitions/name" }, "_id": { "$ref": "common#/definitions/ObjectIdLikeString" }, "name": { "$ref": "common#/definitions/name" }, "modelId": { "$ref": "common#/definitions/ObjectIdLikeString" }, "created": { "$ref": "common#/definitions/iso-date-string" }, "createdBy": { "$ref": "common#/definitions/ObjectIdLikeString" }, "lastUpdated": { "$ref": "common#/definitions/iso-date-string" }, "lastUpdatedBy": { "$ref": "common#/definitions/ObjectIdLikeString" } } }, "in": { "allOf": [ { "$ref": "common-http#/definitions/search-parameter-in" }, { "type": "object", "properties": { "type": { "type": "array", "items": { "$ref": "instance-group-common#/definitions/type" } }, "lastAction": { "type": "object", "properties": { "type": { "type": "array", "items": { "$ref": "resource-model-common#/definitions/action-type" } } } } } } ] }, "starts-with": { "type": "object", "properties": { "name": { "$ref": "common#/definitions/name" } } }, "lt": { "$ref": "#/definitions/comparison-operator" }, "lte": { "$ref": "#/definitions/comparison-operator" }, "gt": { "$ref": "#/definitions/comparison-operator" }, "gte": { "$ref": "#/definitions/comparison-operator" }, "dereference": { "description": "Comma-separated list of foreign key field types to dereference", "const": "accounts" } } } ] }