A collection (or list) of resources.
Property | Description | ||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
items |
A collection of resources returned in the current result set.
|
||||||||||||||
links required read-only |
Each property defines a hypertext link relationship as indicated by a link object or array of link objects. The target URL of each hypertext link relationship is related to the current resource according to the defined semantics of the link relationship property name. |
||||||||||||||
meta read-only |
Metadata describing the current result set.
|
||||||||||||||
type |
The type of resource represented. |
The following schema is based on OpenAPI 3.0 and is provided in our downloadable OpenAPI document.
{
"description": "A collection (or list) of resources.",
"properties": {
"items": {
"description": "A collection of resources returned in the current result set.",
"items": {
"description": "A container for a collection of related products within the lab catalog.",
"properties": {
"description": {
"description": "Display text shown to the user in order to give them information\nconcerning the group and the type of products which it may contain.",
"nullable": true,
"type": "string"
},
"displayOrder": {
"description": "The order in which the group should be displayed in a list of groups\nfor a lab catalog.",
"type": "integer"
},
"id": {
"description": "The identifier for the lab catalog group.",
"type": "integer"
},
"links": {
"$ref": "#/components/schemas/Links"
},
"name": {
"description": "The name of the lab catalog group.",
"type": "string"
},
"type": {
"allOf": [
{
"enum": [
"lab-catalog-group"
]
},
{
"$ref": "#/components/schemas/Type"
}
]
}
},
"required": [
"type",
"name",
"displayOrder"
],
"title": "Lab Catalog Group",
"type": "object"
},
"title": "Lab Catalog Group",
"type": "array"
},
"links": {
"$ref": "#/components/schemas/Links"
},
"meta": {
"description": "Metadata describing the current result set.",
"properties": {
"currentPage": {
"description": "The current page of results returned.",
"type": "integer"
},
"rows": {
"description": "The number of rows returned per page for the current result set.",
"type": "integer"
},
"totalItems": {
"description": "The total number of items in the result set. This may be\naffected by active search/filter parameters.",
"type": "integer"
},
"totalPages": {
"description": "The total number of pages in the result set. This is affected by\nthe `rows` parameter (`totalItems / rows == totalPages`).",
"type": "integer"
}
},
"readOnly": true,
"type": "object"
},
"type": {
"description": "The type of resource represented.",
"enum": [
"lab-catalog-group-collection"
],
"example": "resource-type",
"title": "Resource Type",
"type": "string"
}
},
"required": [
"type",
"items"
],
"title": "Lab Catalog Group Collection",
"type": "object"
}