Schema
org_member_paginated
Type:
object
count
Type:
number
The total number of items that match with the search.
All schema constraints and annotations
{
"description": "The total number of items that match with the search.",
"example": 120,
"type": "number"
}next
Type:
string | null
The URL or link for the next page of items.
All schema constraints and annotations
{
"description": "The URL or link for the next page of items.",
"example": null,
"type": [
"string",
"null"
]
}previous
Type:
string | null
The URL or link for the previous page of items.
All schema constraints and annotations
{
"description": "The URL or link for the previous page of items.",
"example": null,
"type": [
"string",
"null"
]
}results
Type:
array
List of accounts.
Array item
Schema:
org_member
All schema constraints and annotations
{
"description": "List of accounts.",
"items": {
"$ref": "#/components/schemas/org_member"
},
"type": "array"
}All schema constraints and annotations
{
"examples": [
{
"count": 1,
"next": null,
"previous": null,
"results": [
{
"date_joined": "2021-01-05T21:06:53.506400Z",
"email": "example@docker.com",
"full_name": "Jon Snow",
"groups": [
"owners"
],
"id": "0ab70deb065a43fcacd55d48caa945d8",
"is_guest": false,
"role": "Owner",
"type": "User",
"username": "dockeruser"
}
]
}
],
"properties": {
"count": {
"description": "The total number of items that match with the search.",
"example": 120,
"type": "number"
},
"next": {
"description": "The URL or link for the next page of items.",
"example": null,
"type": [
"string",
"null"
]
},
"previous": {
"description": "The URL or link for the previous page of items.",
"example": null,
"type": [
"string",
"null"
]
},
"results": {
"description": "List of accounts.",
"items": {
"$ref": "#/components/schemas/org_member"
},
"type": "array"
}
},
"type": "object"
}