mirror of
https://codeberg.org/timelimit/timelimit-server.git
synced 2025-10-03 09:49:32 +02:00
Add basically API documentation
This commit is contained in:
parent
ab16134a8e
commit
d021497e52
149 changed files with 7811 additions and 39 deletions
53
docs/api/README.md
Normal file
53
docs/api/README.md
Normal file
|
@ -0,0 +1,53 @@
|
||||||
|
# TimeLimit Server API documentation
|
||||||
|
|
||||||
|
The client communicates with the server using HTTP(S) requests
|
||||||
|
and a socket.io websocket connection.
|
||||||
|
|
||||||
|
All requests bodies (if any) and responses are encoded as JSON
|
||||||
|
if not said otherwise.
|
||||||
|
|
||||||
|
## /admin
|
||||||
|
|
||||||
|
This endpoint is for the server administrator.
|
||||||
|
Its interface is described at [admin.md](./admin.md).
|
||||||
|
|
||||||
|
## /auth
|
||||||
|
|
||||||
|
This endpoint is used for the user authentication.
|
||||||
|
Its interface is described at [auth.md](./auth.md).
|
||||||
|
|
||||||
|
## /child
|
||||||
|
|
||||||
|
This endpoint is used for by devices which are used by a child.
|
||||||
|
Its interface is described at [child.md](./child.md).
|
||||||
|
|
||||||
|
## /parent
|
||||||
|
|
||||||
|
This endpoint is used by devices which are used by a parent.
|
||||||
|
Its interface is described at [parent.md](./parent.md).
|
||||||
|
|
||||||
|
## /purchase
|
||||||
|
|
||||||
|
This endpoint is used for handling purchases from the client.
|
||||||
|
Its interface is described at [purchase.md](./purchase.md).
|
||||||
|
|
||||||
|
## /sync
|
||||||
|
|
||||||
|
This endpoint is used by clients for syncing.
|
||||||
|
Its interface is described at [sync.md](./sync.md).
|
||||||
|
|
||||||
|
## GET /time
|
||||||
|
|
||||||
|
This endpoint returns the current time of the server
|
||||||
|
as a Unix timestamp in milliseconds. This does not need
|
||||||
|
any authentication.
|
||||||
|
|
||||||
|
The response is a object with the property ``ms`` whose
|
||||||
|
value is the timestamp as number.
|
||||||
|
|
||||||
|
Example response: ``{"ms":1578311020747}``
|
||||||
|
|
||||||
|
## Websocket
|
||||||
|
|
||||||
|
The websocket is used for real time notifications from the server
|
||||||
|
to the client. The protocol is described at [websocket.md](./websocket.md).
|
88
docs/api/admin.md
Normal file
88
docs/api/admin.md
Normal file
|
@ -0,0 +1,88 @@
|
||||||
|
# /admin
|
||||||
|
|
||||||
|
This endpoint is for the server admin.
|
||||||
|
|
||||||
|
Due to that, it requires authentication using the HTTP basic authentication.
|
||||||
|
The username can be anything, the password must be the configured admin token.
|
||||||
|
|
||||||
|
Additionally, this endpoint allows cross origin requests.
|
||||||
|
|
||||||
|
## GET /admin/status
|
||||||
|
|
||||||
|
Use this to get the server status.
|
||||||
|
|
||||||
|
## Response
|
||||||
|
|
||||||
|
This returns a JSON object with ``websocketClients`` (of the type number,
|
||||||
|
the number of clients connected using the websocket) and the map ``counters``
|
||||||
|
which maps values to numbers. You should not make any assumptions about the counter names
|
||||||
|
and their availability.
|
||||||
|
|
||||||
|
### example response
|
||||||
|
|
||||||
|
```
|
||||||
|
{
|
||||||
|
"websocketClients": 3,
|
||||||
|
"counters": {
|
||||||
|
"testCounter": 1
|
||||||
|
}
|
||||||
|
}
|
||||||
|
```
|
||||||
|
|
||||||
|
## POST /admin/reset-counters
|
||||||
|
|
||||||
|
Use this to reset the counters included in the server status.
|
||||||
|
|
||||||
|
Although this uses POST, it does not take any request body
|
||||||
|
|
||||||
|
Response: ``{"ok": true}``
|
||||||
|
|
||||||
|
## GET /admin/status-message
|
||||||
|
|
||||||
|
Use this to get the current status message.
|
||||||
|
|
||||||
|
This returns a object with the key ``statusMessage`` whose value
|
||||||
|
of the type string is the current status message.
|
||||||
|
|
||||||
|
Example response: ``{"statusMessage":""}``
|
||||||
|
|
||||||
|
### see
|
||||||
|
|
||||||
|
- [status message concept](../concept/status-message.md)
|
||||||
|
|
||||||
|
## POST /admin/status-message
|
||||||
|
|
||||||
|
Use this to set the status message.
|
||||||
|
|
||||||
|
Request body: object with ``message`` (string)
|
||||||
|
|
||||||
|
Response: ``{"ok": true}``
|
||||||
|
|
||||||
|
### see
|
||||||
|
|
||||||
|
- [status message concept](../concept/status-message.md)
|
||||||
|
|
||||||
|
## POST /admin/unlock-premium
|
||||||
|
|
||||||
|
Use this to unlock all features for one user for a specified duration.
|
||||||
|
|
||||||
|
### request
|
||||||
|
|
||||||
|
request properties: ``mail`` and ``duration``
|
||||||
|
|
||||||
|
- ``duration`` must be ``year`` or ``month``
|
||||||
|
- ``mail`` must be a mail address of any user assigned to the family for which the features should be unlocked
|
||||||
|
|
||||||
|
### response
|
||||||
|
|
||||||
|
If everything worked:
|
||||||
|
|
||||||
|
``{"ok": true}``
|
||||||
|
|
||||||
|
If the duration was invalid or no mail address was specified: HTTP status code 400 Bad Request
|
||||||
|
|
||||||
|
If there was nothing found for the mail address: HTTP status code 409 Conflict
|
||||||
|
|
||||||
|
### see
|
||||||
|
|
||||||
|
- [premium concept](../concept/premium.md)
|
86
docs/api/auth.md
Normal file
86
docs/api/auth.md
Normal file
|
@ -0,0 +1,86 @@
|
||||||
|
# /auth
|
||||||
|
|
||||||
|
This endpoint is for the user authentication.
|
||||||
|
|
||||||
|
For this, mail addresses are used. The user starts
|
||||||
|
a authentication flow by sending the mail address.
|
||||||
|
Then the caller gets a mail login token and a
|
||||||
|
code is sent to the specified mail address.
|
||||||
|
After this, the caller can send the mail login token
|
||||||
|
and the code received by mail to get a mail auth token which can be
|
||||||
|
used at other APIs for creating a family, signing in into an existing family or
|
||||||
|
recovering a password.
|
||||||
|
|
||||||
|
## POST /auth/send-mail-login-code-v2
|
||||||
|
|
||||||
|
Use this to start authenticating.
|
||||||
|
|
||||||
|
### Request
|
||||||
|
|
||||||
|
see [this JSON schema](../schema/sendmaillogincoderequest.md)
|
||||||
|
|
||||||
|
#### example request
|
||||||
|
|
||||||
|
```
|
||||||
|
{
|
||||||
|
"mail": "test@timelimit.io",
|
||||||
|
"locale": "de"
|
||||||
|
}
|
||||||
|
```
|
||||||
|
|
||||||
|
### Response
|
||||||
|
|
||||||
|
If the request body is malformed or the mail address is invalid: HTTP status code 400 Bad Request
|
||||||
|
|
||||||
|
If the rate limit was exceeded: HTTP status code 429 Too Many Requests
|
||||||
|
|
||||||
|
If a whitelist was configured and the mail address is not within it: ``{"mailAddressNotWhitelisted": true}``
|
||||||
|
|
||||||
|
If a blacklist was configured and the mail server is within it: ``{"mailServerBlacklisted": true}``
|
||||||
|
|
||||||
|
On success: a object with a ``mailLoginToken`` of the type string
|
||||||
|
|
||||||
|
#### example response
|
||||||
|
|
||||||
|
```
|
||||||
|
{
|
||||||
|
"mailLoginToken": "dhdgfssgsdgd"
|
||||||
|
}
|
||||||
|
```
|
||||||
|
|
||||||
|
#### see
|
||||||
|
|
||||||
|
- [mail black and whitelist concept](../concept/mail-blackwhitelist.md)
|
||||||
|
|
||||||
|
## POST /auth/sign-in-by-mail-code
|
||||||
|
|
||||||
|
Use this to finish authenticating.
|
||||||
|
|
||||||
|
### Request
|
||||||
|
|
||||||
|
see [this JSON schema](../api/signinbymailcoderequest.md)
|
||||||
|
|
||||||
|
#### example request
|
||||||
|
|
||||||
|
```
|
||||||
|
{
|
||||||
|
"receivedCode": "ein test login",
|
||||||
|
"mailLoginToken": "dhdgfssgsdgd"
|
||||||
|
}
|
||||||
|
```
|
||||||
|
|
||||||
|
### Response
|
||||||
|
|
||||||
|
If the request body is malformed: HTTP status code 400 Bad Request
|
||||||
|
|
||||||
|
If there were to many wrong attempts: HTTP status code 410 Gone
|
||||||
|
|
||||||
|
If the mail login token is unknown: HTTP status code 410 Gone
|
||||||
|
|
||||||
|
If the received code is wrong and it can be tried again: HTTP status code 403 Forbidden
|
||||||
|
|
||||||
|
On success: A object with a ``mailAuthToken`` of the type string
|
||||||
|
|
||||||
|
#### example response
|
||||||
|
|
||||||
|
``{"mailAuthToken": "wthdktjdejd"}``
|
79
docs/api/child.md
Normal file
79
docs/api/child.md
Normal file
|
@ -0,0 +1,79 @@
|
||||||
|
# /child
|
||||||
|
|
||||||
|
This endpoint is used for by devices which are used by a child.
|
||||||
|
|
||||||
|
## POST /child/add-device
|
||||||
|
|
||||||
|
Use this during the setup to add a device to an existing family using an add device code.
|
||||||
|
|
||||||
|
### request
|
||||||
|
|
||||||
|
see [this JSON schema](../schema/registerchilddevicerequest.md)
|
||||||
|
|
||||||
|
### response
|
||||||
|
|
||||||
|
On a invalid request body: HTTP status code 400 Bad request
|
||||||
|
|
||||||
|
On a invalid add device token: HTTP status code 401 Unauthorized
|
||||||
|
|
||||||
|
On success: a JSON object with the properties ``deviceAuthToken`` and ``ownDeviceId``,
|
||||||
|
both of the type string
|
||||||
|
|
||||||
|
## POST /child/update-primary-device
|
||||||
|
|
||||||
|
Use this to (un)set the calling device as primary device.
|
||||||
|
|
||||||
|
### request
|
||||||
|
|
||||||
|
see [this JSON schema](../schema/updateprimarydevicerequest.md)
|
||||||
|
|
||||||
|
### response
|
||||||
|
|
||||||
|
On a invalid request body: HTTP status code 400 Bad request
|
||||||
|
|
||||||
|
On a invalid auth token: HTTP status code 401 Unauthorized
|
||||||
|
|
||||||
|
If the transmitted ``currentUserId`` is empty or does not match the current user of the device:
|
||||||
|
HTTP status code 409 Conflict
|
||||||
|
|
||||||
|
If the transmitted ``currentUserId`` does not match a valid user: HTTP status code 409 Conflict
|
||||||
|
|
||||||
|
If trying to unset the device as primary device and the device is not the current device of the user:
|
||||||
|
HTTP status code 409 Conflict
|
||||||
|
|
||||||
|
Otherwise: a JSON object with the property ``status`` (string)
|
||||||
|
|
||||||
|
``status`` can have the following values:
|
||||||
|
|
||||||
|
- ``assigned to other device`` (if the user is assigned to an other device)
|
||||||
|
- ``requires full version``
|
||||||
|
- ``success``
|
||||||
|
|
||||||
|
### see
|
||||||
|
|
||||||
|
- [primary device concept](../concept/primary-device.md)
|
||||||
|
|
||||||
|
## POST /child/logout-at-primary-device
|
||||||
|
|
||||||
|
Use this to request unsetting the current primary device of the user
|
||||||
|
which is currently assigned to the calling device. This triggers a websocket
|
||||||
|
message to the current primary device of the user.
|
||||||
|
|
||||||
|
### request
|
||||||
|
|
||||||
|
see [this JSON schema](../schema/requestwithauthtoken.md)
|
||||||
|
|
||||||
|
### response
|
||||||
|
|
||||||
|
On a invalid request body: HTTP status code 400 Bad request
|
||||||
|
|
||||||
|
On a invalid auth token: HTTP status code 401 Unauthorized
|
||||||
|
|
||||||
|
If there is no user assigned to the calling device or
|
||||||
|
if there is no existing current primary device: HTTP status code 409 Conflict
|
||||||
|
|
||||||
|
On success: ``{"ok": true}``
|
||||||
|
|
||||||
|
### see
|
||||||
|
|
||||||
|
- [primary device concept](../concept/primary-device.md)
|
167
docs/api/parent.md
Normal file
167
docs/api/parent.md
Normal file
|
@ -0,0 +1,167 @@
|
||||||
|
# /parent
|
||||||
|
|
||||||
|
This endpoint is used by devices which are used by a parent.
|
||||||
|
|
||||||
|
## see
|
||||||
|
|
||||||
|
- [auth API](./auth.md) for obtaining mail auth tokens which are needed at some APIs here
|
||||||
|
|
||||||
|
## POST /parent/get-status-by-mail-address
|
||||||
|
|
||||||
|
Use this to check the status of a mail auth token and the linked mail address.
|
||||||
|
|
||||||
|
### request
|
||||||
|
|
||||||
|
see [this JSON schema](../schema/mailauthtokenrequestbody.md)
|
||||||
|
|
||||||
|
### response
|
||||||
|
|
||||||
|
On a invalid request body: HTTP status code 400 Bad Request
|
||||||
|
|
||||||
|
If the mail auth token is invalid/ expired: HTTP status code 401 Unauthorized
|
||||||
|
|
||||||
|
On success: a object with the properties ``status`` (string), ``mail`` (string) and
|
||||||
|
``canCreateFamily`` (boolean)
|
||||||
|
|
||||||
|
- ``status`` is ``with family`` or ``without family``
|
||||||
|
- ``mail`` is the mail address for which the auth token was created
|
||||||
|
- ``canCreateFamily`` is false if the sign up of new families was disabled and otherwise true
|
||||||
|
|
||||||
|
## POST /parent/create-family
|
||||||
|
|
||||||
|
Use this to register a new family.
|
||||||
|
|
||||||
|
### request
|
||||||
|
|
||||||
|
see [this JSON schema](../schema/createfamilybymailtokenrequest.md)
|
||||||
|
|
||||||
|
### response
|
||||||
|
|
||||||
|
On a invalid request body: HTTP status code 400 Bad Request
|
||||||
|
|
||||||
|
If the mail auth token is invalid/ expired: HTTP status code 401 Unauthorized
|
||||||
|
|
||||||
|
If there is already a user with the mail address of the mail auth token: HTTP status code 409 Conflict
|
||||||
|
|
||||||
|
On success: object with ``deviceAuthToken`` (string) and ``ownDeviceId`` (string)
|
||||||
|
|
||||||
|
## POST /parent/sign-in-into-family
|
||||||
|
|
||||||
|
Use this to sign in into an existing family using a mail auth token.
|
||||||
|
|
||||||
|
### request
|
||||||
|
|
||||||
|
see [this JSON schema](../schema/signintofamilyrequest.md)
|
||||||
|
|
||||||
|
### response
|
||||||
|
|
||||||
|
On a invalid request body: HTTP status code 400 Bad Request
|
||||||
|
|
||||||
|
If there is no user with the mail address of the mail auth token: HTTP status code 409 Conflict
|
||||||
|
|
||||||
|
On success: object with ``deviceAuthToken`` (string) and ``ownDeviceId`` (string)
|
||||||
|
|
||||||
|
## POST /parent/can-recover-password
|
||||||
|
|
||||||
|
Use this to check if the parent password can be recovered. This checks that the
|
||||||
|
mail auth token matches the mail address of the parent user.
|
||||||
|
|
||||||
|
### request
|
||||||
|
|
||||||
|
see [this JSON schema](/schema/canrecoverpasswordrequest.md)
|
||||||
|
|
||||||
|
### response
|
||||||
|
|
||||||
|
On a invalid request body: HTTP status code 400 Bad Request
|
||||||
|
|
||||||
|
If the mail auth token is invalid/ expired: HTTP status code 401 Unauthorized
|
||||||
|
|
||||||
|
On success: object with the property ``canRecover`` (boolean)
|
||||||
|
|
||||||
|
## POST /parent/recover-parent-password
|
||||||
|
|
||||||
|
Use this to set the password for a user without knowing the old password.
|
||||||
|
|
||||||
|
### request
|
||||||
|
|
||||||
|
see [this JSON schema](../schema/recoverparentpasswordrequest.md)
|
||||||
|
|
||||||
|
### response
|
||||||
|
|
||||||
|
On a invalid request body: HTTP status code 400 Bad Request
|
||||||
|
|
||||||
|
If the mail auth token is invalid/ expired: HTTP status code 401 Unauthorized
|
||||||
|
|
||||||
|
On success: ``{"ok": true}``
|
||||||
|
|
||||||
|
## POST /parent/create-add-device-token
|
||||||
|
|
||||||
|
Use this to create a token which can be used by ``/child/add-device``.
|
||||||
|
|
||||||
|
### request
|
||||||
|
|
||||||
|
see [this JSON schema](../schema/createregisterdevicetokenrequest.md)
|
||||||
|
|
||||||
|
in case of a device used by a parent with disabled password checks, use ``device`` as ``secondPasswordHash``
|
||||||
|
|
||||||
|
### response
|
||||||
|
|
||||||
|
On a invalid request body: HTTP status code 400 Bad Request
|
||||||
|
|
||||||
|
If the device auth token is invalid: HTTP status code 401 Unauthorized
|
||||||
|
|
||||||
|
If the ``secondPasswordHash`` is invalid: HTTP status code 401 Unauthorized
|
||||||
|
|
||||||
|
On success: object with ``token`` and ``deviceId``
|
||||||
|
|
||||||
|
``token`` is the add device token
|
||||||
|
|
||||||
|
``deviceId`` is the device id which the new device will get if it uses the token
|
||||||
|
|
||||||
|
## POST /parent/link-mail-address
|
||||||
|
|
||||||
|
Use this to link a mail address to an existing parent user.
|
||||||
|
|
||||||
|
### request
|
||||||
|
|
||||||
|
see [this JSON schema](../schema/linkparentmailaddressrequest.md)
|
||||||
|
|
||||||
|
### response
|
||||||
|
|
||||||
|
On a invalid request body: HTTP status code 400 Bad Request
|
||||||
|
|
||||||
|
If the device auth token is invalid: HTTP status code 401 Unauthorized
|
||||||
|
|
||||||
|
If the mail auth token is invalid/ expired: HTTP status code 401 Unauthorized
|
||||||
|
|
||||||
|
If there is already a user with the mail address of the mail auth token: HTTP status code 409 Conflict
|
||||||
|
|
||||||
|
If there is no user with the specified ``parentId`` (user id): HTTP status code 409 Conflict
|
||||||
|
|
||||||
|
If there is already a mail address for the user: HTTP status code 409 Conflict
|
||||||
|
|
||||||
|
If the ``parentPasswordSecondHash`` is invalid: HTTP status code 409 Conflict
|
||||||
|
|
||||||
|
On success: ``{"ok": true}``
|
||||||
|
|
||||||
|
## POST /parent/remove-device
|
||||||
|
|
||||||
|
Use this to remove a device from a family.
|
||||||
|
|
||||||
|
### request
|
||||||
|
|
||||||
|
see [this JSON schema](../schema/removedevicerequest.md)
|
||||||
|
|
||||||
|
in case of a device used by a parent with disabled password checks, use ``device`` as ``secondPasswordHash``
|
||||||
|
|
||||||
|
### response
|
||||||
|
|
||||||
|
On a invalid request body: HTTP status code 400 Bad Request
|
||||||
|
|
||||||
|
If the device auth token is invalid: HTTP status code 401 Unauthorized
|
||||||
|
|
||||||
|
If there is no device with the specified ``deviceId``: HTTP status code 409 Conflict
|
||||||
|
|
||||||
|
If the ``secondPasswordHash`` is invalid: HTTP status code 401 Unauthorized
|
||||||
|
|
||||||
|
On success: ``{"ok": true}``
|
53
docs/api/purchase.md
Normal file
53
docs/api/purchase.md
Normal file
|
@ -0,0 +1,53 @@
|
||||||
|
# /purchase
|
||||||
|
|
||||||
|
This endpoint is used for handling purchases from the client.
|
||||||
|
It currently only supports purchases using Google Play in app purchases.
|
||||||
|
|
||||||
|
## see
|
||||||
|
|
||||||
|
- [premium concept](../concept/premium.md)
|
||||||
|
|
||||||
|
## POST /purchase/can-do-purchase
|
||||||
|
|
||||||
|
Use this before a purchase to check if a purchase is possible.
|
||||||
|
|
||||||
|
### request
|
||||||
|
|
||||||
|
see [this JSON schema](../schema/candopurchaserequest.md)
|
||||||
|
|
||||||
|
### response
|
||||||
|
|
||||||
|
On a invalid request body: HTTP status code 400 Bad request
|
||||||
|
|
||||||
|
On a invalid auth token: HTTP status code 401 Unauthorized
|
||||||
|
|
||||||
|
On success: a JSON object with the property ``canDoPurchase`` of the type string
|
||||||
|
|
||||||
|
possible values of ``canDoPurchase``:
|
||||||
|
|
||||||
|
- ``yes``
|
||||||
|
- ``no due to old purchase``
|
||||||
|
- ``no because not supported by the server``
|
||||||
|
|
||||||
|
## POST /purchase/finish-purchase-by-google-play
|
||||||
|
|
||||||
|
Use this to report a purchase to the server/ unlock all features after a purchase
|
||||||
|
using Google Play.
|
||||||
|
|
||||||
|
### request
|
||||||
|
|
||||||
|
see [this JSON schema](../schema/finishpurchasebygoogleplayrequest.md)
|
||||||
|
|
||||||
|
### response
|
||||||
|
|
||||||
|
On a invalid request body: HTTP status code 400 Bad request
|
||||||
|
|
||||||
|
On a invalid auth token: HTTP status code 401 Unauthorized
|
||||||
|
|
||||||
|
On a invalid purchase: HTTP status code 409 Conflict
|
||||||
|
|
||||||
|
On success: ``{"ok": true}``
|
||||||
|
|
||||||
|
### error handling
|
||||||
|
|
||||||
|
- if the purchase was already added (for the same or an other family), then this request is ignored and success is returned
|
117
docs/api/sync.md
Normal file
117
docs/api/sync.md
Normal file
|
@ -0,0 +1,117 @@
|
||||||
|
# /sync
|
||||||
|
|
||||||
|
This endpoint is used by clients for syncing.
|
||||||
|
|
||||||
|
## the sync process
|
||||||
|
|
||||||
|
- the client pushes all actions (eventually in chunks)
|
||||||
|
- all actions are numbered so that the server can ignore it if the client sends an action multiple times (e.g. due to connectivity issues)
|
||||||
|
- in case something goes wrong, the server asks the client to do a full query when pulling the status the next time
|
||||||
|
- the client pulls the status
|
||||||
|
- the client sends a summary of the current status
|
||||||
|
- the server does not send the data which the client already knows
|
||||||
|
- in case the client is unauthorized, then the client checks against /sync/is-device-removed
|
||||||
|
- if it tells the client that it was really removed, then the client resets itself
|
||||||
|
|
||||||
|
## possible sync triggers
|
||||||
|
|
||||||
|
- periodically/ by the time (e.g. every hour, not all 10 seconds)
|
||||||
|
- the [websocket](./websocket.md) for syncing as soon as something was changed by an other client
|
||||||
|
- changes/ actions at the client itself
|
||||||
|
|
||||||
|
## POST /sync/push-actions
|
||||||
|
|
||||||
|
Use this to sync actions to the server.
|
||||||
|
|
||||||
|
### request
|
||||||
|
|
||||||
|
see [this JSON schema](../schema/clientpushchangesrequest.md)
|
||||||
|
|
||||||
|
the encoded actions are stringified JSON objects of one of this schemes:
|
||||||
|
- [serialized app logic action](../schema/serializedapplogicaction.md)
|
||||||
|
- [serialized parent action](../schema/serializedparentaction.md)
|
||||||
|
- [serialized child action](../schema/serializedchildaction.md)
|
||||||
|
|
||||||
|
The request must not contain more than 50 actions. The request may contain less than 50
|
||||||
|
actions.
|
||||||
|
|
||||||
|
The sequence numbers must be a increasing sequence per device.
|
||||||
|
|
||||||
|
#### integrity
|
||||||
|
|
||||||
|
The integrity field of a action may have got one of the following values:
|
||||||
|
|
||||||
|
- an empty string when no user authentication is required/ for app logic actions (e.g. incrementing the used time)
|
||||||
|
- the string ``device`` in case of parent actions if a parent is assigned to the device and asking for the password was disabled
|
||||||
|
- ``sha512(sequence number as string with the base 10 + the device id as string + the hash of the user password using the second salt as string + the encoded action as string)`` for parent and child actions
|
||||||
|
|
||||||
|
In case of a invalid integrity value, the action is ignored and the client is told to do a full sync
|
||||||
|
|
||||||
|
### response
|
||||||
|
|
||||||
|
On a invalid request body: HTTP status code 400 Bad request
|
||||||
|
|
||||||
|
On a invalid auth token: HTTP status code 401 Unauthorized
|
||||||
|
|
||||||
|
On success: JSON object with the property ``shouldDoFullSync`` - example: ``{"shouldDoFullSync": false}``
|
||||||
|
|
||||||
|
### error handling
|
||||||
|
|
||||||
|
If a action has got a invalid ``integrity`` or ``encodedAction``, then only this action
|
||||||
|
is ignored and ``shouldDoFullSync`` will be true.
|
||||||
|
|
||||||
|
## POST /sync/pull-status
|
||||||
|
|
||||||
|
Use this to pull the current status from the server.
|
||||||
|
|
||||||
|
### request
|
||||||
|
|
||||||
|
see [this JSON schema](../schema/clientpullchangesrequest.md)
|
||||||
|
|
||||||
|
### response
|
||||||
|
|
||||||
|
On a invalid request body: HTTP status code 400 Bad request
|
||||||
|
|
||||||
|
On a invalid auth token: HTTP status code 401 Unauthorized
|
||||||
|
|
||||||
|
On success: see [this JSON schema](../schema/serverdatastatus.md)
|
||||||
|
|
||||||
|
## POST /sync/report-removed
|
||||||
|
|
||||||
|
Use this to report that TimeLimit is/ was reset.
|
||||||
|
|
||||||
|
### request
|
||||||
|
|
||||||
|
see [this JSON schema](../schema/requestwithauthtoken.md)
|
||||||
|
|
||||||
|
### response
|
||||||
|
|
||||||
|
On a invalid request body: http status code 400 Bad request
|
||||||
|
|
||||||
|
On a invalid/ unknown auth token: http status code 500 Internal Server Error
|
||||||
|
|
||||||
|
On success: ``{"ok": true}``
|
||||||
|
|
||||||
|
### error handling
|
||||||
|
|
||||||
|
If a removed device reports that it is removed, then it is ignored and handled
|
||||||
|
as success.
|
||||||
|
|
||||||
|
## POST /sync/is-device-removed
|
||||||
|
|
||||||
|
Use this to check if the device was removed.
|
||||||
|
|
||||||
|
Background: This checks if the auth token is in a list of known old auth tokens.
|
||||||
|
This ensures that an empty database at the server does not trigger the client reset feature.
|
||||||
|
|
||||||
|
### request
|
||||||
|
|
||||||
|
see [this JSON schema](../schema/requestwithauthtoken.md)
|
||||||
|
|
||||||
|
### response
|
||||||
|
|
||||||
|
On a invalid request body: http status code 400 bad request
|
||||||
|
|
||||||
|
object with the property ``isDeviceRemoved`` of the type boolean
|
||||||
|
|
||||||
|
example response: ``{"isDeviceRemoved": false}``
|
36
docs/api/websocket.md
Normal file
36
docs/api/websocket.md
Normal file
|
@ -0,0 +1,36 @@
|
||||||
|
# Websocket
|
||||||
|
|
||||||
|
The websocket is used for real time notifications from the server
|
||||||
|
to the client. For this, socket.io is used which internally
|
||||||
|
uses the ``/socket.io`` endpoint. It is highly recommend to only
|
||||||
|
use the websocket transport and to not use the polling transport.
|
||||||
|
|
||||||
|
Upon connecting, the client should emit ``devicelogin`` with one or two parameters.
|
||||||
|
The first parameter must be the device auth token and the second one can be an ack
|
||||||
|
function. After handling the connection, the server calls the ack function.
|
||||||
|
|
||||||
|
Clients should only do one ``devicelogin`` per connection. Doing it multiple
|
||||||
|
times per connection can result in missing events. Invalid auth tokens are ignored/
|
||||||
|
do not receive notifications.
|
||||||
|
|
||||||
|
## events from the server
|
||||||
|
|
||||||
|
### should sync
|
||||||
|
|
||||||
|
The server can emit ``should sync`` with one parameter of the type object.
|
||||||
|
This object has the boolean property ``isImportant``.
|
||||||
|
|
||||||
|
The client should sync after receiving this. If it is not important, then the client
|
||||||
|
can wait until to user opens the UI the next time.
|
||||||
|
|
||||||
|
### sign out
|
||||||
|
|
||||||
|
The server can emit ``sign out`` without any parameters. This tells the device
|
||||||
|
if it is the primary device for a user that it should leave that role if possible.
|
||||||
|
|
||||||
|
see the [primary device concept](../concept/primary-device.md)
|
||||||
|
|
||||||
|
### connected devices
|
||||||
|
|
||||||
|
The server can emit ``connected devices`` with one parameter of the type array of string.
|
||||||
|
This array contains the device ids of the devices which should be shown as connected.
|
37
docs/concept/mail-blackwhitelist.md
Normal file
37
docs/concept/mail-blackwhitelist.md
Normal file
|
@ -0,0 +1,37 @@
|
||||||
|
# Mail (server) black- and whitelist
|
||||||
|
|
||||||
|
## mail server blacklist
|
||||||
|
|
||||||
|
### Problem
|
||||||
|
|
||||||
|
- some mail servers don't accept mails due to their spam filter
|
||||||
|
- users blame timelimit for it although their bad mail service is the problem
|
||||||
|
|
||||||
|
### Solution
|
||||||
|
|
||||||
|
- (external) monitoring
|
||||||
|
- the blacklist
|
||||||
|
|
||||||
|
### Description
|
||||||
|
|
||||||
|
The mail server blacklist is a list of servers to which no sign up mails are sent.
|
||||||
|
But instead of doing nothing, the client is informed about that so that it can tell
|
||||||
|
the user that this mail service is not supported and that he should use a mail address
|
||||||
|
at an other mail service.
|
||||||
|
|
||||||
|
## mail (server) whitelist
|
||||||
|
|
||||||
|
### Problem
|
||||||
|
|
||||||
|
- some users do run private server instances
|
||||||
|
- they do not want that someone else can use their instance
|
||||||
|
|
||||||
|
### Solution
|
||||||
|
|
||||||
|
- the whitelist
|
||||||
|
|
||||||
|
### Description
|
||||||
|
|
||||||
|
The whitelist contains mail servers and/ or mail addresses which should be allowed.
|
||||||
|
Users of mail addresses which are not in the whitelist are informed about that
|
||||||
|
so that they know that it is a private instance and that they can not use it.
|
5
docs/concept/premium.md
Normal file
5
docs/concept/premium.md
Normal file
|
@ -0,0 +1,5 @@
|
||||||
|
## Premium concept
|
||||||
|
|
||||||
|
- some features are locked after some days
|
||||||
|
- unlocking these features again requires a purchase
|
||||||
|
- purchases can be added manually using the [admin API](../api/admin.md)
|
23
docs/concept/primary-device.md
Normal file
23
docs/concept/primary-device.md
Normal file
|
@ -0,0 +1,23 @@
|
||||||
|
# Primary device concept
|
||||||
|
|
||||||
|
One (child) user can be assigned to multiple devices. Without synchronization,
|
||||||
|
this can result in using the time limits once per device and not only once.
|
||||||
|
Due to that, there is (by default) the limitation that a child must select
|
||||||
|
one device for using limited Apps.
|
||||||
|
|
||||||
|
There can be one or zero primary devices. This is required for the primary device
|
||||||
|
switching process and for the initial state.
|
||||||
|
|
||||||
|
## assign process
|
||||||
|
|
||||||
|
- sync
|
||||||
|
- try to assign the user using the [child API](../api/child.md)
|
||||||
|
- if the user is assigned to a different device, request a logout using the [child API](../api/child.md) and retry it
|
||||||
|
- this should not be done in a loop without delays
|
||||||
|
- using the [websocket](./websocket.md) it is possible to get changes without polling
|
||||||
|
- requesting a sign out should be repeated all few seconds
|
||||||
|
|
||||||
|
## unassign process
|
||||||
|
|
||||||
|
- sync
|
||||||
|
- unassign the user using the [child API](../api/child.md)
|
5
docs/concept/status-message.md
Normal file
5
docs/concept/status-message.md
Normal file
|
@ -0,0 +1,5 @@
|
||||||
|
# Status message
|
||||||
|
|
||||||
|
- clients should show the status message if there is one which is not an empty string
|
||||||
|
- can be used to announce server maintenances
|
||||||
|
- can set using the [admin API](../api/admin.md)
|
|
@ -19,6 +19,7 @@
|
||||||
- [SerializedAppLogicAction](./serializedapplogicaction.md) – `https://timelimit.io/SerializedAppLogicAction`
|
- [SerializedAppLogicAction](./serializedapplogicaction.md) – `https://timelimit.io/SerializedAppLogicAction`
|
||||||
- [SerializedChildAction](./serializedchildaction.md) – `https://timelimit.io/SerializedChildAction`
|
- [SerializedChildAction](./serializedchildaction.md) – `https://timelimit.io/SerializedChildAction`
|
||||||
- [SerializedParentAction](./serializedparentaction.md) – `https://timelimit.io/SerializedParentAction`
|
- [SerializedParentAction](./serializedparentaction.md) – `https://timelimit.io/SerializedParentAction`
|
||||||
|
- [ServerDataStatus](./serverdatastatus.md) – `https://timelimit.io/ServerDataStatus`
|
||||||
- [SignInByMailCodeRequest](./signinbymailcoderequest.md) – `https://timelimit.io/SignInByMailCodeRequest`
|
- [SignInByMailCodeRequest](./signinbymailcoderequest.md) – `https://timelimit.io/SignInByMailCodeRequest`
|
||||||
- [SignIntoFamilyRequest](./signintofamilyrequest.md) – `https://timelimit.io/SignIntoFamilyRequest`
|
- [SignIntoFamilyRequest](./signintofamilyrequest.md) – `https://timelimit.io/SignIntoFamilyRequest`
|
||||||
- [UpdatePrimaryDeviceRequest](./updateprimarydevicerequest.md) – `https://timelimit.io/UpdatePrimaryDeviceRequest`
|
- [UpdatePrimaryDeviceRequest](./updateprimarydevicerequest.md) – `https://timelimit.io/UpdatePrimaryDeviceRequest`
|
||||||
|
@ -38,22 +39,22 @@
|
||||||
- [NewDeviceInfo](./signintofamilyrequest-properties-newdeviceinfo.md) – `https://timelimit.io/SignIntoFamilyRequest#/properties/parentDevice`
|
- [NewDeviceInfo](./signintofamilyrequest-properties-newdeviceinfo.md) – `https://timelimit.io/SignIntoFamilyRequest#/properties/parentDevice`
|
||||||
- [NewDeviceInfo](./createfamilybymailtokenrequest-definitions-newdeviceinfo.md) – `https://timelimit.io/CreateFamilyByMailTokenRequest#/definitions/NewDeviceInfo`
|
- [NewDeviceInfo](./createfamilybymailtokenrequest-definitions-newdeviceinfo.md) – `https://timelimit.io/CreateFamilyByMailTokenRequest#/definitions/NewDeviceInfo`
|
||||||
- [NewDeviceInfo](./createfamilybymailtokenrequest-properties-newdeviceinfo.md) – `https://timelimit.io/CreateFamilyByMailTokenRequest#/properties/parentDevice`
|
- [NewDeviceInfo](./createfamilybymailtokenrequest-properties-newdeviceinfo.md) – `https://timelimit.io/CreateFamilyByMailTokenRequest#/properties/parentDevice`
|
||||||
- [ParentPassword](./serializedchildaction-definitions-serializedchildchangepasswordaction-properties-parentpassword.md) – `https://timelimit.io/SerializedChildAction#/definitions/SerializedChildChangePasswordAction/properties/password`
|
- [ParentPassword](./serializedparentaction-definitions-serializedsetchildpasswordaction-properties-parentpassword.md) – `https://timelimit.io/SerializedParentAction#/definitions/SerializedSetChildPasswordAction/properties/newPassword`
|
||||||
- [ParentPassword](./createfamilybymailtokenrequest-properties-parentpassword.md) – `https://timelimit.io/CreateFamilyByMailTokenRequest#/properties/parentPassword`
|
- [ParentPassword](./createfamilybymailtokenrequest-properties-parentpassword.md) – `https://timelimit.io/CreateFamilyByMailTokenRequest#/properties/parentPassword`
|
||||||
- [ParentPassword](./recoverparentpasswordrequest-properties-parentpassword.md) – `https://timelimit.io/RecoverParentPasswordRequest#/properties/password`
|
- [ParentPassword](./recoverparentpasswordrequest-properties-parentpassword.md) – `https://timelimit.io/RecoverParentPasswordRequest#/properties/password`
|
||||||
- [ParentPassword](./recoverparentpasswordrequest-definitions-parentpassword.md) – `https://timelimit.io/RecoverParentPasswordRequest#/definitions/ParentPassword`
|
- [ParentPassword](./recoverparentpasswordrequest-definitions-parentpassword.md) – `https://timelimit.io/RecoverParentPasswordRequest#/definitions/ParentPassword`
|
||||||
- [ParentPassword](./serializedparentaction-definitions-serializedsetchildpasswordaction-properties-parentpassword.md) – `https://timelimit.io/SerializedParentAction#/definitions/SerializedSetChildPasswordAction/properties/newPassword`
|
- [ParentPassword](./serializedparentaction-definitions-serializedsetchildpasswordaction-properties-parentpassword.md) – `https://timelimit.io/SerializedParentAction#/definitions/SerializedSetChildPasswordAction/properties/newPassword`
|
||||||
|
- [ParentPassword](./serializedparentaction-definitions-parentpassword.md) – `https://timelimit.io/SerializedParentAction#/definitions/ParentPassword`
|
||||||
- [ParentPassword](./serializedparentaction-definitions-serializedadduseraction-properties-parentpassword.md) – `https://timelimit.io/SerializedParentAction#/definitions/SerializedAddUserAction/properties/password`
|
- [ParentPassword](./serializedparentaction-definitions-serializedadduseraction-properties-parentpassword.md) – `https://timelimit.io/SerializedParentAction#/definitions/SerializedAddUserAction/properties/password`
|
||||||
- [ParentPassword](./createfamilybymailtokenrequest-definitions-parentpassword.md) – `https://timelimit.io/CreateFamilyByMailTokenRequest#/definitions/ParentPassword`
|
- [ParentPassword](./createfamilybymailtokenrequest-definitions-parentpassword.md) – `https://timelimit.io/CreateFamilyByMailTokenRequest#/definitions/ParentPassword`
|
||||||
- [ParentPassword](./serializedparentaction-definitions-parentpassword.md) – `https://timelimit.io/SerializedParentAction#/definitions/ParentPassword`
|
|
||||||
- [ParentPassword](./serializedparentaction-definitions-serializedsetchildpasswordaction-properties-parentpassword.md) – `https://timelimit.io/SerializedParentAction#/definitions/SerializedSetChildPasswordAction/properties/newPassword`
|
|
||||||
- [ParentPassword](./serializedparentaction-definitions-serializedadduseraction-properties-parentpassword.md) – `https://timelimit.io/SerializedParentAction#/definitions/SerializedAddUserAction/properties/password`
|
- [ParentPassword](./serializedparentaction-definitions-serializedadduseraction-properties-parentpassword.md) – `https://timelimit.io/SerializedParentAction#/definitions/SerializedAddUserAction/properties/password`
|
||||||
- [ParentPassword](./serializedchildaction-definitions-parentpassword.md) – `https://timelimit.io/SerializedChildAction#/definitions/ParentPassword`
|
- [ParentPassword](./serializedchildaction-definitions-parentpassword.md) – `https://timelimit.io/SerializedChildAction#/definitions/ParentPassword`
|
||||||
- [ParentPassword](./serializedchildaction-definitions-serializedchildchangepasswordaction-properties-parentpassword.md) – `https://timelimit.io/SerializedChildAction#/definitions/SerializedChildChangePasswordAction/properties/password`
|
- [ParentPassword](./serializedchildaction-definitions-serializedchildchangepasswordaction-properties-parentpassword.md) – `https://timelimit.io/SerializedChildAction#/definitions/SerializedChildChangePasswordAction/properties/password`
|
||||||
- [SerialiezdTriedDisablingDeviceAdminAction](./serializedapplogicaction-anyof-serialiezdtrieddisablingdeviceadminaction.md) – `https://timelimit.io/SerializedAppLogicAction#/anyOf/5`
|
- [ParentPassword](./serializedchildaction-definitions-serializedchildchangepasswordaction-properties-parentpassword.md) – `https://timelimit.io/SerializedChildAction#/definitions/SerializedChildChangePasswordAction/properties/password`
|
||||||
- [SerialiezdTriedDisablingDeviceAdminAction](./serializedapplogicaction-definitions-serialiezdtrieddisablingdeviceadminaction.md) – `https://timelimit.io/SerializedAppLogicAction#/definitions/SerialiezdTriedDisablingDeviceAdminAction`
|
- [SerialiezdTriedDisablingDeviceAdminAction](./serializedapplogicaction-definitions-serialiezdtrieddisablingdeviceadminaction.md) – `https://timelimit.io/SerializedAppLogicAction#/definitions/SerialiezdTriedDisablingDeviceAdminAction`
|
||||||
- [SerialiizedUpdateNetworkTimeVerificationAction](./serializedparentaction-definitions-serialiizedupdatenetworktimeverificationaction.md) – `https://timelimit.io/SerializedParentAction#/definitions/SerialiizedUpdateNetworkTimeVerificationAction`
|
- [SerialiezdTriedDisablingDeviceAdminAction](./serializedapplogicaction-anyof-serialiezdtrieddisablingdeviceadminaction.md) – `https://timelimit.io/SerializedAppLogicAction#/anyOf/5`
|
||||||
- [SerialiizedUpdateNetworkTimeVerificationAction](./serializedparentaction-anyof-serialiizedupdatenetworktimeverificationaction.md) – `https://timelimit.io/SerializedParentAction#/anyOf/35`
|
- [SerialiizedUpdateNetworkTimeVerificationAction](./serializedparentaction-anyof-serialiizedupdatenetworktimeverificationaction.md) – `https://timelimit.io/SerializedParentAction#/anyOf/35`
|
||||||
|
- [SerialiizedUpdateNetworkTimeVerificationAction](./serializedparentaction-definitions-serialiizedupdatenetworktimeverificationaction.md) – `https://timelimit.io/SerializedParentAction#/definitions/SerialiizedUpdateNetworkTimeVerificationAction`
|
||||||
- [SerializedAddCategoryAppsAction](./serializedparentaction-anyof-serializedaddcategoryappsaction.md) – `https://timelimit.io/SerializedParentAction#/anyOf/0`
|
- [SerializedAddCategoryAppsAction](./serializedparentaction-anyof-serializedaddcategoryappsaction.md) – `https://timelimit.io/SerializedParentAction#/anyOf/0`
|
||||||
- [SerializedAddCategoryAppsAction](./serializedparentaction-definitions-serializedaddcategoryappsaction.md) – `https://timelimit.io/SerializedParentAction#/definitions/SerializedAddCategoryAppsAction`
|
- [SerializedAddCategoryAppsAction](./serializedparentaction-definitions-serializedaddcategoryappsaction.md) – `https://timelimit.io/SerializedParentAction#/definitions/SerializedAddCategoryAppsAction`
|
||||||
- [SerializedAddInstalledAppsAction](./serializedapplogicaction-definitions-serializedaddinstalledappsaction.md) – `https://timelimit.io/SerializedAppLogicAction#/definitions/SerializedAddInstalledAppsAction`
|
- [SerializedAddInstalledAppsAction](./serializedapplogicaction-definitions-serializedaddinstalledappsaction.md) – `https://timelimit.io/SerializedAppLogicAction#/definitions/SerializedAddInstalledAppsAction`
|
||||||
|
@ -62,19 +63,22 @@
|
||||||
- [SerializedAddUsedTimeAction](./serializedapplogicaction-anyof-serializedaddusedtimeaction.md) – `https://timelimit.io/SerializedAppLogicAction#/anyOf/1`
|
- [SerializedAddUsedTimeAction](./serializedapplogicaction-anyof-serializedaddusedtimeaction.md) – `https://timelimit.io/SerializedAppLogicAction#/anyOf/1`
|
||||||
- [SerializedAddUsedTimeActionVersion2](./serializedapplogicaction-anyof-serializedaddusedtimeactionversion2.md) – `https://timelimit.io/SerializedAppLogicAction#/anyOf/2`
|
- [SerializedAddUsedTimeActionVersion2](./serializedapplogicaction-anyof-serializedaddusedtimeactionversion2.md) – `https://timelimit.io/SerializedAppLogicAction#/anyOf/2`
|
||||||
- [SerializedAddUsedTimeActionVersion2](./serializedapplogicaction-definitions-serializedaddusedtimeactionversion2.md) – `https://timelimit.io/SerializedAppLogicAction#/definitions/SerializedAddUsedTimeActionVersion2`
|
- [SerializedAddUsedTimeActionVersion2](./serializedapplogicaction-definitions-serializedaddusedtimeactionversion2.md) – `https://timelimit.io/SerializedAppLogicAction#/definitions/SerializedAddUsedTimeActionVersion2`
|
||||||
- [SerializedAddUserAction](./serializedparentaction-definitions-serializedadduseraction.md) – `https://timelimit.io/SerializedParentAction#/definitions/SerializedAddUserAction`
|
|
||||||
- [SerializedAddUserAction](./serializedparentaction-anyof-serializedadduseraction.md) – `https://timelimit.io/SerializedParentAction#/anyOf/1`
|
- [SerializedAddUserAction](./serializedparentaction-anyof-serializedadduseraction.md) – `https://timelimit.io/SerializedParentAction#/anyOf/1`
|
||||||
|
- [SerializedAddUserAction](./serializedparentaction-definitions-serializedadduseraction.md) – `https://timelimit.io/SerializedParentAction#/definitions/SerializedAddUserAction`
|
||||||
|
- [SerializedAppActivityItem](./serverdatastatus-definitions-serverinstalledappsdata-properties-activities-serializedappactivityitem.md) – `https://timelimit.io/ServerDataStatus#/definitions/ServerInstalledAppsData/properties/activities/items`
|
||||||
|
- [SerializedAppActivityItem](./serializedapplogicaction-definitions-serializedupdateappactivitiesaction-properties-updatedoradded-serializedappactivityitem.md) – `https://timelimit.io/SerializedAppLogicAction#/definitions/SerializedUpdateAppActivitiesAction/properties/updatedOrAdded/items`
|
||||||
|
- [SerializedAppActivityItem](./serverdatastatus-definitions-serverinstalledappsdata-properties-activities-serializedappactivityitem.md) – `https://timelimit.io/ServerDataStatus#/definitions/ServerInstalledAppsData/properties/activities/items`
|
||||||
|
- [SerializedAppActivityItem](./serverdatastatus-definitions-serializedappactivityitem.md) – `https://timelimit.io/ServerDataStatus#/definitions/SerializedAppActivityItem`
|
||||||
- [SerializedAppActivityItem](./serializedapplogicaction-definitions-serializedupdateappactivitiesaction-properties-updatedoradded-serializedappactivityitem.md) – `https://timelimit.io/SerializedAppLogicAction#/definitions/SerializedUpdateAppActivitiesAction/properties/updatedOrAdded/items`
|
- [SerializedAppActivityItem](./serializedapplogicaction-definitions-serializedupdateappactivitiesaction-properties-updatedoradded-serializedappactivityitem.md) – `https://timelimit.io/SerializedAppLogicAction#/definitions/SerializedUpdateAppActivitiesAction/properties/updatedOrAdded/items`
|
||||||
- [SerializedAppActivityItem](./serializedapplogicaction-definitions-serializedappactivityitem.md) – `https://timelimit.io/SerializedAppLogicAction#/definitions/SerializedAppActivityItem`
|
- [SerializedAppActivityItem](./serializedapplogicaction-definitions-serializedappactivityitem.md) – `https://timelimit.io/SerializedAppLogicAction#/definitions/SerializedAppActivityItem`
|
||||||
- [SerializedAppActivityItem](./serializedapplogicaction-definitions-serializedupdateappactivitiesaction-properties-updatedoradded-serializedappactivityitem.md) – `https://timelimit.io/SerializedAppLogicAction#/definitions/SerializedUpdateAppActivitiesAction/properties/updatedOrAdded/items`
|
|
||||||
- [SerializedChangeParentPasswordAction](./serializedparentaction-anyof-serializedchangeparentpasswordaction.md) – `https://timelimit.io/SerializedParentAction#/anyOf/2`
|
- [SerializedChangeParentPasswordAction](./serializedparentaction-anyof-serializedchangeparentpasswordaction.md) – `https://timelimit.io/SerializedParentAction#/anyOf/2`
|
||||||
- [SerializedChangeParentPasswordAction](./serializedparentaction-definitions-serializedchangeparentpasswordaction.md) – `https://timelimit.io/SerializedParentAction#/definitions/SerializedChangeParentPasswordAction`
|
- [SerializedChangeParentPasswordAction](./serializedparentaction-definitions-serializedchangeparentpasswordaction.md) – `https://timelimit.io/SerializedParentAction#/definitions/SerializedChangeParentPasswordAction`
|
||||||
- [SerializedChildChangePasswordAction](./serializedchildaction-anyof-serializedchildchangepasswordaction.md) – `https://timelimit.io/SerializedChildAction#/anyOf/0`
|
|
||||||
- [SerializedChildChangePasswordAction](./serializedchildaction-definitions-serializedchildchangepasswordaction.md) – `https://timelimit.io/SerializedChildAction#/definitions/SerializedChildChangePasswordAction`
|
- [SerializedChildChangePasswordAction](./serializedchildaction-definitions-serializedchildchangepasswordaction.md) – `https://timelimit.io/SerializedChildAction#/definitions/SerializedChildChangePasswordAction`
|
||||||
- [SerializedChildSignInAction](./serializedchildaction-anyof-serializedchildsigninaction.md) – `https://timelimit.io/SerializedChildAction#/anyOf/1`
|
- [SerializedChildChangePasswordAction](./serializedchildaction-anyof-serializedchildchangepasswordaction.md) – `https://timelimit.io/SerializedChildAction#/anyOf/0`
|
||||||
- [SerializedChildSignInAction](./serializedchildaction-definitions-serializedchildsigninaction.md) – `https://timelimit.io/SerializedChildAction#/definitions/SerializedChildSignInAction`
|
- [SerializedChildSignInAction](./serializedchildaction-definitions-serializedchildsigninaction.md) – `https://timelimit.io/SerializedChildAction#/definitions/SerializedChildSignInAction`
|
||||||
- [SerializedCreateCategoryAction](./serializedparentaction-definitions-serializedcreatecategoryaction.md) – `https://timelimit.io/SerializedParentAction#/definitions/SerializedCreateCategoryAction`
|
- [SerializedChildSignInAction](./serializedchildaction-anyof-serializedchildsigninaction.md) – `https://timelimit.io/SerializedChildAction#/anyOf/1`
|
||||||
- [SerializedCreateCategoryAction](./serializedparentaction-anyof-serializedcreatecategoryaction.md) – `https://timelimit.io/SerializedParentAction#/anyOf/3`
|
- [SerializedCreateCategoryAction](./serializedparentaction-anyof-serializedcreatecategoryaction.md) – `https://timelimit.io/SerializedParentAction#/anyOf/3`
|
||||||
|
- [SerializedCreateCategoryAction](./serializedparentaction-definitions-serializedcreatecategoryaction.md) – `https://timelimit.io/SerializedParentAction#/definitions/SerializedCreateCategoryAction`
|
||||||
- [SerializedCreateTimelimtRuleAction](./serializedparentaction-anyof-serializedcreatetimelimtruleaction.md) – `https://timelimit.io/SerializedParentAction#/anyOf/4`
|
- [SerializedCreateTimelimtRuleAction](./serializedparentaction-anyof-serializedcreatetimelimtruleaction.md) – `https://timelimit.io/SerializedParentAction#/anyOf/4`
|
||||||
- [SerializedCreateTimelimtRuleAction](./serializedparentaction-definitions-serializedcreatetimelimtruleaction.md) – `https://timelimit.io/SerializedParentAction#/definitions/SerializedCreateTimelimtRuleAction`
|
- [SerializedCreateTimelimtRuleAction](./serializedparentaction-definitions-serializedcreatetimelimtruleaction.md) – `https://timelimit.io/SerializedParentAction#/definitions/SerializedCreateTimelimtRuleAction`
|
||||||
- [SerializedDeleteCategoryAction](./serializedparentaction-anyof-serializeddeletecategoryaction.md) – `https://timelimit.io/SerializedParentAction#/anyOf/5`
|
- [SerializedDeleteCategoryAction](./serializedparentaction-anyof-serializeddeletecategoryaction.md) – `https://timelimit.io/SerializedParentAction#/anyOf/5`
|
||||||
|
@ -83,52 +87,55 @@
|
||||||
- [SerializedDeleteTimeLimitRuleAction](./serializedparentaction-definitions-serializeddeletetimelimitruleaction.md) – `https://timelimit.io/SerializedParentAction#/definitions/SerializedDeleteTimeLimitRuleAction`
|
- [SerializedDeleteTimeLimitRuleAction](./serializedparentaction-definitions-serializeddeletetimelimitruleaction.md) – `https://timelimit.io/SerializedParentAction#/definitions/SerializedDeleteTimeLimitRuleAction`
|
||||||
- [SerializedIgnoreManipulationAction](./serializedparentaction-anyof-serializedignoremanipulationaction.md) – `https://timelimit.io/SerializedParentAction#/anyOf/7`
|
- [SerializedIgnoreManipulationAction](./serializedparentaction-anyof-serializedignoremanipulationaction.md) – `https://timelimit.io/SerializedParentAction#/anyOf/7`
|
||||||
- [SerializedIgnoreManipulationAction](./serializedparentaction-definitions-serializedignoremanipulationaction.md) – `https://timelimit.io/SerializedParentAction#/definitions/SerializedIgnoreManipulationAction`
|
- [SerializedIgnoreManipulationAction](./serializedparentaction-definitions-serializedignoremanipulationaction.md) – `https://timelimit.io/SerializedParentAction#/definitions/SerializedIgnoreManipulationAction`
|
||||||
- [SerializedIncrementCategoryExtraTimeAction](./serializedparentaction-definitions-serializedincrementcategoryextratimeaction.md) – `https://timelimit.io/SerializedParentAction#/definitions/SerializedIncrementCategoryExtraTimeAction`
|
|
||||||
- [SerializedIncrementCategoryExtraTimeAction](./serializedparentaction-anyof-serializedincrementcategoryextratimeaction.md) – `https://timelimit.io/SerializedParentAction#/anyOf/8`
|
- [SerializedIncrementCategoryExtraTimeAction](./serializedparentaction-anyof-serializedincrementcategoryextratimeaction.md) – `https://timelimit.io/SerializedParentAction#/anyOf/8`
|
||||||
- [SerializedInstalledApp](./serializedapplogicaction-definitions-serializedaddinstalledappsaction-properties-apps-serializedinstalledapp.md) – `https://timelimit.io/SerializedAppLogicAction#/definitions/SerializedAddInstalledAppsAction/properties/apps/items`
|
- [SerializedIncrementCategoryExtraTimeAction](./serializedparentaction-definitions-serializedincrementcategoryextratimeaction.md) – `https://timelimit.io/SerializedParentAction#/definitions/SerializedIncrementCategoryExtraTimeAction`
|
||||||
- [SerializedInstalledApp](./serializedapplogicaction-definitions-serializedinstalledapp.md) – `https://timelimit.io/SerializedAppLogicAction#/definitions/SerializedInstalledApp`
|
- [SerializedInstalledApp](./serializedapplogicaction-definitions-serializedinstalledapp.md) – `https://timelimit.io/SerializedAppLogicAction#/definitions/SerializedInstalledApp`
|
||||||
|
- [SerializedInstalledApp](./serverdatastatus-definitions-serializedinstalledapp.md) – `https://timelimit.io/ServerDataStatus#/definitions/SerializedInstalledApp`
|
||||||
- [SerializedInstalledApp](./serializedapplogicaction-definitions-serializedaddinstalledappsaction-properties-apps-serializedinstalledapp.md) – `https://timelimit.io/SerializedAppLogicAction#/definitions/SerializedAddInstalledAppsAction/properties/apps/items`
|
- [SerializedInstalledApp](./serializedapplogicaction-definitions-serializedaddinstalledappsaction-properties-apps-serializedinstalledapp.md) – `https://timelimit.io/SerializedAppLogicAction#/definitions/SerializedAddInstalledAppsAction/properties/apps/items`
|
||||||
- [SerializedRemoveCategoryAppsAction](./serializedparentaction-definitions-serializedremovecategoryappsaction.md) – `https://timelimit.io/SerializedParentAction#/definitions/SerializedRemoveCategoryAppsAction`
|
- [SerializedInstalledApp](./serializedapplogicaction-definitions-serializedaddinstalledappsaction-properties-apps-serializedinstalledapp.md) – `https://timelimit.io/SerializedAppLogicAction#/definitions/SerializedAddInstalledAppsAction/properties/apps/items`
|
||||||
|
- [SerializedInstalledApp](./serverdatastatus-definitions-serverinstalledappsdata-properties-apps-serializedinstalledapp.md) – `https://timelimit.io/ServerDataStatus#/definitions/ServerInstalledAppsData/properties/apps/items`
|
||||||
|
- [SerializedInstalledApp](./serverdatastatus-definitions-serverinstalledappsdata-properties-apps-serializedinstalledapp.md) – `https://timelimit.io/ServerDataStatus#/definitions/ServerInstalledAppsData/properties/apps/items`
|
||||||
- [SerializedRemoveCategoryAppsAction](./serializedparentaction-anyof-serializedremovecategoryappsaction.md) – `https://timelimit.io/SerializedParentAction#/anyOf/9`
|
- [SerializedRemoveCategoryAppsAction](./serializedparentaction-anyof-serializedremovecategoryappsaction.md) – `https://timelimit.io/SerializedParentAction#/anyOf/9`
|
||||||
|
- [SerializedRemoveCategoryAppsAction](./serializedparentaction-definitions-serializedremovecategoryappsaction.md) – `https://timelimit.io/SerializedParentAction#/definitions/SerializedRemoveCategoryAppsAction`
|
||||||
- [SerializedRemoveInstalledAppsAction](./serializedapplogicaction-definitions-serializedremoveinstalledappsaction.md) – `https://timelimit.io/SerializedAppLogicAction#/definitions/SerializedRemoveInstalledAppsAction`
|
- [SerializedRemoveInstalledAppsAction](./serializedapplogicaction-definitions-serializedremoveinstalledappsaction.md) – `https://timelimit.io/SerializedAppLogicAction#/definitions/SerializedRemoveInstalledAppsAction`
|
||||||
- [SerializedRemoveInstalledAppsAction](./serializedapplogicaction-anyof-serializedremoveinstalledappsaction.md) – `https://timelimit.io/SerializedAppLogicAction#/anyOf/3`
|
- [SerializedRemoveInstalledAppsAction](./serializedapplogicaction-anyof-serializedremoveinstalledappsaction.md) – `https://timelimit.io/SerializedAppLogicAction#/anyOf/3`
|
||||||
- [SerializedRemoveUserAction](./serializedparentaction-definitions-serializedremoveuseraction.md) – `https://timelimit.io/SerializedParentAction#/definitions/SerializedRemoveUserAction`
|
- [SerializedRemoveUserAction](./serializedparentaction-definitions-serializedremoveuseraction.md) – `https://timelimit.io/SerializedParentAction#/definitions/SerializedRemoveUserAction`
|
||||||
- [SerializedRemoveUserAction](./serializedparentaction-anyof-serializedremoveuseraction.md) – `https://timelimit.io/SerializedParentAction#/anyOf/10`
|
- [SerializedRemoveUserAction](./serializedparentaction-anyof-serializedremoveuseraction.md) – `https://timelimit.io/SerializedParentAction#/anyOf/10`
|
||||||
- [SerializedRenameChildAction](./serializedparentaction-definitions-serializedrenamechildaction.md) – `https://timelimit.io/SerializedParentAction#/definitions/SerializedRenameChildAction`
|
- [SerializedRenameChildAction](./serializedparentaction-definitions-serializedrenamechildaction.md) – `https://timelimit.io/SerializedParentAction#/definitions/SerializedRenameChildAction`
|
||||||
- [SerializedRenameChildAction](./serializedparentaction-anyof-serializedrenamechildaction.md) – `https://timelimit.io/SerializedParentAction#/anyOf/11`
|
- [SerializedRenameChildAction](./serializedparentaction-anyof-serializedrenamechildaction.md) – `https://timelimit.io/SerializedParentAction#/anyOf/11`
|
||||||
- [SerializedResetParentBlockedTimesAction](./serializedparentaction-definitions-serializedresetparentblockedtimesaction.md) – `https://timelimit.io/SerializedParentAction#/definitions/SerializedResetParentBlockedTimesAction`
|
|
||||||
- [SerializedResetParentBlockedTimesAction](./serializedparentaction-anyof-serializedresetparentblockedtimesaction.md) – `https://timelimit.io/SerializedParentAction#/anyOf/12`
|
- [SerializedResetParentBlockedTimesAction](./serializedparentaction-anyof-serializedresetparentblockedtimesaction.md) – `https://timelimit.io/SerializedParentAction#/anyOf/12`
|
||||||
|
- [SerializedResetParentBlockedTimesAction](./serializedparentaction-definitions-serializedresetparentblockedtimesaction.md) – `https://timelimit.io/SerializedParentAction#/definitions/SerializedResetParentBlockedTimesAction`
|
||||||
- [SerializedSetCategoryExtraTimeAction](./serializedparentaction-definitions-serializedsetcategoryextratimeaction.md) – `https://timelimit.io/SerializedParentAction#/definitions/SerializedSetCategoryExtraTimeAction`
|
- [SerializedSetCategoryExtraTimeAction](./serializedparentaction-definitions-serializedsetcategoryextratimeaction.md) – `https://timelimit.io/SerializedParentAction#/definitions/SerializedSetCategoryExtraTimeAction`
|
||||||
- [SerializedSetCategoryExtraTimeAction](./serializedparentaction-anyof-serializedsetcategoryextratimeaction.md) – `https://timelimit.io/SerializedParentAction#/anyOf/13`
|
- [SerializedSetCategoryExtraTimeAction](./serializedparentaction-anyof-serializedsetcategoryextratimeaction.md) – `https://timelimit.io/SerializedParentAction#/anyOf/13`
|
||||||
- [SerializedSetCategoryForUnassignedAppsAction](./serializedparentaction-definitions-serializedsetcategoryforunassignedappsaction.md) – `https://timelimit.io/SerializedParentAction#/definitions/SerializedSetCategoryForUnassignedAppsAction`
|
- [SerializedSetCategoryForUnassignedAppsAction](./serializedparentaction-definitions-serializedsetcategoryforunassignedappsaction.md) – `https://timelimit.io/SerializedParentAction#/definitions/SerializedSetCategoryForUnassignedAppsAction`
|
||||||
- [SerializedSetCategoryForUnassignedAppsAction](./serializedparentaction-anyof-serializedsetcategoryforunassignedappsaction.md) – `https://timelimit.io/SerializedParentAction#/anyOf/14`
|
- [SerializedSetCategoryForUnassignedAppsAction](./serializedparentaction-anyof-serializedsetcategoryforunassignedappsaction.md) – `https://timelimit.io/SerializedParentAction#/anyOf/14`
|
||||||
- [SerializedSetChildPasswordAction](./serializedparentaction-anyof-serializedsetchildpasswordaction.md) – `https://timelimit.io/SerializedParentAction#/anyOf/15`
|
- [SerializedSetChildPasswordAction](./serializedparentaction-anyof-serializedsetchildpasswordaction.md) – `https://timelimit.io/SerializedParentAction#/anyOf/15`
|
||||||
- [SerializedSetChildPasswordAction](./serializedparentaction-definitions-serializedsetchildpasswordaction.md) – `https://timelimit.io/SerializedParentAction#/definitions/SerializedSetChildPasswordAction`
|
- [SerializedSetChildPasswordAction](./serializedparentaction-definitions-serializedsetchildpasswordaction.md) – `https://timelimit.io/SerializedParentAction#/definitions/SerializedSetChildPasswordAction`
|
||||||
- [SerializedSetConsiderRebootManipulationAction](./serializedparentaction-anyof-serializedsetconsiderrebootmanipulationaction.md) – `https://timelimit.io/SerializedParentAction#/anyOf/16`
|
|
||||||
- [SerializedSetConsiderRebootManipulationAction](./serializedparentaction-definitions-serializedsetconsiderrebootmanipulationaction.md) – `https://timelimit.io/SerializedParentAction#/definitions/SerializedSetConsiderRebootManipulationAction`
|
- [SerializedSetConsiderRebootManipulationAction](./serializedparentaction-definitions-serializedsetconsiderrebootmanipulationaction.md) – `https://timelimit.io/SerializedParentAction#/definitions/SerializedSetConsiderRebootManipulationAction`
|
||||||
- [SerializedSetDeviceDefaultUserAction](./serializedparentaction-definitions-serializedsetdevicedefaultuseraction.md) – `https://timelimit.io/SerializedParentAction#/definitions/SerializedSetDeviceDefaultUserAction`
|
- [SerializedSetConsiderRebootManipulationAction](./serializedparentaction-anyof-serializedsetconsiderrebootmanipulationaction.md) – `https://timelimit.io/SerializedParentAction#/anyOf/16`
|
||||||
- [SerializedSetDeviceDefaultUserAction](./serializedparentaction-anyof-serializedsetdevicedefaultuseraction.md) – `https://timelimit.io/SerializedParentAction#/anyOf/17`
|
- [SerializedSetDeviceDefaultUserAction](./serializedparentaction-anyof-serializedsetdevicedefaultuseraction.md) – `https://timelimit.io/SerializedParentAction#/anyOf/17`
|
||||||
- [SerializedSetDeviceDefaultUserTimeoutAction](./serializedparentaction-anyof-serializedsetdevicedefaultusertimeoutaction.md) – `https://timelimit.io/SerializedParentAction#/anyOf/18`
|
- [SerializedSetDeviceDefaultUserAction](./serializedparentaction-definitions-serializedsetdevicedefaultuseraction.md) – `https://timelimit.io/SerializedParentAction#/definitions/SerializedSetDeviceDefaultUserAction`
|
||||||
- [SerializedSetDeviceDefaultUserTimeoutAction](./serializedparentaction-definitions-serializedsetdevicedefaultusertimeoutaction.md) – `https://timelimit.io/SerializedParentAction#/definitions/SerializedSetDeviceDefaultUserTimeoutAction`
|
- [SerializedSetDeviceDefaultUserTimeoutAction](./serializedparentaction-definitions-serializedsetdevicedefaultusertimeoutaction.md) – `https://timelimit.io/SerializedParentAction#/definitions/SerializedSetDeviceDefaultUserTimeoutAction`
|
||||||
|
- [SerializedSetDeviceDefaultUserTimeoutAction](./serializedparentaction-anyof-serializedsetdevicedefaultusertimeoutaction.md) – `https://timelimit.io/SerializedParentAction#/anyOf/18`
|
||||||
- [SerializedSetDeviceUserAction](./serializedparentaction-definitions-serializedsetdeviceuseraction.md) – `https://timelimit.io/SerializedParentAction#/definitions/SerializedSetDeviceUserAction`
|
- [SerializedSetDeviceUserAction](./serializedparentaction-definitions-serializedsetdeviceuseraction.md) – `https://timelimit.io/SerializedParentAction#/definitions/SerializedSetDeviceUserAction`
|
||||||
- [SerializedSetDeviceUserAction](./serializedparentaction-anyof-serializedsetdeviceuseraction.md) – `https://timelimit.io/SerializedParentAction#/anyOf/19`
|
- [SerializedSetDeviceUserAction](./serializedparentaction-anyof-serializedsetdeviceuseraction.md) – `https://timelimit.io/SerializedParentAction#/anyOf/19`
|
||||||
- [SerializedSetKeepSignedInAction](./serializedparentaction-anyof-serializedsetkeepsignedinaction.md) – `https://timelimit.io/SerializedParentAction#/anyOf/20`
|
|
||||||
- [SerializedSetKeepSignedInAction](./serializedparentaction-definitions-serializedsetkeepsignedinaction.md) – `https://timelimit.io/SerializedParentAction#/definitions/SerializedSetKeepSignedInAction`
|
- [SerializedSetKeepSignedInAction](./serializedparentaction-definitions-serializedsetkeepsignedinaction.md) – `https://timelimit.io/SerializedParentAction#/definitions/SerializedSetKeepSignedInAction`
|
||||||
- [SerializedSetParentCategoryAction](./serializedparentaction-definitions-serializedsetparentcategoryaction.md) – `https://timelimit.io/SerializedParentAction#/definitions/SerializedSetParentCategoryAction`
|
- [SerializedSetKeepSignedInAction](./serializedparentaction-anyof-serializedsetkeepsignedinaction.md) – `https://timelimit.io/SerializedParentAction#/anyOf/20`
|
||||||
- [SerializedSetParentCategoryAction](./serializedparentaction-anyof-serializedsetparentcategoryaction.md) – `https://timelimit.io/SerializedParentAction#/anyOf/21`
|
- [SerializedSetParentCategoryAction](./serializedparentaction-anyof-serializedsetparentcategoryaction.md) – `https://timelimit.io/SerializedParentAction#/anyOf/21`
|
||||||
- [SerializedSetRelaxPrimaryDeviceAction](./serializedparentaction-anyof-serializedsetrelaxprimarydeviceaction.md) – `https://timelimit.io/SerializedParentAction#/anyOf/22`
|
- [SerializedSetParentCategoryAction](./serializedparentaction-definitions-serializedsetparentcategoryaction.md) – `https://timelimit.io/SerializedParentAction#/definitions/SerializedSetParentCategoryAction`
|
||||||
- [SerializedSetRelaxPrimaryDeviceAction](./serializedparentaction-definitions-serializedsetrelaxprimarydeviceaction.md) – `https://timelimit.io/SerializedParentAction#/definitions/SerializedSetRelaxPrimaryDeviceAction`
|
- [SerializedSetRelaxPrimaryDeviceAction](./serializedparentaction-definitions-serializedsetrelaxprimarydeviceaction.md) – `https://timelimit.io/SerializedParentAction#/definitions/SerializedSetRelaxPrimaryDeviceAction`
|
||||||
|
- [SerializedSetRelaxPrimaryDeviceAction](./serializedparentaction-anyof-serializedsetrelaxprimarydeviceaction.md) – `https://timelimit.io/SerializedParentAction#/anyOf/22`
|
||||||
- [SerializedSetSendDeviceConnected](./serializedparentaction-anyof-serializedsetsenddeviceconnected.md) – `https://timelimit.io/SerializedParentAction#/anyOf/23`
|
- [SerializedSetSendDeviceConnected](./serializedparentaction-anyof-serializedsetsenddeviceconnected.md) – `https://timelimit.io/SerializedParentAction#/anyOf/23`
|
||||||
- [SerializedSetSendDeviceConnected](./serializedparentaction-definitions-serializedsetsenddeviceconnected.md) – `https://timelimit.io/SerializedParentAction#/definitions/SerializedSetSendDeviceConnected`
|
- [SerializedSetSendDeviceConnected](./serializedparentaction-definitions-serializedsetsenddeviceconnected.md) – `https://timelimit.io/SerializedParentAction#/definitions/SerializedSetSendDeviceConnected`
|
||||||
- [SerializedSetUserDisableLimitsUntilAction](./serializedparentaction-definitions-serializedsetuserdisablelimitsuntilaction.md) – `https://timelimit.io/SerializedParentAction#/definitions/SerializedSetUserDisableLimitsUntilAction`
|
|
||||||
- [SerializedSetUserDisableLimitsUntilAction](./serializedparentaction-anyof-serializedsetuserdisablelimitsuntilaction.md) – `https://timelimit.io/SerializedParentAction#/anyOf/24`
|
- [SerializedSetUserDisableLimitsUntilAction](./serializedparentaction-anyof-serializedsetuserdisablelimitsuntilaction.md) – `https://timelimit.io/SerializedParentAction#/anyOf/24`
|
||||||
|
- [SerializedSetUserDisableLimitsUntilAction](./serializedparentaction-definitions-serializedsetuserdisablelimitsuntilaction.md) – `https://timelimit.io/SerializedParentAction#/definitions/SerializedSetUserDisableLimitsUntilAction`
|
||||||
- [SerializedSetUserTimezoneAction](./serializedparentaction-anyof-serializedsetusertimezoneaction.md) – `https://timelimit.io/SerializedParentAction#/anyOf/25`
|
- [SerializedSetUserTimezoneAction](./serializedparentaction-anyof-serializedsetusertimezoneaction.md) – `https://timelimit.io/SerializedParentAction#/anyOf/25`
|
||||||
- [SerializedSetUserTimezoneAction](./serializedparentaction-definitions-serializedsetusertimezoneaction.md) – `https://timelimit.io/SerializedParentAction#/definitions/SerializedSetUserTimezoneAction`
|
- [SerializedSetUserTimezoneAction](./serializedparentaction-definitions-serializedsetusertimezoneaction.md) – `https://timelimit.io/SerializedParentAction#/definitions/SerializedSetUserTimezoneAction`
|
||||||
- [SerializedSignOutAtDeviceAction](./serializedapplogicaction-anyof-serializedsignoutatdeviceaction.md) – `https://timelimit.io/SerializedAppLogicAction#/anyOf/4`
|
|
||||||
- [SerializedSignOutAtDeviceAction](./serializedapplogicaction-definitions-serializedsignoutatdeviceaction.md) – `https://timelimit.io/SerializedAppLogicAction#/definitions/SerializedSignOutAtDeviceAction`
|
- [SerializedSignOutAtDeviceAction](./serializedapplogicaction-definitions-serializedsignoutatdeviceaction.md) – `https://timelimit.io/SerializedAppLogicAction#/definitions/SerializedSignOutAtDeviceAction`
|
||||||
- [SerializedTimeLimitRule](./serializedparentaction-definitions-serializedcreatetimelimtruleaction-properties-serializedtimelimitrule.md) – `https://timelimit.io/SerializedParentAction#/definitions/SerializedCreateTimelimtRuleAction/properties/rule`
|
- [SerializedSignOutAtDeviceAction](./serializedapplogicaction-anyof-serializedsignoutatdeviceaction.md) – `https://timelimit.io/SerializedAppLogicAction#/anyOf/4`
|
||||||
- [SerializedTimeLimitRule](./serializedparentaction-definitions-serializedtimelimitrule.md) – `https://timelimit.io/SerializedParentAction#/definitions/SerializedTimeLimitRule`
|
- [SerializedTimeLimitRule](./serializedparentaction-definitions-serializedtimelimitrule.md) – `https://timelimit.io/SerializedParentAction#/definitions/SerializedTimeLimitRule`
|
||||||
- [SerializedTimeLimitRule](./serializedparentaction-definitions-serializedcreatetimelimtruleaction-properties-serializedtimelimitrule.md) – `https://timelimit.io/SerializedParentAction#/definitions/SerializedCreateTimelimtRuleAction/properties/rule`
|
- [SerializedTimeLimitRule](./serializedparentaction-definitions-serializedcreatetimelimtruleaction-properties-serializedtimelimitrule.md) – `https://timelimit.io/SerializedParentAction#/definitions/SerializedCreateTimelimtRuleAction/properties/rule`
|
||||||
|
- [SerializedTimeLimitRule](./serializedparentaction-definitions-serializedcreatetimelimtruleaction-properties-serializedtimelimitrule.md) – `https://timelimit.io/SerializedParentAction#/definitions/SerializedCreateTimelimtRuleAction/properties/rule`
|
||||||
- [SerializedUpdateAppActivitiesAction](./serializedapplogicaction-anyof-serializedupdateappactivitiesaction.md) – `https://timelimit.io/SerializedAppLogicAction#/anyOf/6`
|
- [SerializedUpdateAppActivitiesAction](./serializedapplogicaction-anyof-serializedupdateappactivitiesaction.md) – `https://timelimit.io/SerializedAppLogicAction#/anyOf/6`
|
||||||
- [SerializedUpdateAppActivitiesAction](./serializedapplogicaction-definitions-serializedupdateappactivitiesaction.md) – `https://timelimit.io/SerializedAppLogicAction#/definitions/SerializedUpdateAppActivitiesAction`
|
- [SerializedUpdateAppActivitiesAction](./serializedapplogicaction-definitions-serializedupdateappactivitiesaction.md) – `https://timelimit.io/SerializedAppLogicAction#/definitions/SerializedUpdateAppActivitiesAction`
|
||||||
- [SerializedUpdateCategoryBatteryLimitAction](./serializedparentaction-definitions-serializedupdatecategorybatterylimitaction.md) – `https://timelimit.io/SerializedParentAction#/definitions/SerializedUpdateCategoryBatteryLimitAction`
|
- [SerializedUpdateCategoryBatteryLimitAction](./serializedparentaction-definitions-serializedupdatecategorybatterylimitaction.md) – `https://timelimit.io/SerializedParentAction#/definitions/SerializedUpdateCategoryBatteryLimitAction`
|
||||||
|
@ -139,27 +146,53 @@
|
||||||
- [SerializedUpdateCategoryBlockedTimesAction](./serializedparentaction-definitions-serializedupdatecategoryblockedtimesaction.md) – `https://timelimit.io/SerializedParentAction#/definitions/SerializedUpdateCategoryBlockedTimesAction`
|
- [SerializedUpdateCategoryBlockedTimesAction](./serializedparentaction-definitions-serializedupdatecategoryblockedtimesaction.md) – `https://timelimit.io/SerializedParentAction#/definitions/SerializedUpdateCategoryBlockedTimesAction`
|
||||||
- [SerializedUpdateCategorySortingAction](./serializedparentaction-definitions-serializedupdatecategorysortingaction.md) – `https://timelimit.io/SerializedParentAction#/definitions/SerializedUpdateCategorySortingAction`
|
- [SerializedUpdateCategorySortingAction](./serializedparentaction-definitions-serializedupdatecategorysortingaction.md) – `https://timelimit.io/SerializedParentAction#/definitions/SerializedUpdateCategorySortingAction`
|
||||||
- [SerializedUpdateCategorySortingAction](./serializedparentaction-anyof-serializedupdatecategorysortingaction.md) – `https://timelimit.io/SerializedParentAction#/anyOf/29`
|
- [SerializedUpdateCategorySortingAction](./serializedparentaction-anyof-serializedupdatecategorysortingaction.md) – `https://timelimit.io/SerializedParentAction#/anyOf/29`
|
||||||
- [SerializedUpdateCategoryTemporarilyBlockedAction](./serializedparentaction-definitions-serializedupdatecategorytemporarilyblockedaction.md) – `https://timelimit.io/SerializedParentAction#/definitions/SerializedUpdateCategoryTemporarilyBlockedAction`
|
|
||||||
- [SerializedUpdateCategoryTemporarilyBlockedAction](./serializedparentaction-anyof-serializedupdatecategorytemporarilyblockedaction.md) – `https://timelimit.io/SerializedParentAction#/anyOf/30`
|
- [SerializedUpdateCategoryTemporarilyBlockedAction](./serializedparentaction-anyof-serializedupdatecategorytemporarilyblockedaction.md) – `https://timelimit.io/SerializedParentAction#/anyOf/30`
|
||||||
|
- [SerializedUpdateCategoryTemporarilyBlockedAction](./serializedparentaction-definitions-serializedupdatecategorytemporarilyblockedaction.md) – `https://timelimit.io/SerializedParentAction#/definitions/SerializedUpdateCategoryTemporarilyBlockedAction`
|
||||||
- [SerializedUpdateCategoryTimeWarningsAction](./serializedparentaction-anyof-serializedupdatecategorytimewarningsaction.md) – `https://timelimit.io/SerializedParentAction#/anyOf/31`
|
- [SerializedUpdateCategoryTimeWarningsAction](./serializedparentaction-anyof-serializedupdatecategorytimewarningsaction.md) – `https://timelimit.io/SerializedParentAction#/anyOf/31`
|
||||||
- [SerializedUpdateCategoryTimeWarningsAction](./serializedparentaction-definitions-serializedupdatecategorytimewarningsaction.md) – `https://timelimit.io/SerializedParentAction#/definitions/SerializedUpdateCategoryTimeWarningsAction`
|
- [SerializedUpdateCategoryTimeWarningsAction](./serializedparentaction-definitions-serializedupdatecategorytimewarningsaction.md) – `https://timelimit.io/SerializedParentAction#/definitions/SerializedUpdateCategoryTimeWarningsAction`
|
||||||
- [SerializedUpdateCategoryTitleAction](./serializedparentaction-anyof-serializedupdatecategorytitleaction.md) – `https://timelimit.io/SerializedParentAction#/anyOf/32`
|
|
||||||
- [SerializedUpdateCategoryTitleAction](./serializedparentaction-definitions-serializedupdatecategorytitleaction.md) – `https://timelimit.io/SerializedParentAction#/definitions/SerializedUpdateCategoryTitleAction`
|
- [SerializedUpdateCategoryTitleAction](./serializedparentaction-definitions-serializedupdatecategorytitleaction.md) – `https://timelimit.io/SerializedParentAction#/definitions/SerializedUpdateCategoryTitleAction`
|
||||||
- [SerializedUpdateDeviceNameAction](./serializedparentaction-definitions-serializedupdatedevicenameaction.md) – `https://timelimit.io/SerializedParentAction#/definitions/SerializedUpdateDeviceNameAction`
|
- [SerializedUpdateCategoryTitleAction](./serializedparentaction-anyof-serializedupdatecategorytitleaction.md) – `https://timelimit.io/SerializedParentAction#/anyOf/32`
|
||||||
- [SerializedUpdateDeviceNameAction](./serializedparentaction-anyof-serializedupdatedevicenameaction.md) – `https://timelimit.io/SerializedParentAction#/anyOf/33`
|
- [SerializedUpdateDeviceNameAction](./serializedparentaction-anyof-serializedupdatedevicenameaction.md) – `https://timelimit.io/SerializedParentAction#/anyOf/33`
|
||||||
- [SerializedUpdateDeviceStatusAction](./serializedapplogicaction-anyof-serializedupdatedevicestatusaction.md) – `https://timelimit.io/SerializedAppLogicAction#/anyOf/7`
|
- [SerializedUpdateDeviceNameAction](./serializedparentaction-definitions-serializedupdatedevicenameaction.md) – `https://timelimit.io/SerializedParentAction#/definitions/SerializedUpdateDeviceNameAction`
|
||||||
- [SerializedUpdateDeviceStatusAction](./serializedapplogicaction-definitions-serializedupdatedevicestatusaction.md) – `https://timelimit.io/SerializedAppLogicAction#/definitions/SerializedUpdateDeviceStatusAction`
|
- [SerializedUpdateDeviceStatusAction](./serializedapplogicaction-definitions-serializedupdatedevicestatusaction.md) – `https://timelimit.io/SerializedAppLogicAction#/definitions/SerializedUpdateDeviceStatusAction`
|
||||||
|
- [SerializedUpdateDeviceStatusAction](./serializedapplogicaction-anyof-serializedupdatedevicestatusaction.md) – `https://timelimit.io/SerializedAppLogicAction#/anyOf/7`
|
||||||
- [SerializedUpdateEnableActivityLevelBlockingAction](./serializedparentaction-anyof-serializedupdateenableactivitylevelblockingaction.md) – `https://timelimit.io/SerializedParentAction#/anyOf/34`
|
- [SerializedUpdateEnableActivityLevelBlockingAction](./serializedparentaction-anyof-serializedupdateenableactivitylevelblockingaction.md) – `https://timelimit.io/SerializedParentAction#/anyOf/34`
|
||||||
- [SerializedUpdateEnableActivityLevelBlockingAction](./serializedparentaction-definitions-serializedupdateenableactivitylevelblockingaction.md) – `https://timelimit.io/SerializedParentAction#/definitions/SerializedUpdateEnableActivityLevelBlockingAction`
|
- [SerializedUpdateEnableActivityLevelBlockingAction](./serializedparentaction-definitions-serializedupdateenableactivitylevelblockingaction.md) – `https://timelimit.io/SerializedParentAction#/definitions/SerializedUpdateEnableActivityLevelBlockingAction`
|
||||||
- [SerializedUpdateParentBlockedTimesAction](./serializedparentaction-definitions-serializedupdateparentblockedtimesaction.md) – `https://timelimit.io/SerializedParentAction#/definitions/SerializedUpdateParentBlockedTimesAction`
|
|
||||||
- [SerializedUpdateParentBlockedTimesAction](./serializedparentaction-anyof-serializedupdateparentblockedtimesaction.md) – `https://timelimit.io/SerializedParentAction#/anyOf/36`
|
- [SerializedUpdateParentBlockedTimesAction](./serializedparentaction-anyof-serializedupdateparentblockedtimesaction.md) – `https://timelimit.io/SerializedParentAction#/anyOf/36`
|
||||||
|
- [SerializedUpdateParentBlockedTimesAction](./serializedparentaction-definitions-serializedupdateparentblockedtimesaction.md) – `https://timelimit.io/SerializedParentAction#/definitions/SerializedUpdateParentBlockedTimesAction`
|
||||||
- [SerializedUpdateParentNotificationFlagsAction](./serializedparentaction-anyof-serializedupdateparentnotificationflagsaction.md) – `https://timelimit.io/SerializedParentAction#/anyOf/37`
|
- [SerializedUpdateParentNotificationFlagsAction](./serializedparentaction-anyof-serializedupdateparentnotificationflagsaction.md) – `https://timelimit.io/SerializedParentAction#/anyOf/37`
|
||||||
- [SerializedUpdateParentNotificationFlagsAction](./serializedparentaction-definitions-serializedupdateparentnotificationflagsaction.md) – `https://timelimit.io/SerializedParentAction#/definitions/SerializedUpdateParentNotificationFlagsAction`
|
- [SerializedUpdateParentNotificationFlagsAction](./serializedparentaction-definitions-serializedupdateparentnotificationflagsaction.md) – `https://timelimit.io/SerializedParentAction#/definitions/SerializedUpdateParentNotificationFlagsAction`
|
||||||
- [SerializedUpdateTimelimitRuleAction](./serializedparentaction-anyof-serializedupdatetimelimitruleaction.md) – `https://timelimit.io/SerializedParentAction#/anyOf/38`
|
|
||||||
- [SerializedUpdateTimelimitRuleAction](./serializedparentaction-definitions-serializedupdatetimelimitruleaction.md) – `https://timelimit.io/SerializedParentAction#/definitions/SerializedUpdateTimelimitRuleAction`
|
- [SerializedUpdateTimelimitRuleAction](./serializedparentaction-definitions-serializedupdatetimelimitruleaction.md) – `https://timelimit.io/SerializedParentAction#/definitions/SerializedUpdateTimelimitRuleAction`
|
||||||
- [Untitled object in ClientPullChangesRequest](./clientpullchangesrequest-definitions-clientdatastatus-properties-apps.md) – `https://timelimit.io/ClientPullChangesRequest#/definitions/ClientDataStatus/properties/apps`
|
- [SerializedUpdateTimelimitRuleAction](./serializedparentaction-anyof-serializedupdatetimelimitruleaction.md) – `https://timelimit.io/SerializedParentAction#/anyOf/38`
|
||||||
- [Untitled object in ClientPullChangesRequest](./clientpullchangesrequest-definitions-clientdatastatus-properties-apps.md) – `https://timelimit.io/ClientPullChangesRequest#/definitions/ClientDataStatus/properties/apps`
|
- [ServerDeviceData](./serverdatastatus-definitions-serverdevicelist-properties-data-serverdevicedata.md) – `https://timelimit.io/ServerDataStatus#/definitions/ServerDeviceList/properties/data/items`
|
||||||
|
- [ServerDeviceData](./serverdatastatus-definitions-serverdevicelist-properties-data-serverdevicedata.md) – `https://timelimit.io/ServerDataStatus#/definitions/ServerDeviceList/properties/data/items`
|
||||||
|
- [ServerDeviceData](./serverdatastatus-definitions-serverdevicedata.md) – `https://timelimit.io/ServerDataStatus#/definitions/ServerDeviceData`
|
||||||
|
- [ServerDeviceList](./serverdatastatus-properties-serverdevicelist.md) – `https://timelimit.io/ServerDataStatus#/properties/devices`
|
||||||
|
- [ServerDeviceList](./serverdatastatus-definitions-serverdevicelist.md) – `https://timelimit.io/ServerDataStatus#/definitions/ServerDeviceList`
|
||||||
|
- [ServerInstalledAppsData](./serverdatastatus-properties-apps-serverinstalledappsdata.md) – `https://timelimit.io/ServerDataStatus#/properties/apps/items`
|
||||||
|
- [ServerInstalledAppsData](./serverdatastatus-definitions-serverinstalledappsdata.md) – `https://timelimit.io/ServerDataStatus#/definitions/ServerInstalledAppsData`
|
||||||
|
- [ServerTimeLimitRule](./serverdatastatus-definitions-serverupdatedtimelimitrules-properties-rules-servertimelimitrule.md) – `https://timelimit.io/ServerDataStatus#/definitions/ServerUpdatedTimeLimitRules/properties/rules/items`
|
||||||
|
- [ServerTimeLimitRule](./serverdatastatus-definitions-serverupdatedtimelimitrules-properties-rules-servertimelimitrule.md) – `https://timelimit.io/ServerDataStatus#/definitions/ServerUpdatedTimeLimitRules/properties/rules/items`
|
||||||
|
- [ServerTimeLimitRule](./serverdatastatus-definitions-servertimelimitrule.md) – `https://timelimit.io/ServerDataStatus#/definitions/ServerTimeLimitRule`
|
||||||
|
- [ServerUpdatedCategoryAssignedApps](./serverdatastatus-definitions-serverupdatedcategoryassignedapps.md) – `https://timelimit.io/ServerDataStatus#/definitions/ServerUpdatedCategoryAssignedApps`
|
||||||
|
- [ServerUpdatedCategoryAssignedApps](./serverdatastatus-properties-categoryapp-serverupdatedcategoryassignedapps.md) – `https://timelimit.io/ServerDataStatus#/properties/categoryApp/items`
|
||||||
|
- [ServerUpdatedCategoryBaseData](./serverdatastatus-definitions-serverupdatedcategorybasedata.md) – `https://timelimit.io/ServerDataStatus#/definitions/ServerUpdatedCategoryBaseData`
|
||||||
|
- [ServerUpdatedCategoryBaseData](./serverdatastatus-properties-categorybase-serverupdatedcategorybasedata.md) – `https://timelimit.io/ServerDataStatus#/properties/categoryBase/items`
|
||||||
|
- [ServerUpdatedCategoryUsedTimes](./serverdatastatus-properties-usedtimes-serverupdatedcategoryusedtimes.md) – `https://timelimit.io/ServerDataStatus#/properties/usedTimes/items`
|
||||||
|
- [ServerUpdatedCategoryUsedTimes](./serverdatastatus-definitions-serverupdatedcategoryusedtimes.md) – `https://timelimit.io/ServerDataStatus#/definitions/ServerUpdatedCategoryUsedTimes`
|
||||||
|
- [ServerUpdatedTimeLimitRules](./serverdatastatus-properties-rules-serverupdatedtimelimitrules.md) – `https://timelimit.io/ServerDataStatus#/properties/rules/items`
|
||||||
|
- [ServerUpdatedTimeLimitRules](./serverdatastatus-definitions-serverupdatedtimelimitrules.md) – `https://timelimit.io/ServerDataStatus#/definitions/ServerUpdatedTimeLimitRules`
|
||||||
|
- [ServerUsedTimeItem](./serverdatastatus-definitions-serverupdatedcategoryusedtimes-properties-times-serverusedtimeitem.md) – `https://timelimit.io/ServerDataStatus#/definitions/ServerUpdatedCategoryUsedTimes/properties/times/items`
|
||||||
|
- [ServerUsedTimeItem](./serverdatastatus-definitions-serverupdatedcategoryusedtimes-properties-times-serverusedtimeitem.md) – `https://timelimit.io/ServerDataStatus#/definitions/ServerUpdatedCategoryUsedTimes/properties/times/items`
|
||||||
|
- [ServerUsedTimeItem](./serverdatastatus-definitions-serverusedtimeitem.md) – `https://timelimit.io/ServerDataStatus#/definitions/ServerUsedTimeItem`
|
||||||
|
- [ServerUserEntry](./serverdatastatus-definitions-serveruserentry.md) – `https://timelimit.io/ServerDataStatus#/definitions/ServerUserEntry`
|
||||||
|
- [ServerUserEntry](./serverdatastatus-definitions-serveruserlist-properties-data-serveruserentry.md) – `https://timelimit.io/ServerDataStatus#/definitions/ServerUserList/properties/data/items`
|
||||||
|
- [ServerUserEntry](./serverdatastatus-definitions-serveruserlist-properties-data-serveruserentry.md) – `https://timelimit.io/ServerDataStatus#/definitions/ServerUserList/properties/data/items`
|
||||||
|
- [ServerUserList](./serverdatastatus-properties-serveruserlist.md) – `https://timelimit.io/ServerDataStatus#/properties/users`
|
||||||
|
- [ServerUserList](./serverdatastatus-definitions-serveruserlist.md) – `https://timelimit.io/ServerDataStatus#/definitions/ServerUserList`
|
||||||
- [Untitled object in ClientPullChangesRequest](./clientpullchangesrequest-definitions-clientdatastatus-properties-categories.md) – `https://timelimit.io/ClientPullChangesRequest#/definitions/ClientDataStatus/properties/categories`
|
- [Untitled object in ClientPullChangesRequest](./clientpullchangesrequest-definitions-clientdatastatus-properties-categories.md) – `https://timelimit.io/ClientPullChangesRequest#/definitions/ClientDataStatus/properties/categories`
|
||||||
|
- [Untitled object in ClientPullChangesRequest](./clientpullchangesrequest-definitions-clientdatastatus-properties-apps.md) – `https://timelimit.io/ClientPullChangesRequest#/definitions/ClientDataStatus/properties/apps`
|
||||||
|
- [Untitled object in ClientPullChangesRequest](./clientpullchangesrequest-definitions-clientdatastatus-properties-apps.md) – `https://timelimit.io/ClientPullChangesRequest#/definitions/ClientDataStatus/properties/apps`
|
||||||
- [Untitled object in ClientPullChangesRequest](./clientpullchangesrequest-definitions-clientdatastatus-properties-categories.md) – `https://timelimit.io/ClientPullChangesRequest#/definitions/ClientDataStatus/properties/categories`
|
- [Untitled object in ClientPullChangesRequest](./clientpullchangesrequest-definitions-clientdatastatus-properties-categories.md) – `https://timelimit.io/ClientPullChangesRequest#/definitions/ClientDataStatus/properties/categories`
|
||||||
- [Untitled object in ClientPushChangesRequest](./clientpushchangesrequest-properties-actions-items.md) – `https://timelimit.io/ClientPushChangesRequest#/properties/actions/items`
|
- [Untitled object in ClientPushChangesRequest](./clientpushchangesrequest-properties-actions-items.md) – `https://timelimit.io/ClientPushChangesRequest#/properties/actions/items`
|
||||||
- [Untitled object in SerializedAppLogicAction](./serializedapplogicaction-definitions-serializedaddusedtimeactionversion2-properties-i-items.md) – `https://timelimit.io/SerializedAppLogicAction#/definitions/SerializedAddUsedTimeActionVersion2/properties/i/items`
|
- [Untitled object in SerializedAppLogicAction](./serializedapplogicaction-definitions-serializedaddusedtimeactionversion2-properties-i-items.md) – `https://timelimit.io/SerializedAppLogicAction#/definitions/SerializedAddUsedTimeActionVersion2/properties/i/items`
|
||||||
|
@ -168,24 +201,44 @@
|
||||||
### Arrays
|
### Arrays
|
||||||
|
|
||||||
- [Untitled array in ClientPushChangesRequest](./clientpushchangesrequest-properties-actions.md) – `https://timelimit.io/ClientPushChangesRequest#/properties/actions`
|
- [Untitled array in ClientPushChangesRequest](./clientpushchangesrequest-properties-actions.md) – `https://timelimit.io/ClientPushChangesRequest#/properties/actions`
|
||||||
- [Untitled array in SerializedAppLogicAction](./serializedapplogicaction-definitions-serializedremoveinstalledappsaction-properties-packagenames.md) – `https://timelimit.io/SerializedAppLogicAction#/definitions/SerializedRemoveInstalledAppsAction/properties/packageNames`
|
- [Untitled array in SerializedAppLogicAction](./serializedapplogicaction-definitions-serializedaddinstalledappsaction-properties-apps.md) – `https://timelimit.io/SerializedAppLogicAction#/definitions/SerializedAddInstalledAppsAction/properties/apps`
|
||||||
- [Untitled array in SerializedAppLogicAction](./serializedapplogicaction-definitions-serializedaddusedtimeactionversion2-properties-i.md) – `https://timelimit.io/SerializedAppLogicAction#/definitions/SerializedAddUsedTimeActionVersion2/properties/i`
|
|
||||||
- [Untitled array in SerializedAppLogicAction](./serializedapplogicaction-definitions-serializedremoveinstalledappsaction-properties-packagenames.md) – `https://timelimit.io/SerializedAppLogicAction#/definitions/SerializedRemoveInstalledAppsAction/properties/packageNames`
|
- [Untitled array in SerializedAppLogicAction](./serializedapplogicaction-definitions-serializedremoveinstalledappsaction-properties-packagenames.md) – `https://timelimit.io/SerializedAppLogicAction#/definitions/SerializedRemoveInstalledAppsAction/properties/packageNames`
|
||||||
- [Untitled array in SerializedAppLogicAction](./serializedapplogicaction-definitions-serializedupdateappactivitiesaction-properties-removed.md) – `https://timelimit.io/SerializedAppLogicAction#/definitions/SerializedUpdateAppActivitiesAction/properties/removed`
|
- [Untitled array in SerializedAppLogicAction](./serializedapplogicaction-definitions-serializedupdateappactivitiesaction-properties-removed.md) – `https://timelimit.io/SerializedAppLogicAction#/definitions/SerializedUpdateAppActivitiesAction/properties/removed`
|
||||||
- [Untitled array in SerializedAppLogicAction](./serializedapplogicaction-definitions-serializedupdateappactivitiesaction-properties-removed-items.md) – `https://timelimit.io/SerializedAppLogicAction#/definitions/SerializedUpdateAppActivitiesAction/properties/removed/items`
|
- [Untitled array in SerializedAppLogicAction](./serializedapplogicaction-definitions-serializedupdateappactivitiesaction-properties-removed-items.md) – `https://timelimit.io/SerializedAppLogicAction#/definitions/SerializedUpdateAppActivitiesAction/properties/removed/items`
|
||||||
- [Untitled array in SerializedAppLogicAction](./serializedapplogicaction-definitions-serializedupdateappactivitiesaction-properties-updatedoradded.md) – `https://timelimit.io/SerializedAppLogicAction#/definitions/SerializedUpdateAppActivitiesAction/properties/updatedOrAdded`
|
- [Untitled array in SerializedAppLogicAction](./serializedapplogicaction-definitions-serializedupdateappactivitiesaction-properties-updatedoradded.md) – `https://timelimit.io/SerializedAppLogicAction#/definitions/SerializedUpdateAppActivitiesAction/properties/updatedOrAdded`
|
||||||
- [Untitled array in SerializedAppLogicAction](./serializedapplogicaction-definitions-serializedaddinstalledappsaction-properties-apps.md) – `https://timelimit.io/SerializedAppLogicAction#/definitions/SerializedAddInstalledAppsAction/properties/apps`
|
- [Untitled array in SerializedAppLogicAction](./serializedapplogicaction-definitions-serializedaddinstalledappsaction-properties-apps.md) – `https://timelimit.io/SerializedAppLogicAction#/definitions/SerializedAddInstalledAppsAction/properties/apps`
|
||||||
- [Untitled array in SerializedAppLogicAction](./serializedapplogicaction-definitions-serializedaddusedtimeactionversion2-properties-i.md) – `https://timelimit.io/SerializedAppLogicAction#/definitions/SerializedAddUsedTimeActionVersion2/properties/i`
|
- [Untitled array in SerializedAppLogicAction](./serializedapplogicaction-definitions-serializedaddusedtimeactionversion2-properties-i.md) – `https://timelimit.io/SerializedAppLogicAction#/definitions/SerializedAddUsedTimeActionVersion2/properties/i`
|
||||||
- [Untitled array in SerializedAppLogicAction](./serializedapplogicaction-definitions-serializedaddinstalledappsaction-properties-apps.md) – `https://timelimit.io/SerializedAppLogicAction#/definitions/SerializedAddInstalledAppsAction/properties/apps`
|
- [Untitled array in SerializedAppLogicAction](./serializedapplogicaction-definitions-serializedremoveinstalledappsaction-properties-packagenames.md) – `https://timelimit.io/SerializedAppLogicAction#/definitions/SerializedRemoveInstalledAppsAction/properties/packageNames`
|
||||||
- [Untitled array in SerializedAppLogicAction](./serializedapplogicaction-definitions-serializedupdateappactivitiesaction-properties-removed.md) – `https://timelimit.io/SerializedAppLogicAction#/definitions/SerializedUpdateAppActivitiesAction/properties/removed`
|
- [Untitled array in SerializedAppLogicAction](./serializedapplogicaction-definitions-serializedaddusedtimeactionversion2-properties-i.md) – `https://timelimit.io/SerializedAppLogicAction#/definitions/SerializedAddUsedTimeActionVersion2/properties/i`
|
||||||
- [Untitled array in SerializedAppLogicAction](./serializedapplogicaction-definitions-serializedupdateappactivitiesaction-properties-removed-items.md) – `https://timelimit.io/SerializedAppLogicAction#/definitions/SerializedUpdateAppActivitiesAction/properties/removed/items`
|
- [Untitled array in SerializedAppLogicAction](./serializedapplogicaction-definitions-serializedupdateappactivitiesaction-properties-removed-items.md) – `https://timelimit.io/SerializedAppLogicAction#/definitions/SerializedUpdateAppActivitiesAction/properties/removed/items`
|
||||||
- [Untitled array in SerializedAppLogicAction](./serializedapplogicaction-definitions-serializedupdateappactivitiesaction-properties-updatedoradded.md) – `https://timelimit.io/SerializedAppLogicAction#/definitions/SerializedUpdateAppActivitiesAction/properties/updatedOrAdded`
|
- [Untitled array in SerializedAppLogicAction](./serializedapplogicaction-definitions-serializedupdateappactivitiesaction-properties-updatedoradded.md) – `https://timelimit.io/SerializedAppLogicAction#/definitions/SerializedUpdateAppActivitiesAction/properties/updatedOrAdded`
|
||||||
|
- [Untitled array in SerializedAppLogicAction](./serializedapplogicaction-definitions-serializedupdateappactivitiesaction-properties-removed.md) – `https://timelimit.io/SerializedAppLogicAction#/definitions/SerializedUpdateAppActivitiesAction/properties/removed`
|
||||||
- [Untitled array in SerializedParentAction](./serializedparentaction-definitions-serializedaddcategoryappsaction-properties-packagenames.md) – `https://timelimit.io/SerializedParentAction#/definitions/SerializedAddCategoryAppsAction/properties/packageNames`
|
- [Untitled array in SerializedParentAction](./serializedparentaction-definitions-serializedaddcategoryappsaction-properties-packagenames.md) – `https://timelimit.io/SerializedParentAction#/definitions/SerializedAddCategoryAppsAction/properties/packageNames`
|
||||||
- [Untitled array in SerializedParentAction](./serializedparentaction-definitions-serializedremovecategoryappsaction-properties-packagenames.md) – `https://timelimit.io/SerializedParentAction#/definitions/SerializedRemoveCategoryAppsAction/properties/packageNames`
|
- [Untitled array in SerializedParentAction](./serializedparentaction-definitions-serializedremovecategoryappsaction-properties-packagenames.md) – `https://timelimit.io/SerializedParentAction#/definitions/SerializedRemoveCategoryAppsAction/properties/packageNames`
|
||||||
- [Untitled array in SerializedParentAction](./serializedparentaction-definitions-serializedupdatecategorysortingaction-properties-categoryids.md) – `https://timelimit.io/SerializedParentAction#/definitions/SerializedUpdateCategorySortingAction/properties/categoryIds`
|
- [Untitled array in SerializedParentAction](./serializedparentaction-definitions-serializedupdatecategorysortingaction-properties-categoryids.md) – `https://timelimit.io/SerializedParentAction#/definitions/SerializedUpdateCategorySortingAction/properties/categoryIds`
|
||||||
- [Untitled array in SerializedParentAction](./serializedparentaction-definitions-serializedaddcategoryappsaction-properties-packagenames.md) – `https://timelimit.io/SerializedParentAction#/definitions/SerializedAddCategoryAppsAction/properties/packageNames`
|
- [Untitled array in SerializedParentAction](./serializedparentaction-definitions-serializedaddcategoryappsaction-properties-packagenames.md) – `https://timelimit.io/SerializedParentAction#/definitions/SerializedAddCategoryAppsAction/properties/packageNames`
|
||||||
- [Untitled array in SerializedParentAction](./serializedparentaction-definitions-serializedremovecategoryappsaction-properties-packagenames.md) – `https://timelimit.io/SerializedParentAction#/definitions/SerializedRemoveCategoryAppsAction/properties/packageNames`
|
- [Untitled array in SerializedParentAction](./serializedparentaction-definitions-serializedremovecategoryappsaction-properties-packagenames.md) – `https://timelimit.io/SerializedParentAction#/definitions/SerializedRemoveCategoryAppsAction/properties/packageNames`
|
||||||
- [Untitled array in SerializedParentAction](./serializedparentaction-definitions-serializedupdatecategorysortingaction-properties-categoryids.md) – `https://timelimit.io/SerializedParentAction#/definitions/SerializedUpdateCategorySortingAction/properties/categoryIds`
|
- [Untitled array in SerializedParentAction](./serializedparentaction-definitions-serializedupdatecategorysortingaction-properties-categoryids.md) – `https://timelimit.io/SerializedParentAction#/definitions/SerializedUpdateCategorySortingAction/properties/categoryIds`
|
||||||
|
- [Untitled array in ServerDataStatus](./serverdatastatus-definitions-serveruserlist-properties-data.md) – `https://timelimit.io/ServerDataStatus#/definitions/ServerUserList/properties/data`
|
||||||
|
- [Untitled array in ServerDataStatus](./serverdatastatus-properties-apps.md) – `https://timelimit.io/ServerDataStatus#/properties/apps`
|
||||||
|
- [Untitled array in ServerDataStatus](./serverdatastatus-definitions-serverinstalledappsdata-properties-apps.md) – `https://timelimit.io/ServerDataStatus#/definitions/ServerInstalledAppsData/properties/apps`
|
||||||
|
- [Untitled array in ServerDataStatus](./serverdatastatus-definitions-serverinstalledappsdata-properties-activities.md) – `https://timelimit.io/ServerDataStatus#/definitions/ServerInstalledAppsData/properties/activities`
|
||||||
|
- [Untitled array in ServerDataStatus](./serverdatastatus-properties-rmcategories.md) – `https://timelimit.io/ServerDataStatus#/properties/rmCategories`
|
||||||
|
- [Untitled array in ServerDataStatus](./serverdatastatus-properties-categorybase.md) – `https://timelimit.io/ServerDataStatus#/properties/categoryBase`
|
||||||
|
- [Untitled array in ServerDataStatus](./serverdatastatus-properties-categoryapp.md) – `https://timelimit.io/ServerDataStatus#/properties/categoryApp`
|
||||||
|
- [Untitled array in ServerDataStatus](./serverdatastatus-definitions-serverupdatedcategoryassignedapps-properties-apps.md) – `https://timelimit.io/ServerDataStatus#/definitions/ServerUpdatedCategoryAssignedApps/properties/apps`
|
||||||
|
- [Untitled array in ServerDataStatus](./serverdatastatus-properties-usedtimes.md) – `https://timelimit.io/ServerDataStatus#/properties/usedTimes`
|
||||||
|
- [Untitled array in ServerDataStatus](./serverdatastatus-definitions-serverupdatedcategoryusedtimes-properties-times.md) – `https://timelimit.io/ServerDataStatus#/definitions/ServerUpdatedCategoryUsedTimes/properties/times`
|
||||||
|
- [Untitled array in ServerDataStatus](./serverdatastatus-properties-rules.md) – `https://timelimit.io/ServerDataStatus#/properties/rules`
|
||||||
|
- [Untitled array in ServerDataStatus](./serverdatastatus-definitions-serverupdatedtimelimitrules-properties-rules.md) – `https://timelimit.io/ServerDataStatus#/definitions/ServerUpdatedTimeLimitRules/properties/rules`
|
||||||
|
- [Untitled array in ServerDataStatus](./serverdatastatus-definitions-serveruserlist-properties-data.md) – `https://timelimit.io/ServerDataStatus#/definitions/ServerUserList/properties/data`
|
||||||
|
- [Untitled array in ServerDataStatus](./serverdatastatus-definitions-serverdevicelist-properties-data.md) – `https://timelimit.io/ServerDataStatus#/definitions/ServerDeviceList/properties/data`
|
||||||
|
- [Untitled array in ServerDataStatus](./serverdatastatus-definitions-serverinstalledappsdata-properties-apps.md) – `https://timelimit.io/ServerDataStatus#/definitions/ServerInstalledAppsData/properties/apps`
|
||||||
|
- [Untitled array in ServerDataStatus](./serverdatastatus-definitions-serverinstalledappsdata-properties-activities.md) – `https://timelimit.io/ServerDataStatus#/definitions/ServerInstalledAppsData/properties/activities`
|
||||||
|
- [Untitled array in ServerDataStatus](./serverdatastatus-definitions-serverupdatedcategoryassignedapps-properties-apps.md) – `https://timelimit.io/ServerDataStatus#/definitions/ServerUpdatedCategoryAssignedApps/properties/apps`
|
||||||
|
- [Untitled array in ServerDataStatus](./serverdatastatus-definitions-serverupdatedcategoryusedtimes-properties-times.md) – `https://timelimit.io/ServerDataStatus#/definitions/ServerUpdatedCategoryUsedTimes/properties/times`
|
||||||
|
- [Untitled array in ServerDataStatus](./serverdatastatus-definitions-serverupdatedtimelimitrules-properties-rules.md) – `https://timelimit.io/ServerDataStatus#/definitions/ServerUpdatedTimeLimitRules/properties/rules`
|
||||||
|
- [Untitled array in ServerDataStatus](./serverdatastatus-definitions-serverdevicelist-properties-data.md) – `https://timelimit.io/ServerDataStatus#/definitions/ServerDeviceList/properties/data`
|
||||||
|
|
||||||
## Version Note
|
## Version Note
|
||||||
|
|
||||||
|
|
598
docs/schema/ServerDataStatus.schema.json
Normal file
598
docs/schema/ServerDataStatus.schema.json
Normal file
|
@ -0,0 +1,598 @@
|
||||||
|
{
|
||||||
|
"type": "object",
|
||||||
|
"properties": {
|
||||||
|
"devices": {
|
||||||
|
"$ref": "#/definitions/ServerDeviceList"
|
||||||
|
},
|
||||||
|
"apps": {
|
||||||
|
"type": "array",
|
||||||
|
"items": {
|
||||||
|
"$ref": "#/definitions/ServerInstalledAppsData"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"rmCategories": {
|
||||||
|
"type": "array",
|
||||||
|
"items": {
|
||||||
|
"type": "string"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"categoryBase": {
|
||||||
|
"type": "array",
|
||||||
|
"items": {
|
||||||
|
"$ref": "#/definitions/ServerUpdatedCategoryBaseData"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"categoryApp": {
|
||||||
|
"type": "array",
|
||||||
|
"items": {
|
||||||
|
"$ref": "#/definitions/ServerUpdatedCategoryAssignedApps"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"usedTimes": {
|
||||||
|
"type": "array",
|
||||||
|
"items": {
|
||||||
|
"$ref": "#/definitions/ServerUpdatedCategoryUsedTimes"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"rules": {
|
||||||
|
"type": "array",
|
||||||
|
"items": {
|
||||||
|
"$ref": "#/definitions/ServerUpdatedTimeLimitRules"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"users": {
|
||||||
|
"$ref": "#/definitions/ServerUserList"
|
||||||
|
},
|
||||||
|
"fullVersion": {
|
||||||
|
"type": "number"
|
||||||
|
},
|
||||||
|
"message": {
|
||||||
|
"type": "string"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"additionalProperties": false,
|
||||||
|
"required": [
|
||||||
|
"fullVersion"
|
||||||
|
],
|
||||||
|
"definitions": {
|
||||||
|
"ServerDeviceList": {
|
||||||
|
"type": "object",
|
||||||
|
"properties": {
|
||||||
|
"version": {
|
||||||
|
"type": "string"
|
||||||
|
},
|
||||||
|
"data": {
|
||||||
|
"type": "array",
|
||||||
|
"items": {
|
||||||
|
"$ref": "#/definitions/ServerDeviceData"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"additionalProperties": false,
|
||||||
|
"required": [
|
||||||
|
"data",
|
||||||
|
"version"
|
||||||
|
],
|
||||||
|
"title": "ServerDeviceList"
|
||||||
|
},
|
||||||
|
"ServerDeviceData": {
|
||||||
|
"type": "object",
|
||||||
|
"properties": {
|
||||||
|
"deviceId": {
|
||||||
|
"type": "string"
|
||||||
|
},
|
||||||
|
"name": {
|
||||||
|
"type": "string"
|
||||||
|
},
|
||||||
|
"model": {
|
||||||
|
"type": "string"
|
||||||
|
},
|
||||||
|
"addedAt": {
|
||||||
|
"type": "number"
|
||||||
|
},
|
||||||
|
"currentUserId": {
|
||||||
|
"type": "string"
|
||||||
|
},
|
||||||
|
"networkTime": {
|
||||||
|
"enum": [
|
||||||
|
"disabled",
|
||||||
|
"enabled",
|
||||||
|
"if possible"
|
||||||
|
],
|
||||||
|
"type": "string"
|
||||||
|
},
|
||||||
|
"cProtectionLevel": {
|
||||||
|
"$ref": "#/definitions/ProtectionLevel"
|
||||||
|
},
|
||||||
|
"hProtectionLevel": {
|
||||||
|
"$ref": "#/definitions/ProtectionLevel"
|
||||||
|
},
|
||||||
|
"cUsageStats": {
|
||||||
|
"$ref": "#/definitions/RuntimePermissionStatus"
|
||||||
|
},
|
||||||
|
"hUsageStats": {
|
||||||
|
"$ref": "#/definitions/RuntimePermissionStatus"
|
||||||
|
},
|
||||||
|
"cNotificationAccess": {
|
||||||
|
"$ref": "#/definitions/NewPermissionStatus"
|
||||||
|
},
|
||||||
|
"hNotificationAccess": {
|
||||||
|
"$ref": "#/definitions/NewPermissionStatus"
|
||||||
|
},
|
||||||
|
"cAppVersion": {
|
||||||
|
"type": "number"
|
||||||
|
},
|
||||||
|
"hAppVersion": {
|
||||||
|
"type": "number"
|
||||||
|
},
|
||||||
|
"tDisablingAdmin": {
|
||||||
|
"type": "boolean"
|
||||||
|
},
|
||||||
|
"reboot": {
|
||||||
|
"type": "boolean"
|
||||||
|
},
|
||||||
|
"hadManipulation": {
|
||||||
|
"type": "boolean"
|
||||||
|
},
|
||||||
|
"hadManipulationFlags": {
|
||||||
|
"type": "number"
|
||||||
|
},
|
||||||
|
"reportUninstall": {
|
||||||
|
"type": "boolean"
|
||||||
|
},
|
||||||
|
"isUserKeptSignedIn": {
|
||||||
|
"type": "boolean"
|
||||||
|
},
|
||||||
|
"showDeviceConnected": {
|
||||||
|
"type": "boolean"
|
||||||
|
},
|
||||||
|
"defUser": {
|
||||||
|
"type": "string"
|
||||||
|
},
|
||||||
|
"defUserTimeout": {
|
||||||
|
"type": "number"
|
||||||
|
},
|
||||||
|
"rebootIsManipulation": {
|
||||||
|
"type": "boolean"
|
||||||
|
},
|
||||||
|
"cOverlay": {
|
||||||
|
"$ref": "#/definitions/RuntimePermissionStatus"
|
||||||
|
},
|
||||||
|
"hOverlay": {
|
||||||
|
"$ref": "#/definitions/RuntimePermissionStatus"
|
||||||
|
},
|
||||||
|
"asEnabled": {
|
||||||
|
"type": "boolean"
|
||||||
|
},
|
||||||
|
"wasAsEnabled": {
|
||||||
|
"type": "boolean"
|
||||||
|
},
|
||||||
|
"activityLevelBlocking": {
|
||||||
|
"type": "boolean"
|
||||||
|
},
|
||||||
|
"qOrLater": {
|
||||||
|
"type": "boolean"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"additionalProperties": false,
|
||||||
|
"required": [
|
||||||
|
"activityLevelBlocking",
|
||||||
|
"addedAt",
|
||||||
|
"asEnabled",
|
||||||
|
"cAppVersion",
|
||||||
|
"cNotificationAccess",
|
||||||
|
"cOverlay",
|
||||||
|
"cProtectionLevel",
|
||||||
|
"cUsageStats",
|
||||||
|
"currentUserId",
|
||||||
|
"defUser",
|
||||||
|
"defUserTimeout",
|
||||||
|
"deviceId",
|
||||||
|
"hAppVersion",
|
||||||
|
"hNotificationAccess",
|
||||||
|
"hOverlay",
|
||||||
|
"hProtectionLevel",
|
||||||
|
"hUsageStats",
|
||||||
|
"hadManipulation",
|
||||||
|
"hadManipulationFlags",
|
||||||
|
"isUserKeptSignedIn",
|
||||||
|
"model",
|
||||||
|
"name",
|
||||||
|
"networkTime",
|
||||||
|
"qOrLater",
|
||||||
|
"reboot",
|
||||||
|
"rebootIsManipulation",
|
||||||
|
"reportUninstall",
|
||||||
|
"showDeviceConnected",
|
||||||
|
"tDisablingAdmin",
|
||||||
|
"wasAsEnabled"
|
||||||
|
],
|
||||||
|
"title": "ServerDeviceData"
|
||||||
|
},
|
||||||
|
"ProtectionLevel": {
|
||||||
|
"enum": [
|
||||||
|
"device owner",
|
||||||
|
"none",
|
||||||
|
"password device admin",
|
||||||
|
"simple device admin"
|
||||||
|
],
|
||||||
|
"type": "string",
|
||||||
|
"title": "ProtectionLevel"
|
||||||
|
},
|
||||||
|
"RuntimePermissionStatus": {
|
||||||
|
"enum": [
|
||||||
|
"granted",
|
||||||
|
"not granted",
|
||||||
|
"not required"
|
||||||
|
],
|
||||||
|
"type": "string",
|
||||||
|
"title": "RuntimePermissionStatus"
|
||||||
|
},
|
||||||
|
"NewPermissionStatus": {
|
||||||
|
"enum": [
|
||||||
|
"granted",
|
||||||
|
"not granted",
|
||||||
|
"not supported"
|
||||||
|
],
|
||||||
|
"type": "string",
|
||||||
|
"title": "NewPermissionStatus"
|
||||||
|
},
|
||||||
|
"ServerInstalledAppsData": {
|
||||||
|
"type": "object",
|
||||||
|
"properties": {
|
||||||
|
"deviceId": {
|
||||||
|
"type": "string"
|
||||||
|
},
|
||||||
|
"version": {
|
||||||
|
"type": "string"
|
||||||
|
},
|
||||||
|
"apps": {
|
||||||
|
"type": "array",
|
||||||
|
"items": {
|
||||||
|
"$ref": "#/definitions/SerializedInstalledApp"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"activities": {
|
||||||
|
"type": "array",
|
||||||
|
"items": {
|
||||||
|
"$ref": "#/definitions/SerializedAppActivityItem"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"additionalProperties": false,
|
||||||
|
"required": [
|
||||||
|
"activities",
|
||||||
|
"apps",
|
||||||
|
"deviceId",
|
||||||
|
"version"
|
||||||
|
],
|
||||||
|
"title": "ServerInstalledAppsData"
|
||||||
|
},
|
||||||
|
"SerializedInstalledApp": {
|
||||||
|
"type": "object",
|
||||||
|
"properties": {
|
||||||
|
"packageName": {
|
||||||
|
"type": "string"
|
||||||
|
},
|
||||||
|
"title": {
|
||||||
|
"type": "string"
|
||||||
|
},
|
||||||
|
"isLaunchable": {
|
||||||
|
"type": "boolean"
|
||||||
|
},
|
||||||
|
"recommendation": {
|
||||||
|
"$ref": "#/definitions/AppRecommendation"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"additionalProperties": false,
|
||||||
|
"required": [
|
||||||
|
"isLaunchable",
|
||||||
|
"packageName",
|
||||||
|
"recommendation",
|
||||||
|
"title"
|
||||||
|
],
|
||||||
|
"title": "SerializedInstalledApp"
|
||||||
|
},
|
||||||
|
"AppRecommendation": {
|
||||||
|
"enum": [
|
||||||
|
"blacklist",
|
||||||
|
"none",
|
||||||
|
"whitelist"
|
||||||
|
],
|
||||||
|
"type": "string",
|
||||||
|
"title": "AppRecommendation"
|
||||||
|
},
|
||||||
|
"SerializedAppActivityItem": {
|
||||||
|
"type": "object",
|
||||||
|
"properties": {
|
||||||
|
"p": {
|
||||||
|
"type": "string"
|
||||||
|
},
|
||||||
|
"c": {
|
||||||
|
"type": "string"
|
||||||
|
},
|
||||||
|
"t": {
|
||||||
|
"type": "string"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"additionalProperties": false,
|
||||||
|
"required": [
|
||||||
|
"c",
|
||||||
|
"p",
|
||||||
|
"t"
|
||||||
|
],
|
||||||
|
"title": "SerializedAppActivityItem"
|
||||||
|
},
|
||||||
|
"ServerUpdatedCategoryBaseData": {
|
||||||
|
"type": "object",
|
||||||
|
"properties": {
|
||||||
|
"categoryId": {
|
||||||
|
"type": "string"
|
||||||
|
},
|
||||||
|
"childId": {
|
||||||
|
"type": "string"
|
||||||
|
},
|
||||||
|
"title": {
|
||||||
|
"type": "string"
|
||||||
|
},
|
||||||
|
"blockedTimes": {
|
||||||
|
"type": "string"
|
||||||
|
},
|
||||||
|
"extraTime": {
|
||||||
|
"type": "number"
|
||||||
|
},
|
||||||
|
"extraTimeDay": {
|
||||||
|
"type": "number"
|
||||||
|
},
|
||||||
|
"tempBlocked": {
|
||||||
|
"type": "boolean"
|
||||||
|
},
|
||||||
|
"tempBlockTime": {
|
||||||
|
"type": "number"
|
||||||
|
},
|
||||||
|
"version": {
|
||||||
|
"type": "string"
|
||||||
|
},
|
||||||
|
"parentCategoryId": {
|
||||||
|
"type": "string"
|
||||||
|
},
|
||||||
|
"blockAllNotifications": {
|
||||||
|
"type": "boolean"
|
||||||
|
},
|
||||||
|
"timeWarnings": {
|
||||||
|
"type": "number"
|
||||||
|
},
|
||||||
|
"mblCharging": {
|
||||||
|
"type": "number"
|
||||||
|
},
|
||||||
|
"mblMobile": {
|
||||||
|
"type": "number"
|
||||||
|
},
|
||||||
|
"sort": {
|
||||||
|
"type": "number"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"additionalProperties": false,
|
||||||
|
"required": [
|
||||||
|
"blockAllNotifications",
|
||||||
|
"blockedTimes",
|
||||||
|
"categoryId",
|
||||||
|
"childId",
|
||||||
|
"extraTime",
|
||||||
|
"extraTimeDay",
|
||||||
|
"mblCharging",
|
||||||
|
"mblMobile",
|
||||||
|
"parentCategoryId",
|
||||||
|
"sort",
|
||||||
|
"tempBlockTime",
|
||||||
|
"tempBlocked",
|
||||||
|
"timeWarnings",
|
||||||
|
"title",
|
||||||
|
"version"
|
||||||
|
],
|
||||||
|
"title": "ServerUpdatedCategoryBaseData"
|
||||||
|
},
|
||||||
|
"ServerUpdatedCategoryAssignedApps": {
|
||||||
|
"type": "object",
|
||||||
|
"properties": {
|
||||||
|
"categoryId": {
|
||||||
|
"type": "string"
|
||||||
|
},
|
||||||
|
"apps": {
|
||||||
|
"type": "array",
|
||||||
|
"items": {
|
||||||
|
"type": "string"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"version": {
|
||||||
|
"type": "string"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"additionalProperties": false,
|
||||||
|
"required": [
|
||||||
|
"apps",
|
||||||
|
"categoryId",
|
||||||
|
"version"
|
||||||
|
],
|
||||||
|
"title": "ServerUpdatedCategoryAssignedApps"
|
||||||
|
},
|
||||||
|
"ServerUpdatedCategoryUsedTimes": {
|
||||||
|
"type": "object",
|
||||||
|
"properties": {
|
||||||
|
"categoryId": {
|
||||||
|
"type": "string"
|
||||||
|
},
|
||||||
|
"times": {
|
||||||
|
"type": "array",
|
||||||
|
"items": {
|
||||||
|
"$ref": "#/definitions/ServerUsedTimeItem"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"version": {
|
||||||
|
"type": "string"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"additionalProperties": false,
|
||||||
|
"required": [
|
||||||
|
"categoryId",
|
||||||
|
"times",
|
||||||
|
"version"
|
||||||
|
],
|
||||||
|
"title": "ServerUpdatedCategoryUsedTimes"
|
||||||
|
},
|
||||||
|
"ServerUsedTimeItem": {
|
||||||
|
"type": "object",
|
||||||
|
"properties": {
|
||||||
|
"day": {
|
||||||
|
"type": "number"
|
||||||
|
},
|
||||||
|
"time": {
|
||||||
|
"type": "number"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"additionalProperties": false,
|
||||||
|
"required": [
|
||||||
|
"day",
|
||||||
|
"time"
|
||||||
|
],
|
||||||
|
"title": "ServerUsedTimeItem"
|
||||||
|
},
|
||||||
|
"ServerUpdatedTimeLimitRules": {
|
||||||
|
"type": "object",
|
||||||
|
"properties": {
|
||||||
|
"categoryId": {
|
||||||
|
"type": "string"
|
||||||
|
},
|
||||||
|
"version": {
|
||||||
|
"type": "string"
|
||||||
|
},
|
||||||
|
"rules": {
|
||||||
|
"type": "array",
|
||||||
|
"items": {
|
||||||
|
"$ref": "#/definitions/ServerTimeLimitRule"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"additionalProperties": false,
|
||||||
|
"required": [
|
||||||
|
"categoryId",
|
||||||
|
"rules",
|
||||||
|
"version"
|
||||||
|
],
|
||||||
|
"title": "ServerUpdatedTimeLimitRules"
|
||||||
|
},
|
||||||
|
"ServerTimeLimitRule": {
|
||||||
|
"type": "object",
|
||||||
|
"properties": {
|
||||||
|
"id": {
|
||||||
|
"type": "string"
|
||||||
|
},
|
||||||
|
"extraTime": {
|
||||||
|
"type": "boolean"
|
||||||
|
},
|
||||||
|
"dayMask": {
|
||||||
|
"type": "number"
|
||||||
|
},
|
||||||
|
"maxTime": {
|
||||||
|
"type": "number"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"additionalProperties": false,
|
||||||
|
"required": [
|
||||||
|
"dayMask",
|
||||||
|
"extraTime",
|
||||||
|
"id",
|
||||||
|
"maxTime"
|
||||||
|
],
|
||||||
|
"title": "ServerTimeLimitRule"
|
||||||
|
},
|
||||||
|
"ServerUserList": {
|
||||||
|
"type": "object",
|
||||||
|
"properties": {
|
||||||
|
"version": {
|
||||||
|
"type": "string"
|
||||||
|
},
|
||||||
|
"data": {
|
||||||
|
"type": "array",
|
||||||
|
"items": {
|
||||||
|
"$ref": "#/definitions/ServerUserEntry"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"additionalProperties": false,
|
||||||
|
"required": [
|
||||||
|
"data",
|
||||||
|
"version"
|
||||||
|
],
|
||||||
|
"title": "ServerUserList"
|
||||||
|
},
|
||||||
|
"ServerUserEntry": {
|
||||||
|
"type": "object",
|
||||||
|
"properties": {
|
||||||
|
"id": {
|
||||||
|
"type": "string"
|
||||||
|
},
|
||||||
|
"name": {
|
||||||
|
"type": "string"
|
||||||
|
},
|
||||||
|
"password": {
|
||||||
|
"type": "string"
|
||||||
|
},
|
||||||
|
"secondPasswordSalt": {
|
||||||
|
"type": "string"
|
||||||
|
},
|
||||||
|
"type": {
|
||||||
|
"enum": [
|
||||||
|
"child",
|
||||||
|
"parent"
|
||||||
|
],
|
||||||
|
"type": "string"
|
||||||
|
},
|
||||||
|
"timeZone": {
|
||||||
|
"type": "string"
|
||||||
|
},
|
||||||
|
"disableLimitsUntil": {
|
||||||
|
"type": "number"
|
||||||
|
},
|
||||||
|
"mail": {
|
||||||
|
"type": "string"
|
||||||
|
},
|
||||||
|
"currentDevice": {
|
||||||
|
"type": "string"
|
||||||
|
},
|
||||||
|
"categoryForNotAssignedApps": {
|
||||||
|
"type": "string"
|
||||||
|
},
|
||||||
|
"relaxPrimaryDevice": {
|
||||||
|
"type": "boolean"
|
||||||
|
},
|
||||||
|
"mailNotificationFlags": {
|
||||||
|
"type": "number"
|
||||||
|
},
|
||||||
|
"blockedTimes": {
|
||||||
|
"type": "string"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"additionalProperties": false,
|
||||||
|
"required": [
|
||||||
|
"blockedTimes",
|
||||||
|
"categoryForNotAssignedApps",
|
||||||
|
"currentDevice",
|
||||||
|
"disableLimitsUntil",
|
||||||
|
"id",
|
||||||
|
"mail",
|
||||||
|
"mailNotificationFlags",
|
||||||
|
"name",
|
||||||
|
"password",
|
||||||
|
"relaxPrimaryDevice",
|
||||||
|
"secondPasswordSalt",
|
||||||
|
"timeZone",
|
||||||
|
"type"
|
||||||
|
],
|
||||||
|
"title": "ServerUserEntry"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"$schema": "http://json-schema.org/draft-07/schema#",
|
||||||
|
"title": "ServerDataStatus",
|
||||||
|
"$id": "https://timelimit.io/ServerDataStatus"
|
||||||
|
}
|
|
@ -0,0 +1,26 @@
|
||||||
|
# AppRecommendation Schema
|
||||||
|
|
||||||
|
```txt
|
||||||
|
https://timelimit.io/ServerDataStatus#/definitions/AppRecommendation
|
||||||
|
```
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
| Abstract | Extensible | Status | Identifiable | Custom Properties | Additional Properties | Access Restrictions | Defined In |
|
||||||
|
| :------------------ | ---------- | -------------- | ----------------------- | :---------------- | --------------------- | ------------------- | ------------------------------------------------------------------------------------- |
|
||||||
|
| Can be instantiated | No | Unknown status | Unknown identifiability | Forbidden | Allowed | none | [ServerDataStatus.schema.json\*](ServerDataStatus.schema.json "open original schema") |
|
||||||
|
|
||||||
|
## AppRecommendation Type
|
||||||
|
|
||||||
|
`string` ([AppRecommendation](serverdatastatus-definitions-apprecommendation.md))
|
||||||
|
|
||||||
|
## AppRecommendation Constraints
|
||||||
|
|
||||||
|
**enum**: the value of this property must be equal to one of the following values:
|
||||||
|
|
||||||
|
| Value | Explanation |
|
||||||
|
| :------------ | ----------- |
|
||||||
|
| `"blacklist"` | |
|
||||||
|
| `"none"` | |
|
||||||
|
| `"whitelist"` | |
|
|
@ -0,0 +1,26 @@
|
||||||
|
# NewPermissionStatus Schema
|
||||||
|
|
||||||
|
```txt
|
||||||
|
https://timelimit.io/ServerDataStatus#/definitions/NewPermissionStatus
|
||||||
|
```
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
| Abstract | Extensible | Status | Identifiable | Custom Properties | Additional Properties | Access Restrictions | Defined In |
|
||||||
|
| :------------------ | ---------- | -------------- | ----------------------- | :---------------- | --------------------- | ------------------- | ------------------------------------------------------------------------------------- |
|
||||||
|
| Can be instantiated | No | Unknown status | Unknown identifiability | Forbidden | Allowed | none | [ServerDataStatus.schema.json\*](ServerDataStatus.schema.json "open original schema") |
|
||||||
|
|
||||||
|
## NewPermissionStatus Type
|
||||||
|
|
||||||
|
`string` ([NewPermissionStatus](serverdatastatus-definitions-newpermissionstatus.md))
|
||||||
|
|
||||||
|
## NewPermissionStatus Constraints
|
||||||
|
|
||||||
|
**enum**: the value of this property must be equal to one of the following values:
|
||||||
|
|
||||||
|
| Value | Explanation |
|
||||||
|
| :---------------- | ----------- |
|
||||||
|
| `"granted"` | |
|
||||||
|
| `"not granted"` | |
|
||||||
|
| `"not supported"` | |
|
27
docs/schema/serverdatastatus-definitions-protectionlevel.md
Normal file
27
docs/schema/serverdatastatus-definitions-protectionlevel.md
Normal file
|
@ -0,0 +1,27 @@
|
||||||
|
# ProtectionLevel Schema
|
||||||
|
|
||||||
|
```txt
|
||||||
|
https://timelimit.io/ServerDataStatus#/definitions/ProtectionLevel
|
||||||
|
```
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
| Abstract | Extensible | Status | Identifiable | Custom Properties | Additional Properties | Access Restrictions | Defined In |
|
||||||
|
| :------------------ | ---------- | -------------- | ----------------------- | :---------------- | --------------------- | ------------------- | ------------------------------------------------------------------------------------- |
|
||||||
|
| Can be instantiated | No | Unknown status | Unknown identifiability | Forbidden | Allowed | none | [ServerDataStatus.schema.json\*](ServerDataStatus.schema.json "open original schema") |
|
||||||
|
|
||||||
|
## ProtectionLevel Type
|
||||||
|
|
||||||
|
`string` ([ProtectionLevel](serverdatastatus-definitions-protectionlevel.md))
|
||||||
|
|
||||||
|
## ProtectionLevel Constraints
|
||||||
|
|
||||||
|
**enum**: the value of this property must be equal to one of the following values:
|
||||||
|
|
||||||
|
| Value | Explanation |
|
||||||
|
| :------------------------ | ----------- |
|
||||||
|
| `"device owner"` | |
|
||||||
|
| `"none"` | |
|
||||||
|
| `"password device admin"` | |
|
||||||
|
| `"simple device admin"` | |
|
|
@ -0,0 +1,26 @@
|
||||||
|
# RuntimePermissionStatus Schema
|
||||||
|
|
||||||
|
```txt
|
||||||
|
https://timelimit.io/ServerDataStatus#/definitions/RuntimePermissionStatus
|
||||||
|
```
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
| Abstract | Extensible | Status | Identifiable | Custom Properties | Additional Properties | Access Restrictions | Defined In |
|
||||||
|
| :------------------ | ---------- | -------------- | ----------------------- | :---------------- | --------------------- | ------------------- | ------------------------------------------------------------------------------------- |
|
||||||
|
| Can be instantiated | No | Unknown status | Unknown identifiability | Forbidden | Allowed | none | [ServerDataStatus.schema.json\*](ServerDataStatus.schema.json "open original schema") |
|
||||||
|
|
||||||
|
## RuntimePermissionStatus Type
|
||||||
|
|
||||||
|
`string` ([RuntimePermissionStatus](serverdatastatus-definitions-runtimepermissionstatus.md))
|
||||||
|
|
||||||
|
## RuntimePermissionStatus Constraints
|
||||||
|
|
||||||
|
**enum**: the value of this property must be equal to one of the following values:
|
||||||
|
|
||||||
|
| Value | Explanation |
|
||||||
|
| :--------------- | ----------- |
|
||||||
|
| `"granted"` | |
|
||||||
|
| `"not granted"` | |
|
||||||
|
| `"not required"` | |
|
|
@ -0,0 +1,16 @@
|
||||||
|
# Untitled string in ServerDataStatus Schema
|
||||||
|
|
||||||
|
```txt
|
||||||
|
https://timelimit.io/ServerDataStatus#/definitions/SerializedAppActivityItem/properties/c
|
||||||
|
```
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
| Abstract | Extensible | Status | Identifiable | Custom Properties | Additional Properties | Access Restrictions | Defined In |
|
||||||
|
| :------------------ | ---------- | -------------- | ----------------------- | :---------------- | --------------------- | ------------------- | ------------------------------------------------------------------------------------- |
|
||||||
|
| Can be instantiated | No | Unknown status | Unknown identifiability | Forbidden | Allowed | none | [ServerDataStatus.schema.json\*](ServerDataStatus.schema.json "open original schema") |
|
||||||
|
|
||||||
|
## c Type
|
||||||
|
|
||||||
|
`string`
|
|
@ -0,0 +1,16 @@
|
||||||
|
# Untitled string in ServerDataStatus Schema
|
||||||
|
|
||||||
|
```txt
|
||||||
|
https://timelimit.io/ServerDataStatus#/definitions/SerializedAppActivityItem/properties/p
|
||||||
|
```
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
| Abstract | Extensible | Status | Identifiable | Custom Properties | Additional Properties | Access Restrictions | Defined In |
|
||||||
|
| :------------------ | ---------- | -------------- | ----------------------- | :---------------- | --------------------- | ------------------- | ------------------------------------------------------------------------------------- |
|
||||||
|
| Can be instantiated | No | Unknown status | Unknown identifiability | Forbidden | Allowed | none | [ServerDataStatus.schema.json\*](ServerDataStatus.schema.json "open original schema") |
|
||||||
|
|
||||||
|
## p Type
|
||||||
|
|
||||||
|
`string`
|
|
@ -0,0 +1,16 @@
|
||||||
|
# Untitled string in ServerDataStatus Schema
|
||||||
|
|
||||||
|
```txt
|
||||||
|
https://timelimit.io/ServerDataStatus#/definitions/SerializedAppActivityItem/properties/t
|
||||||
|
```
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
| Abstract | Extensible | Status | Identifiable | Custom Properties | Additional Properties | Access Restrictions | Defined In |
|
||||||
|
| :------------------ | ---------- | -------------- | ----------------------- | :---------------- | --------------------- | ------------------- | ------------------------------------------------------------------------------------- |
|
||||||
|
| Can be instantiated | No | Unknown status | Unknown identifiability | Forbidden | Allowed | none | [ServerDataStatus.schema.json\*](ServerDataStatus.schema.json "open original schema") |
|
||||||
|
|
||||||
|
## t Type
|
||||||
|
|
||||||
|
`string`
|
|
@ -0,0 +1,16 @@
|
||||||
|
# Untitled undefined type in ServerDataStatus Schema
|
||||||
|
|
||||||
|
```txt
|
||||||
|
https://timelimit.io/ServerDataStatus#/definitions/SerializedAppActivityItem/properties
|
||||||
|
```
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
| Abstract | Extensible | Status | Identifiable | Custom Properties | Additional Properties | Access Restrictions | Defined In |
|
||||||
|
| :------------------ | ---------- | -------------- | ----------------------- | :---------------- | --------------------- | ------------------- | ------------------------------------------------------------------------------------- |
|
||||||
|
| Can be instantiated | No | Unknown status | Unknown identifiability | Forbidden | Allowed | none | [ServerDataStatus.schema.json\*](ServerDataStatus.schema.json "open original schema") |
|
||||||
|
|
||||||
|
## properties Type
|
||||||
|
|
||||||
|
unknown
|
|
@ -0,0 +1,72 @@
|
||||||
|
# SerializedAppActivityItem Schema
|
||||||
|
|
||||||
|
```txt
|
||||||
|
https://timelimit.io/ServerDataStatus#/definitions/SerializedAppActivityItem
|
||||||
|
```
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
| Abstract | Extensible | Status | Identifiable | Custom Properties | Additional Properties | Access Restrictions | Defined In |
|
||||||
|
| :------------------ | ---------- | -------------- | ------------ | :---------------- | --------------------- | ------------------- | ------------------------------------------------------------------------------------- |
|
||||||
|
| Can be instantiated | No | Unknown status | No | Forbidden | Forbidden | none | [ServerDataStatus.schema.json\*](ServerDataStatus.schema.json "open original schema") |
|
||||||
|
|
||||||
|
## SerializedAppActivityItem Type
|
||||||
|
|
||||||
|
`object` ([SerializedAppActivityItem](serverdatastatus-definitions-serializedappactivityitem.md))
|
||||||
|
|
||||||
|
# SerializedAppActivityItem Properties
|
||||||
|
|
||||||
|
| Property | Type | Required | Nullable | Defined by |
|
||||||
|
| :------- | -------- | -------- | -------------- | :------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ |
|
||||||
|
| [p](#p) | `string` | Required | cannot be null | [ServerDataStatus](serverdatastatus-definitions-serializedappactivityitem-properties-p.md "https://timelimit.io/ServerDataStatus#/definitions/SerializedAppActivityItem/properties/p") |
|
||||||
|
| [c](#c) | `string` | Required | cannot be null | [ServerDataStatus](serverdatastatus-definitions-serializedappactivityitem-properties-c.md "https://timelimit.io/ServerDataStatus#/definitions/SerializedAppActivityItem/properties/c") |
|
||||||
|
| [t](#t) | `string` | Required | cannot be null | [ServerDataStatus](serverdatastatus-definitions-serializedappactivityitem-properties-t.md "https://timelimit.io/ServerDataStatus#/definitions/SerializedAppActivityItem/properties/t") |
|
||||||
|
|
||||||
|
## p
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
`p`
|
||||||
|
|
||||||
|
- is required
|
||||||
|
- Type: `string`
|
||||||
|
- cannot be null
|
||||||
|
- defined in: [ServerDataStatus](serverdatastatus-definitions-serializedappactivityitem-properties-p.md "https://timelimit.io/ServerDataStatus#/definitions/SerializedAppActivityItem/properties/p")
|
||||||
|
|
||||||
|
### p Type
|
||||||
|
|
||||||
|
`string`
|
||||||
|
|
||||||
|
## c
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
`c`
|
||||||
|
|
||||||
|
- is required
|
||||||
|
- Type: `string`
|
||||||
|
- cannot be null
|
||||||
|
- defined in: [ServerDataStatus](serverdatastatus-definitions-serializedappactivityitem-properties-c.md "https://timelimit.io/ServerDataStatus#/definitions/SerializedAppActivityItem/properties/c")
|
||||||
|
|
||||||
|
### c Type
|
||||||
|
|
||||||
|
`string`
|
||||||
|
|
||||||
|
## t
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
`t`
|
||||||
|
|
||||||
|
- is required
|
||||||
|
- Type: `string`
|
||||||
|
- cannot be null
|
||||||
|
- defined in: [ServerDataStatus](serverdatastatus-definitions-serializedappactivityitem-properties-t.md "https://timelimit.io/ServerDataStatus#/definitions/SerializedAppActivityItem/properties/t")
|
||||||
|
|
||||||
|
### t Type
|
||||||
|
|
||||||
|
`string`
|
|
@ -0,0 +1,26 @@
|
||||||
|
# AppRecommendation Schema
|
||||||
|
|
||||||
|
```txt
|
||||||
|
https://timelimit.io/ServerDataStatus#/definitions/SerializedInstalledApp/properties/recommendation
|
||||||
|
```
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
| Abstract | Extensible | Status | Identifiable | Custom Properties | Additional Properties | Access Restrictions | Defined In |
|
||||||
|
| :------------------ | ---------- | -------------- | ----------------------- | :---------------- | --------------------- | ------------------- | ------------------------------------------------------------------------------------- |
|
||||||
|
| Can be instantiated | No | Unknown status | Unknown identifiability | Forbidden | Allowed | none | [ServerDataStatus.schema.json\*](ServerDataStatus.schema.json "open original schema") |
|
||||||
|
|
||||||
|
## recommendation Type
|
||||||
|
|
||||||
|
`string` ([AppRecommendation](serverdatastatus-definitions-serializedinstalledapp-properties-apprecommendation.md))
|
||||||
|
|
||||||
|
## recommendation Constraints
|
||||||
|
|
||||||
|
**enum**: the value of this property must be equal to one of the following values:
|
||||||
|
|
||||||
|
| Value | Explanation |
|
||||||
|
| :------------ | ----------- |
|
||||||
|
| `"blacklist"` | |
|
||||||
|
| `"none"` | |
|
||||||
|
| `"whitelist"` | |
|
|
@ -0,0 +1,16 @@
|
||||||
|
# Untitled boolean in ServerDataStatus Schema
|
||||||
|
|
||||||
|
```txt
|
||||||
|
https://timelimit.io/ServerDataStatus#/definitions/SerializedInstalledApp/properties/isLaunchable
|
||||||
|
```
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
| Abstract | Extensible | Status | Identifiable | Custom Properties | Additional Properties | Access Restrictions | Defined In |
|
||||||
|
| :------------------ | ---------- | -------------- | ----------------------- | :---------------- | --------------------- | ------------------- | ------------------------------------------------------------------------------------- |
|
||||||
|
| Can be instantiated | No | Unknown status | Unknown identifiability | Forbidden | Allowed | none | [ServerDataStatus.schema.json\*](ServerDataStatus.schema.json "open original schema") |
|
||||||
|
|
||||||
|
## isLaunchable Type
|
||||||
|
|
||||||
|
`boolean`
|
|
@ -0,0 +1,16 @@
|
||||||
|
# Untitled string in ServerDataStatus Schema
|
||||||
|
|
||||||
|
```txt
|
||||||
|
https://timelimit.io/ServerDataStatus#/definitions/SerializedInstalledApp/properties/packageName
|
||||||
|
```
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
| Abstract | Extensible | Status | Identifiable | Custom Properties | Additional Properties | Access Restrictions | Defined In |
|
||||||
|
| :------------------ | ---------- | -------------- | ----------------------- | :---------------- | --------------------- | ------------------- | ------------------------------------------------------------------------------------- |
|
||||||
|
| Can be instantiated | No | Unknown status | Unknown identifiability | Forbidden | Allowed | none | [ServerDataStatus.schema.json\*](ServerDataStatus.schema.json "open original schema") |
|
||||||
|
|
||||||
|
## packageName Type
|
||||||
|
|
||||||
|
`string`
|
|
@ -0,0 +1,16 @@
|
||||||
|
# Untitled string in ServerDataStatus Schema
|
||||||
|
|
||||||
|
```txt
|
||||||
|
https://timelimit.io/ServerDataStatus#/definitions/SerializedInstalledApp/properties/title
|
||||||
|
```
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
| Abstract | Extensible | Status | Identifiable | Custom Properties | Additional Properties | Access Restrictions | Defined In |
|
||||||
|
| :------------------ | ---------- | -------------- | ----------------------- | :---------------- | --------------------- | ------------------- | ------------------------------------------------------------------------------------- |
|
||||||
|
| Can be instantiated | No | Unknown status | Unknown identifiability | Forbidden | Allowed | none | [ServerDataStatus.schema.json\*](ServerDataStatus.schema.json "open original schema") |
|
||||||
|
|
||||||
|
## title Type
|
||||||
|
|
||||||
|
`string`
|
|
@ -0,0 +1,16 @@
|
||||||
|
# \[object Object] Schema
|
||||||
|
|
||||||
|
```txt
|
||||||
|
https://timelimit.io/ServerDataStatus#/definitions/SerializedInstalledApp/properties
|
||||||
|
```
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
| Abstract | Extensible | Status | Identifiable | Custom Properties | Additional Properties | Access Restrictions | Defined In |
|
||||||
|
| :------------------ | ---------- | -------------- | ----------------------- | :---------------- | --------------------- | ------------------- | ------------------------------------------------------------------------------------- |
|
||||||
|
| Can be instantiated | No | Unknown status | Unknown identifiability | Forbidden | Allowed | none | [ServerDataStatus.schema.json\*](ServerDataStatus.schema.json "open original schema") |
|
||||||
|
|
||||||
|
## properties Type
|
||||||
|
|
||||||
|
unknown
|
|
@ -0,0 +1,99 @@
|
||||||
|
# SerializedInstalledApp Schema
|
||||||
|
|
||||||
|
```txt
|
||||||
|
https://timelimit.io/ServerDataStatus#/definitions/SerializedInstalledApp
|
||||||
|
```
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
| Abstract | Extensible | Status | Identifiable | Custom Properties | Additional Properties | Access Restrictions | Defined In |
|
||||||
|
| :------------------ | ---------- | -------------- | ------------ | :---------------- | --------------------- | ------------------- | ------------------------------------------------------------------------------------- |
|
||||||
|
| Can be instantiated | No | Unknown status | No | Forbidden | Forbidden | none | [ServerDataStatus.schema.json\*](ServerDataStatus.schema.json "open original schema") |
|
||||||
|
|
||||||
|
## SerializedInstalledApp Type
|
||||||
|
|
||||||
|
`object` ([SerializedInstalledApp](serverdatastatus-definitions-serializedinstalledapp.md))
|
||||||
|
|
||||||
|
# SerializedInstalledApp Properties
|
||||||
|
|
||||||
|
| Property | Type | Required | Nullable | Defined by |
|
||||||
|
| :-------------------------------- | --------- | -------- | -------------- | :----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
|
||||||
|
| [packageName](#packageName) | `string` | Required | cannot be null | [ServerDataStatus](serverdatastatus-definitions-serializedinstalledapp-properties-packagename.md "https://timelimit.io/ServerDataStatus#/definitions/SerializedInstalledApp/properties/packageName") |
|
||||||
|
| [title](#title) | `string` | Required | cannot be null | [ServerDataStatus](serverdatastatus-definitions-serializedinstalledapp-properties-title.md "https://timelimit.io/ServerDataStatus#/definitions/SerializedInstalledApp/properties/title") |
|
||||||
|
| [isLaunchable](#isLaunchable) | `boolean` | Required | cannot be null | [ServerDataStatus](serverdatastatus-definitions-serializedinstalledapp-properties-islaunchable.md "https://timelimit.io/ServerDataStatus#/definitions/SerializedInstalledApp/properties/isLaunchable") |
|
||||||
|
| [recommendation](#recommendation) | `string` | Required | cannot be null | [ServerDataStatus](serverdatastatus-definitions-serializedinstalledapp-properties-apprecommendation.md "https://timelimit.io/ServerDataStatus#/definitions/SerializedInstalledApp/properties/recommendation") |
|
||||||
|
|
||||||
|
## packageName
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
`packageName`
|
||||||
|
|
||||||
|
- is required
|
||||||
|
- Type: `string`
|
||||||
|
- cannot be null
|
||||||
|
- defined in: [ServerDataStatus](serverdatastatus-definitions-serializedinstalledapp-properties-packagename.md "https://timelimit.io/ServerDataStatus#/definitions/SerializedInstalledApp/properties/packageName")
|
||||||
|
|
||||||
|
### packageName Type
|
||||||
|
|
||||||
|
`string`
|
||||||
|
|
||||||
|
## title
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
`title`
|
||||||
|
|
||||||
|
- is required
|
||||||
|
- Type: `string`
|
||||||
|
- cannot be null
|
||||||
|
- defined in: [ServerDataStatus](serverdatastatus-definitions-serializedinstalledapp-properties-title.md "https://timelimit.io/ServerDataStatus#/definitions/SerializedInstalledApp/properties/title")
|
||||||
|
|
||||||
|
### title Type
|
||||||
|
|
||||||
|
`string`
|
||||||
|
|
||||||
|
## isLaunchable
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
`isLaunchable`
|
||||||
|
|
||||||
|
- is required
|
||||||
|
- Type: `boolean`
|
||||||
|
- cannot be null
|
||||||
|
- defined in: [ServerDataStatus](serverdatastatus-definitions-serializedinstalledapp-properties-islaunchable.md "https://timelimit.io/ServerDataStatus#/definitions/SerializedInstalledApp/properties/isLaunchable")
|
||||||
|
|
||||||
|
### isLaunchable Type
|
||||||
|
|
||||||
|
`boolean`
|
||||||
|
|
||||||
|
## recommendation
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
`recommendation`
|
||||||
|
|
||||||
|
- is required
|
||||||
|
- Type: `string` ([AppRecommendation](serverdatastatus-definitions-serializedinstalledapp-properties-apprecommendation.md))
|
||||||
|
- cannot be null
|
||||||
|
- defined in: [ServerDataStatus](serverdatastatus-definitions-serializedinstalledapp-properties-apprecommendation.md "https://timelimit.io/ServerDataStatus#/definitions/SerializedInstalledApp/properties/recommendation")
|
||||||
|
|
||||||
|
### recommendation Type
|
||||||
|
|
||||||
|
`string` ([AppRecommendation](serverdatastatus-definitions-serializedinstalledapp-properties-apprecommendation.md))
|
||||||
|
|
||||||
|
### recommendation Constraints
|
||||||
|
|
||||||
|
**enum**: the value of this property must be equal to one of the following values:
|
||||||
|
|
||||||
|
| Value | Explanation |
|
||||||
|
| :------------ | ----------- |
|
||||||
|
| `"blacklist"` | |
|
||||||
|
| `"none"` | |
|
||||||
|
| `"whitelist"` | |
|
|
@ -0,0 +1,16 @@
|
||||||
|
# Untitled boolean in ServerDataStatus Schema
|
||||||
|
|
||||||
|
```txt
|
||||||
|
https://timelimit.io/ServerDataStatus#/definitions/ServerDeviceData/properties/activityLevelBlocking
|
||||||
|
```
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
| Abstract | Extensible | Status | Identifiable | Custom Properties | Additional Properties | Access Restrictions | Defined In |
|
||||||
|
| :------------------ | ---------- | -------------- | ----------------------- | :---------------- | --------------------- | ------------------- | ------------------------------------------------------------------------------------- |
|
||||||
|
| Can be instantiated | No | Unknown status | Unknown identifiability | Forbidden | Allowed | none | [ServerDataStatus.schema.json\*](ServerDataStatus.schema.json "open original schema") |
|
||||||
|
|
||||||
|
## activityLevelBlocking Type
|
||||||
|
|
||||||
|
`boolean`
|
|
@ -0,0 +1,16 @@
|
||||||
|
# Untitled number in ServerDataStatus Schema
|
||||||
|
|
||||||
|
```txt
|
||||||
|
https://timelimit.io/ServerDataStatus#/definitions/ServerDeviceData/properties/addedAt
|
||||||
|
```
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
| Abstract | Extensible | Status | Identifiable | Custom Properties | Additional Properties | Access Restrictions | Defined In |
|
||||||
|
| :------------------ | ---------- | -------------- | ----------------------- | :---------------- | --------------------- | ------------------- | ------------------------------------------------------------------------------------- |
|
||||||
|
| Can be instantiated | No | Unknown status | Unknown identifiability | Forbidden | Allowed | none | [ServerDataStatus.schema.json\*](ServerDataStatus.schema.json "open original schema") |
|
||||||
|
|
||||||
|
## addedAt Type
|
||||||
|
|
||||||
|
`number`
|
|
@ -0,0 +1,16 @@
|
||||||
|
# Untitled boolean in ServerDataStatus Schema
|
||||||
|
|
||||||
|
```txt
|
||||||
|
https://timelimit.io/ServerDataStatus#/definitions/ServerDeviceData/properties/asEnabled
|
||||||
|
```
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
| Abstract | Extensible | Status | Identifiable | Custom Properties | Additional Properties | Access Restrictions | Defined In |
|
||||||
|
| :------------------ | ---------- | -------------- | ----------------------- | :---------------- | --------------------- | ------------------- | ------------------------------------------------------------------------------------- |
|
||||||
|
| Can be instantiated | No | Unknown status | Unknown identifiability | Forbidden | Allowed | none | [ServerDataStatus.schema.json\*](ServerDataStatus.schema.json "open original schema") |
|
||||||
|
|
||||||
|
## asEnabled Type
|
||||||
|
|
||||||
|
`boolean`
|
|
@ -0,0 +1,16 @@
|
||||||
|
# Untitled number in ServerDataStatus Schema
|
||||||
|
|
||||||
|
```txt
|
||||||
|
https://timelimit.io/ServerDataStatus#/definitions/ServerDeviceData/properties/cAppVersion
|
||||||
|
```
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
| Abstract | Extensible | Status | Identifiable | Custom Properties | Additional Properties | Access Restrictions | Defined In |
|
||||||
|
| :------------------ | ---------- | -------------- | ----------------------- | :---------------- | --------------------- | ------------------- | ------------------------------------------------------------------------------------- |
|
||||||
|
| Can be instantiated | No | Unknown status | Unknown identifiability | Forbidden | Allowed | none | [ServerDataStatus.schema.json\*](ServerDataStatus.schema.json "open original schema") |
|
||||||
|
|
||||||
|
## cAppVersion Type
|
||||||
|
|
||||||
|
`number`
|
|
@ -0,0 +1,16 @@
|
||||||
|
# Untitled string in ServerDataStatus Schema
|
||||||
|
|
||||||
|
```txt
|
||||||
|
https://timelimit.io/ServerDataStatus#/definitions/ServerDeviceData/properties/currentUserId
|
||||||
|
```
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
| Abstract | Extensible | Status | Identifiable | Custom Properties | Additional Properties | Access Restrictions | Defined In |
|
||||||
|
| :------------------ | ---------- | -------------- | ----------------------- | :---------------- | --------------------- | ------------------- | ------------------------------------------------------------------------------------- |
|
||||||
|
| Can be instantiated | No | Unknown status | Unknown identifiability | Forbidden | Allowed | none | [ServerDataStatus.schema.json\*](ServerDataStatus.schema.json "open original schema") |
|
||||||
|
|
||||||
|
## currentUserId Type
|
||||||
|
|
||||||
|
`string`
|
|
@ -0,0 +1,16 @@
|
||||||
|
# Untitled string in ServerDataStatus Schema
|
||||||
|
|
||||||
|
```txt
|
||||||
|
https://timelimit.io/ServerDataStatus#/definitions/ServerDeviceData/properties/defUser
|
||||||
|
```
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
| Abstract | Extensible | Status | Identifiable | Custom Properties | Additional Properties | Access Restrictions | Defined In |
|
||||||
|
| :------------------ | ---------- | -------------- | ----------------------- | :---------------- | --------------------- | ------------------- | ------------------------------------------------------------------------------------- |
|
||||||
|
| Can be instantiated | No | Unknown status | Unknown identifiability | Forbidden | Allowed | none | [ServerDataStatus.schema.json\*](ServerDataStatus.schema.json "open original schema") |
|
||||||
|
|
||||||
|
## defUser Type
|
||||||
|
|
||||||
|
`string`
|
|
@ -0,0 +1,16 @@
|
||||||
|
# Untitled number in ServerDataStatus Schema
|
||||||
|
|
||||||
|
```txt
|
||||||
|
https://timelimit.io/ServerDataStatus#/definitions/ServerDeviceData/properties/defUserTimeout
|
||||||
|
```
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
| Abstract | Extensible | Status | Identifiable | Custom Properties | Additional Properties | Access Restrictions | Defined In |
|
||||||
|
| :------------------ | ---------- | -------------- | ----------------------- | :---------------- | --------------------- | ------------------- | ------------------------------------------------------------------------------------- |
|
||||||
|
| Can be instantiated | No | Unknown status | Unknown identifiability | Forbidden | Allowed | none | [ServerDataStatus.schema.json\*](ServerDataStatus.schema.json "open original schema") |
|
||||||
|
|
||||||
|
## defUserTimeout Type
|
||||||
|
|
||||||
|
`number`
|
|
@ -0,0 +1,16 @@
|
||||||
|
# Untitled string in ServerDataStatus Schema
|
||||||
|
|
||||||
|
```txt
|
||||||
|
https://timelimit.io/ServerDataStatus#/definitions/ServerDeviceData/properties/deviceId
|
||||||
|
```
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
| Abstract | Extensible | Status | Identifiable | Custom Properties | Additional Properties | Access Restrictions | Defined In |
|
||||||
|
| :------------------ | ---------- | -------------- | ----------------------- | :---------------- | --------------------- | ------------------- | ------------------------------------------------------------------------------------- |
|
||||||
|
| Can be instantiated | No | Unknown status | Unknown identifiability | Forbidden | Allowed | none | [ServerDataStatus.schema.json\*](ServerDataStatus.schema.json "open original schema") |
|
||||||
|
|
||||||
|
## deviceId Type
|
||||||
|
|
||||||
|
`string`
|
|
@ -0,0 +1,16 @@
|
||||||
|
# Untitled boolean in ServerDataStatus Schema
|
||||||
|
|
||||||
|
```txt
|
||||||
|
https://timelimit.io/ServerDataStatus#/definitions/ServerDeviceData/properties/hadManipulation
|
||||||
|
```
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
| Abstract | Extensible | Status | Identifiable | Custom Properties | Additional Properties | Access Restrictions | Defined In |
|
||||||
|
| :------------------ | ---------- | -------------- | ----------------------- | :---------------- | --------------------- | ------------------- | ------------------------------------------------------------------------------------- |
|
||||||
|
| Can be instantiated | No | Unknown status | Unknown identifiability | Forbidden | Allowed | none | [ServerDataStatus.schema.json\*](ServerDataStatus.schema.json "open original schema") |
|
||||||
|
|
||||||
|
## hadManipulation Type
|
||||||
|
|
||||||
|
`boolean`
|
|
@ -0,0 +1,16 @@
|
||||||
|
# Untitled number in ServerDataStatus Schema
|
||||||
|
|
||||||
|
```txt
|
||||||
|
https://timelimit.io/ServerDataStatus#/definitions/ServerDeviceData/properties/hadManipulationFlags
|
||||||
|
```
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
| Abstract | Extensible | Status | Identifiable | Custom Properties | Additional Properties | Access Restrictions | Defined In |
|
||||||
|
| :------------------ | ---------- | -------------- | ----------------------- | :---------------- | --------------------- | ------------------- | ------------------------------------------------------------------------------------- |
|
||||||
|
| Can be instantiated | No | Unknown status | Unknown identifiability | Forbidden | Allowed | none | [ServerDataStatus.schema.json\*](ServerDataStatus.schema.json "open original schema") |
|
||||||
|
|
||||||
|
## hadManipulationFlags Type
|
||||||
|
|
||||||
|
`number`
|
|
@ -0,0 +1,16 @@
|
||||||
|
# Untitled number in ServerDataStatus Schema
|
||||||
|
|
||||||
|
```txt
|
||||||
|
https://timelimit.io/ServerDataStatus#/definitions/ServerDeviceData/properties/hAppVersion
|
||||||
|
```
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
| Abstract | Extensible | Status | Identifiable | Custom Properties | Additional Properties | Access Restrictions | Defined In |
|
||||||
|
| :------------------ | ---------- | -------------- | ----------------------- | :---------------- | --------------------- | ------------------- | ------------------------------------------------------------------------------------- |
|
||||||
|
| Can be instantiated | No | Unknown status | Unknown identifiability | Forbidden | Allowed | none | [ServerDataStatus.schema.json\*](ServerDataStatus.schema.json "open original schema") |
|
||||||
|
|
||||||
|
## hAppVersion Type
|
||||||
|
|
||||||
|
`number`
|
|
@ -0,0 +1,16 @@
|
||||||
|
# Untitled boolean in ServerDataStatus Schema
|
||||||
|
|
||||||
|
```txt
|
||||||
|
https://timelimit.io/ServerDataStatus#/definitions/ServerDeviceData/properties/isUserKeptSignedIn
|
||||||
|
```
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
| Abstract | Extensible | Status | Identifiable | Custom Properties | Additional Properties | Access Restrictions | Defined In |
|
||||||
|
| :------------------ | ---------- | -------------- | ----------------------- | :---------------- | --------------------- | ------------------- | ------------------------------------------------------------------------------------- |
|
||||||
|
| Can be instantiated | No | Unknown status | Unknown identifiability | Forbidden | Allowed | none | [ServerDataStatus.schema.json\*](ServerDataStatus.schema.json "open original schema") |
|
||||||
|
|
||||||
|
## isUserKeptSignedIn Type
|
||||||
|
|
||||||
|
`boolean`
|
|
@ -0,0 +1,16 @@
|
||||||
|
# Untitled string in ServerDataStatus Schema
|
||||||
|
|
||||||
|
```txt
|
||||||
|
https://timelimit.io/ServerDataStatus#/definitions/ServerDeviceData/properties/model
|
||||||
|
```
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
| Abstract | Extensible | Status | Identifiable | Custom Properties | Additional Properties | Access Restrictions | Defined In |
|
||||||
|
| :------------------ | ---------- | -------------- | ----------------------- | :---------------- | --------------------- | ------------------- | ------------------------------------------------------------------------------------- |
|
||||||
|
| Can be instantiated | No | Unknown status | Unknown identifiability | Forbidden | Allowed | none | [ServerDataStatus.schema.json\*](ServerDataStatus.schema.json "open original schema") |
|
||||||
|
|
||||||
|
## model Type
|
||||||
|
|
||||||
|
`string`
|
|
@ -0,0 +1,16 @@
|
||||||
|
# Untitled string in ServerDataStatus Schema
|
||||||
|
|
||||||
|
```txt
|
||||||
|
https://timelimit.io/ServerDataStatus#/definitions/ServerDeviceData/properties/name
|
||||||
|
```
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
| Abstract | Extensible | Status | Identifiable | Custom Properties | Additional Properties | Access Restrictions | Defined In |
|
||||||
|
| :------------------ | ---------- | -------------- | ----------------------- | :---------------- | --------------------- | ------------------- | ------------------------------------------------------------------------------------- |
|
||||||
|
| Can be instantiated | No | Unknown status | Unknown identifiability | Forbidden | Allowed | none | [ServerDataStatus.schema.json\*](ServerDataStatus.schema.json "open original schema") |
|
||||||
|
|
||||||
|
## name Type
|
||||||
|
|
||||||
|
`string`
|
|
@ -0,0 +1,26 @@
|
||||||
|
# Untitled string in ServerDataStatus Schema
|
||||||
|
|
||||||
|
```txt
|
||||||
|
https://timelimit.io/ServerDataStatus#/definitions/ServerDeviceData/properties/networkTime
|
||||||
|
```
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
| Abstract | Extensible | Status | Identifiable | Custom Properties | Additional Properties | Access Restrictions | Defined In |
|
||||||
|
| :------------------ | ---------- | -------------- | ----------------------- | :---------------- | --------------------- | ------------------- | ------------------------------------------------------------------------------------- |
|
||||||
|
| Can be instantiated | No | Unknown status | Unknown identifiability | Forbidden | Allowed | none | [ServerDataStatus.schema.json\*](ServerDataStatus.schema.json "open original schema") |
|
||||||
|
|
||||||
|
## networkTime Type
|
||||||
|
|
||||||
|
`string`
|
||||||
|
|
||||||
|
## networkTime Constraints
|
||||||
|
|
||||||
|
**enum**: the value of this property must be equal to one of the following values:
|
||||||
|
|
||||||
|
| Value | Explanation |
|
||||||
|
| :-------------- | ----------- |
|
||||||
|
| `"disabled"` | |
|
||||||
|
| `"enabled"` | |
|
||||||
|
| `"if possible"` | |
|
|
@ -0,0 +1,26 @@
|
||||||
|
# NewPermissionStatus Schema
|
||||||
|
|
||||||
|
```txt
|
||||||
|
https://timelimit.io/ServerDataStatus#/definitions/ServerDeviceData/properties/hNotificationAccess
|
||||||
|
```
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
| Abstract | Extensible | Status | Identifiable | Custom Properties | Additional Properties | Access Restrictions | Defined In |
|
||||||
|
| :------------------ | ---------- | -------------- | ----------------------- | :---------------- | --------------------- | ------------------- | ------------------------------------------------------------------------------------- |
|
||||||
|
| Can be instantiated | No | Unknown status | Unknown identifiability | Forbidden | Allowed | none | [ServerDataStatus.schema.json\*](ServerDataStatus.schema.json "open original schema") |
|
||||||
|
|
||||||
|
## hNotificationAccess Type
|
||||||
|
|
||||||
|
`string` ([NewPermissionStatus](serverdatastatus-definitions-serverdevicedata-properties-newpermissionstatus-1.md))
|
||||||
|
|
||||||
|
## hNotificationAccess Constraints
|
||||||
|
|
||||||
|
**enum**: the value of this property must be equal to one of the following values:
|
||||||
|
|
||||||
|
| Value | Explanation |
|
||||||
|
| :---------------- | ----------- |
|
||||||
|
| `"granted"` | |
|
||||||
|
| `"not granted"` | |
|
||||||
|
| `"not supported"` | |
|
|
@ -0,0 +1,26 @@
|
||||||
|
# NewPermissionStatus Schema
|
||||||
|
|
||||||
|
```txt
|
||||||
|
https://timelimit.io/ServerDataStatus#/definitions/ServerDeviceData/properties/cNotificationAccess
|
||||||
|
```
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
| Abstract | Extensible | Status | Identifiable | Custom Properties | Additional Properties | Access Restrictions | Defined In |
|
||||||
|
| :------------------ | ---------- | -------------- | ----------------------- | :---------------- | --------------------- | ------------------- | ------------------------------------------------------------------------------------- |
|
||||||
|
| Can be instantiated | No | Unknown status | Unknown identifiability | Forbidden | Allowed | none | [ServerDataStatus.schema.json\*](ServerDataStatus.schema.json "open original schema") |
|
||||||
|
|
||||||
|
## cNotificationAccess Type
|
||||||
|
|
||||||
|
`string` ([NewPermissionStatus](serverdatastatus-definitions-serverdevicedata-properties-newpermissionstatus.md))
|
||||||
|
|
||||||
|
## cNotificationAccess Constraints
|
||||||
|
|
||||||
|
**enum**: the value of this property must be equal to one of the following values:
|
||||||
|
|
||||||
|
| Value | Explanation |
|
||||||
|
| :---------------- | ----------- |
|
||||||
|
| `"granted"` | |
|
||||||
|
| `"not granted"` | |
|
||||||
|
| `"not supported"` | |
|
|
@ -0,0 +1,27 @@
|
||||||
|
# ProtectionLevel Schema
|
||||||
|
|
||||||
|
```txt
|
||||||
|
https://timelimit.io/ServerDataStatus#/definitions/ServerDeviceData/properties/hProtectionLevel
|
||||||
|
```
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
| Abstract | Extensible | Status | Identifiable | Custom Properties | Additional Properties | Access Restrictions | Defined In |
|
||||||
|
| :------------------ | ---------- | -------------- | ----------------------- | :---------------- | --------------------- | ------------------- | ------------------------------------------------------------------------------------- |
|
||||||
|
| Can be instantiated | No | Unknown status | Unknown identifiability | Forbidden | Allowed | none | [ServerDataStatus.schema.json\*](ServerDataStatus.schema.json "open original schema") |
|
||||||
|
|
||||||
|
## hProtectionLevel Type
|
||||||
|
|
||||||
|
`string` ([ProtectionLevel](serverdatastatus-definitions-serverdevicedata-properties-protectionlevel-1.md))
|
||||||
|
|
||||||
|
## hProtectionLevel Constraints
|
||||||
|
|
||||||
|
**enum**: the value of this property must be equal to one of the following values:
|
||||||
|
|
||||||
|
| Value | Explanation |
|
||||||
|
| :------------------------ | ----------- |
|
||||||
|
| `"device owner"` | |
|
||||||
|
| `"none"` | |
|
||||||
|
| `"password device admin"` | |
|
||||||
|
| `"simple device admin"` | |
|
|
@ -0,0 +1,27 @@
|
||||||
|
# ProtectionLevel Schema
|
||||||
|
|
||||||
|
```txt
|
||||||
|
https://timelimit.io/ServerDataStatus#/definitions/ServerDeviceData/properties/cProtectionLevel
|
||||||
|
```
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
| Abstract | Extensible | Status | Identifiable | Custom Properties | Additional Properties | Access Restrictions | Defined In |
|
||||||
|
| :------------------ | ---------- | -------------- | ----------------------- | :---------------- | --------------------- | ------------------- | ------------------------------------------------------------------------------------- |
|
||||||
|
| Can be instantiated | No | Unknown status | Unknown identifiability | Forbidden | Allowed | none | [ServerDataStatus.schema.json\*](ServerDataStatus.schema.json "open original schema") |
|
||||||
|
|
||||||
|
## cProtectionLevel Type
|
||||||
|
|
||||||
|
`string` ([ProtectionLevel](serverdatastatus-definitions-serverdevicedata-properties-protectionlevel.md))
|
||||||
|
|
||||||
|
## cProtectionLevel Constraints
|
||||||
|
|
||||||
|
**enum**: the value of this property must be equal to one of the following values:
|
||||||
|
|
||||||
|
| Value | Explanation |
|
||||||
|
| :------------------------ | ----------- |
|
||||||
|
| `"device owner"` | |
|
||||||
|
| `"none"` | |
|
||||||
|
| `"password device admin"` | |
|
||||||
|
| `"simple device admin"` | |
|
|
@ -0,0 +1,16 @@
|
||||||
|
# Untitled boolean in ServerDataStatus Schema
|
||||||
|
|
||||||
|
```txt
|
||||||
|
https://timelimit.io/ServerDataStatus#/definitions/ServerDeviceData/properties/qOrLater
|
||||||
|
```
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
| Abstract | Extensible | Status | Identifiable | Custom Properties | Additional Properties | Access Restrictions | Defined In |
|
||||||
|
| :------------------ | ---------- | -------------- | ----------------------- | :---------------- | --------------------- | ------------------- | ------------------------------------------------------------------------------------- |
|
||||||
|
| Can be instantiated | No | Unknown status | Unknown identifiability | Forbidden | Allowed | none | [ServerDataStatus.schema.json\*](ServerDataStatus.schema.json "open original schema") |
|
||||||
|
|
||||||
|
## qOrLater Type
|
||||||
|
|
||||||
|
`boolean`
|
|
@ -0,0 +1,16 @@
|
||||||
|
# Untitled boolean in ServerDataStatus Schema
|
||||||
|
|
||||||
|
```txt
|
||||||
|
https://timelimit.io/ServerDataStatus#/definitions/ServerDeviceData/properties/reboot
|
||||||
|
```
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
| Abstract | Extensible | Status | Identifiable | Custom Properties | Additional Properties | Access Restrictions | Defined In |
|
||||||
|
| :------------------ | ---------- | -------------- | ----------------------- | :---------------- | --------------------- | ------------------- | ------------------------------------------------------------------------------------- |
|
||||||
|
| Can be instantiated | No | Unknown status | Unknown identifiability | Forbidden | Allowed | none | [ServerDataStatus.schema.json\*](ServerDataStatus.schema.json "open original schema") |
|
||||||
|
|
||||||
|
## reboot Type
|
||||||
|
|
||||||
|
`boolean`
|
|
@ -0,0 +1,16 @@
|
||||||
|
# Untitled boolean in ServerDataStatus Schema
|
||||||
|
|
||||||
|
```txt
|
||||||
|
https://timelimit.io/ServerDataStatus#/definitions/ServerDeviceData/properties/rebootIsManipulation
|
||||||
|
```
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
| Abstract | Extensible | Status | Identifiable | Custom Properties | Additional Properties | Access Restrictions | Defined In |
|
||||||
|
| :------------------ | ---------- | -------------- | ----------------------- | :---------------- | --------------------- | ------------------- | ------------------------------------------------------------------------------------- |
|
||||||
|
| Can be instantiated | No | Unknown status | Unknown identifiability | Forbidden | Allowed | none | [ServerDataStatus.schema.json\*](ServerDataStatus.schema.json "open original schema") |
|
||||||
|
|
||||||
|
## rebootIsManipulation Type
|
||||||
|
|
||||||
|
`boolean`
|
|
@ -0,0 +1,16 @@
|
||||||
|
# Untitled boolean in ServerDataStatus Schema
|
||||||
|
|
||||||
|
```txt
|
||||||
|
https://timelimit.io/ServerDataStatus#/definitions/ServerDeviceData/properties/reportUninstall
|
||||||
|
```
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
| Abstract | Extensible | Status | Identifiable | Custom Properties | Additional Properties | Access Restrictions | Defined In |
|
||||||
|
| :------------------ | ---------- | -------------- | ----------------------- | :---------------- | --------------------- | ------------------- | ------------------------------------------------------------------------------------- |
|
||||||
|
| Can be instantiated | No | Unknown status | Unknown identifiability | Forbidden | Allowed | none | [ServerDataStatus.schema.json\*](ServerDataStatus.schema.json "open original schema") |
|
||||||
|
|
||||||
|
## reportUninstall Type
|
||||||
|
|
||||||
|
`boolean`
|
|
@ -0,0 +1,26 @@
|
||||||
|
# RuntimePermissionStatus Schema
|
||||||
|
|
||||||
|
```txt
|
||||||
|
https://timelimit.io/ServerDataStatus#/definitions/ServerDeviceData/properties/hUsageStats
|
||||||
|
```
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
| Abstract | Extensible | Status | Identifiable | Custom Properties | Additional Properties | Access Restrictions | Defined In |
|
||||||
|
| :------------------ | ---------- | -------------- | ----------------------- | :---------------- | --------------------- | ------------------- | ------------------------------------------------------------------------------------- |
|
||||||
|
| Can be instantiated | No | Unknown status | Unknown identifiability | Forbidden | Allowed | none | [ServerDataStatus.schema.json\*](ServerDataStatus.schema.json "open original schema") |
|
||||||
|
|
||||||
|
## hUsageStats Type
|
||||||
|
|
||||||
|
`string` ([RuntimePermissionStatus](serverdatastatus-definitions-serverdevicedata-properties-runtimepermissionstatus-1.md))
|
||||||
|
|
||||||
|
## hUsageStats Constraints
|
||||||
|
|
||||||
|
**enum**: the value of this property must be equal to one of the following values:
|
||||||
|
|
||||||
|
| Value | Explanation |
|
||||||
|
| :--------------- | ----------- |
|
||||||
|
| `"granted"` | |
|
||||||
|
| `"not granted"` | |
|
||||||
|
| `"not required"` | |
|
|
@ -0,0 +1,26 @@
|
||||||
|
# RuntimePermissionStatus Schema
|
||||||
|
|
||||||
|
```txt
|
||||||
|
https://timelimit.io/ServerDataStatus#/definitions/ServerDeviceData/properties/cOverlay
|
||||||
|
```
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
| Abstract | Extensible | Status | Identifiable | Custom Properties | Additional Properties | Access Restrictions | Defined In |
|
||||||
|
| :------------------ | ---------- | -------------- | ----------------------- | :---------------- | --------------------- | ------------------- | ------------------------------------------------------------------------------------- |
|
||||||
|
| Can be instantiated | No | Unknown status | Unknown identifiability | Forbidden | Allowed | none | [ServerDataStatus.schema.json\*](ServerDataStatus.schema.json "open original schema") |
|
||||||
|
|
||||||
|
## cOverlay Type
|
||||||
|
|
||||||
|
`string` ([RuntimePermissionStatus](serverdatastatus-definitions-serverdevicedata-properties-runtimepermissionstatus-2.md))
|
||||||
|
|
||||||
|
## cOverlay Constraints
|
||||||
|
|
||||||
|
**enum**: the value of this property must be equal to one of the following values:
|
||||||
|
|
||||||
|
| Value | Explanation |
|
||||||
|
| :--------------- | ----------- |
|
||||||
|
| `"granted"` | |
|
||||||
|
| `"not granted"` | |
|
||||||
|
| `"not required"` | |
|
|
@ -0,0 +1,26 @@
|
||||||
|
# RuntimePermissionStatus Schema
|
||||||
|
|
||||||
|
```txt
|
||||||
|
https://timelimit.io/ServerDataStatus#/definitions/ServerDeviceData/properties/hOverlay
|
||||||
|
```
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
| Abstract | Extensible | Status | Identifiable | Custom Properties | Additional Properties | Access Restrictions | Defined In |
|
||||||
|
| :------------------ | ---------- | -------------- | ----------------------- | :---------------- | --------------------- | ------------------- | ------------------------------------------------------------------------------------- |
|
||||||
|
| Can be instantiated | No | Unknown status | Unknown identifiability | Forbidden | Allowed | none | [ServerDataStatus.schema.json\*](ServerDataStatus.schema.json "open original schema") |
|
||||||
|
|
||||||
|
## hOverlay Type
|
||||||
|
|
||||||
|
`string` ([RuntimePermissionStatus](serverdatastatus-definitions-serverdevicedata-properties-runtimepermissionstatus-3.md))
|
||||||
|
|
||||||
|
## hOverlay Constraints
|
||||||
|
|
||||||
|
**enum**: the value of this property must be equal to one of the following values:
|
||||||
|
|
||||||
|
| Value | Explanation |
|
||||||
|
| :--------------- | ----------- |
|
||||||
|
| `"granted"` | |
|
||||||
|
| `"not granted"` | |
|
||||||
|
| `"not required"` | |
|
|
@ -0,0 +1,26 @@
|
||||||
|
# RuntimePermissionStatus Schema
|
||||||
|
|
||||||
|
```txt
|
||||||
|
https://timelimit.io/ServerDataStatus#/definitions/ServerDeviceData/properties/cUsageStats
|
||||||
|
```
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
| Abstract | Extensible | Status | Identifiable | Custom Properties | Additional Properties | Access Restrictions | Defined In |
|
||||||
|
| :------------------ | ---------- | -------------- | ----------------------- | :---------------- | --------------------- | ------------------- | ------------------------------------------------------------------------------------- |
|
||||||
|
| Can be instantiated | No | Unknown status | Unknown identifiability | Forbidden | Allowed | none | [ServerDataStatus.schema.json\*](ServerDataStatus.schema.json "open original schema") |
|
||||||
|
|
||||||
|
## cUsageStats Type
|
||||||
|
|
||||||
|
`string` ([RuntimePermissionStatus](serverdatastatus-definitions-serverdevicedata-properties-runtimepermissionstatus.md))
|
||||||
|
|
||||||
|
## cUsageStats Constraints
|
||||||
|
|
||||||
|
**enum**: the value of this property must be equal to one of the following values:
|
||||||
|
|
||||||
|
| Value | Explanation |
|
||||||
|
| :--------------- | ----------- |
|
||||||
|
| `"granted"` | |
|
||||||
|
| `"not granted"` | |
|
||||||
|
| `"not required"` | |
|
|
@ -0,0 +1,16 @@
|
||||||
|
# Untitled boolean in ServerDataStatus Schema
|
||||||
|
|
||||||
|
```txt
|
||||||
|
https://timelimit.io/ServerDataStatus#/definitions/ServerDeviceData/properties/showDeviceConnected
|
||||||
|
```
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
| Abstract | Extensible | Status | Identifiable | Custom Properties | Additional Properties | Access Restrictions | Defined In |
|
||||||
|
| :------------------ | ---------- | -------------- | ----------------------- | :---------------- | --------------------- | ------------------- | ------------------------------------------------------------------------------------- |
|
||||||
|
| Can be instantiated | No | Unknown status | Unknown identifiability | Forbidden | Allowed | none | [ServerDataStatus.schema.json\*](ServerDataStatus.schema.json "open original schema") |
|
||||||
|
|
||||||
|
## showDeviceConnected Type
|
||||||
|
|
||||||
|
`boolean`
|
|
@ -0,0 +1,16 @@
|
||||||
|
# Untitled boolean in ServerDataStatus Schema
|
||||||
|
|
||||||
|
```txt
|
||||||
|
https://timelimit.io/ServerDataStatus#/definitions/ServerDeviceData/properties/tDisablingAdmin
|
||||||
|
```
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
| Abstract | Extensible | Status | Identifiable | Custom Properties | Additional Properties | Access Restrictions | Defined In |
|
||||||
|
| :------------------ | ---------- | -------------- | ----------------------- | :---------------- | --------------------- | ------------------- | ------------------------------------------------------------------------------------- |
|
||||||
|
| Can be instantiated | No | Unknown status | Unknown identifiability | Forbidden | Allowed | none | [ServerDataStatus.schema.json\*](ServerDataStatus.schema.json "open original schema") |
|
||||||
|
|
||||||
|
## tDisablingAdmin Type
|
||||||
|
|
||||||
|
`boolean`
|
|
@ -0,0 +1,16 @@
|
||||||
|
# Untitled boolean in ServerDataStatus Schema
|
||||||
|
|
||||||
|
```txt
|
||||||
|
https://timelimit.io/ServerDataStatus#/definitions/ServerDeviceData/properties/wasAsEnabled
|
||||||
|
```
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
| Abstract | Extensible | Status | Identifiable | Custom Properties | Additional Properties | Access Restrictions | Defined In |
|
||||||
|
| :------------------ | ---------- | -------------- | ----------------------- | :---------------- | --------------------- | ------------------- | ------------------------------------------------------------------------------------- |
|
||||||
|
| Can be instantiated | No | Unknown status | Unknown identifiability | Forbidden | Allowed | none | [ServerDataStatus.schema.json\*](ServerDataStatus.schema.json "open original schema") |
|
||||||
|
|
||||||
|
## wasAsEnabled Type
|
||||||
|
|
||||||
|
`boolean`
|
|
@ -0,0 +1,16 @@
|
||||||
|
# Untitled undefined type in ServerDataStatus Schema
|
||||||
|
|
||||||
|
```txt
|
||||||
|
https://timelimit.io/ServerDataStatus#/definitions/ServerDeviceData/properties
|
||||||
|
```
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
| Abstract | Extensible | Status | Identifiable | Custom Properties | Additional Properties | Access Restrictions | Defined In |
|
||||||
|
| :------------------ | ---------- | -------------- | ----------------------- | :---------------- | --------------------- | ------------------- | ------------------------------------------------------------------------------------- |
|
||||||
|
| Can be instantiated | No | Unknown status | Unknown identifiability | Forbidden | Allowed | none | [ServerDataStatus.schema.json\*](ServerDataStatus.schema.json "open original schema") |
|
||||||
|
|
||||||
|
## properties Type
|
||||||
|
|
||||||
|
unknown
|
623
docs/schema/serverdatastatus-definitions-serverdevicedata.md
Normal file
623
docs/schema/serverdatastatus-definitions-serverdevicedata.md
Normal file
|
@ -0,0 +1,623 @@
|
||||||
|
# ServerDeviceData Schema
|
||||||
|
|
||||||
|
```txt
|
||||||
|
https://timelimit.io/ServerDataStatus#/definitions/ServerDeviceData
|
||||||
|
```
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
| Abstract | Extensible | Status | Identifiable | Custom Properties | Additional Properties | Access Restrictions | Defined In |
|
||||||
|
| :------------------ | ---------- | -------------- | ------------ | :---------------- | --------------------- | ------------------- | ------------------------------------------------------------------------------------- |
|
||||||
|
| Can be instantiated | No | Unknown status | No | Forbidden | Forbidden | none | [ServerDataStatus.schema.json\*](ServerDataStatus.schema.json "open original schema") |
|
||||||
|
|
||||||
|
## ServerDeviceData Type
|
||||||
|
|
||||||
|
`object` ([ServerDeviceData](serverdatastatus-definitions-serverdevicedata.md))
|
||||||
|
|
||||||
|
# ServerDeviceData Properties
|
||||||
|
|
||||||
|
| Property | Type | Required | Nullable | Defined by |
|
||||||
|
| :---------------------------------------------- | --------- | -------- | -------------- | :---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
|
||||||
|
| [deviceId](#deviceId) | `string` | Required | cannot be null | [ServerDataStatus](serverdatastatus-definitions-serverdevicedata-properties-deviceid.md "https://timelimit.io/ServerDataStatus#/definitions/ServerDeviceData/properties/deviceId") |
|
||||||
|
| [name](#name) | `string` | Required | cannot be null | [ServerDataStatus](serverdatastatus-definitions-serverdevicedata-properties-name.md "https://timelimit.io/ServerDataStatus#/definitions/ServerDeviceData/properties/name") |
|
||||||
|
| [model](#model) | `string` | Required | cannot be null | [ServerDataStatus](serverdatastatus-definitions-serverdevicedata-properties-model.md "https://timelimit.io/ServerDataStatus#/definitions/ServerDeviceData/properties/model") |
|
||||||
|
| [addedAt](#addedAt) | `number` | Required | cannot be null | [ServerDataStatus](serverdatastatus-definitions-serverdevicedata-properties-addedat.md "https://timelimit.io/ServerDataStatus#/definitions/ServerDeviceData/properties/addedAt") |
|
||||||
|
| [currentUserId](#currentUserId) | `string` | Required | cannot be null | [ServerDataStatus](serverdatastatus-definitions-serverdevicedata-properties-currentuserid.md "https://timelimit.io/ServerDataStatus#/definitions/ServerDeviceData/properties/currentUserId") |
|
||||||
|
| [networkTime](#networkTime) | `string` | Required | cannot be null | [ServerDataStatus](serverdatastatus-definitions-serverdevicedata-properties-networktime.md "https://timelimit.io/ServerDataStatus#/definitions/ServerDeviceData/properties/networkTime") |
|
||||||
|
| [cProtectionLevel](#cProtectionLevel) | `string` | Required | cannot be null | [ServerDataStatus](serverdatastatus-definitions-serverdevicedata-properties-protectionlevel.md "https://timelimit.io/ServerDataStatus#/definitions/ServerDeviceData/properties/cProtectionLevel") |
|
||||||
|
| [hProtectionLevel](#hProtectionLevel) | `string` | Required | cannot be null | [ServerDataStatus](serverdatastatus-definitions-serverdevicedata-properties-protectionlevel-1.md "https://timelimit.io/ServerDataStatus#/definitions/ServerDeviceData/properties/hProtectionLevel") |
|
||||||
|
| [cUsageStats](#cUsageStats) | `string` | Required | cannot be null | [ServerDataStatus](serverdatastatus-definitions-serverdevicedata-properties-runtimepermissionstatus.md "https://timelimit.io/ServerDataStatus#/definitions/ServerDeviceData/properties/cUsageStats") |
|
||||||
|
| [hUsageStats](#hUsageStats) | `string` | Required | cannot be null | [ServerDataStatus](serverdatastatus-definitions-serverdevicedata-properties-runtimepermissionstatus-1.md "https://timelimit.io/ServerDataStatus#/definitions/ServerDeviceData/properties/hUsageStats") |
|
||||||
|
| [cNotificationAccess](#cNotificationAccess) | `string` | Required | cannot be null | [ServerDataStatus](serverdatastatus-definitions-serverdevicedata-properties-newpermissionstatus.md "https://timelimit.io/ServerDataStatus#/definitions/ServerDeviceData/properties/cNotificationAccess") |
|
||||||
|
| [hNotificationAccess](#hNotificationAccess) | `string` | Required | cannot be null | [ServerDataStatus](serverdatastatus-definitions-serverdevicedata-properties-newpermissionstatus-1.md "https://timelimit.io/ServerDataStatus#/definitions/ServerDeviceData/properties/hNotificationAccess") |
|
||||||
|
| [cAppVersion](#cAppVersion) | `number` | Required | cannot be null | [ServerDataStatus](serverdatastatus-definitions-serverdevicedata-properties-cappversion.md "https://timelimit.io/ServerDataStatus#/definitions/ServerDeviceData/properties/cAppVersion") |
|
||||||
|
| [hAppVersion](#hAppVersion) | `number` | Required | cannot be null | [ServerDataStatus](serverdatastatus-definitions-serverdevicedata-properties-happversion.md "https://timelimit.io/ServerDataStatus#/definitions/ServerDeviceData/properties/hAppVersion") |
|
||||||
|
| [tDisablingAdmin](#tDisablingAdmin) | `boolean` | Required | cannot be null | [ServerDataStatus](serverdatastatus-definitions-serverdevicedata-properties-tdisablingadmin.md "https://timelimit.io/ServerDataStatus#/definitions/ServerDeviceData/properties/tDisablingAdmin") |
|
||||||
|
| [reboot](#reboot) | `boolean` | Required | cannot be null | [ServerDataStatus](serverdatastatus-definitions-serverdevicedata-properties-reboot.md "https://timelimit.io/ServerDataStatus#/definitions/ServerDeviceData/properties/reboot") |
|
||||||
|
| [hadManipulation](#hadManipulation) | `boolean` | Required | cannot be null | [ServerDataStatus](serverdatastatus-definitions-serverdevicedata-properties-hadmanipulation.md "https://timelimit.io/ServerDataStatus#/definitions/ServerDeviceData/properties/hadManipulation") |
|
||||||
|
| [hadManipulationFlags](#hadManipulationFlags) | `number` | Required | cannot be null | [ServerDataStatus](serverdatastatus-definitions-serverdevicedata-properties-hadmanipulationflags.md "https://timelimit.io/ServerDataStatus#/definitions/ServerDeviceData/properties/hadManipulationFlags") |
|
||||||
|
| [reportUninstall](#reportUninstall) | `boolean` | Required | cannot be null | [ServerDataStatus](serverdatastatus-definitions-serverdevicedata-properties-reportuninstall.md "https://timelimit.io/ServerDataStatus#/definitions/ServerDeviceData/properties/reportUninstall") |
|
||||||
|
| [isUserKeptSignedIn](#isUserKeptSignedIn) | `boolean` | Required | cannot be null | [ServerDataStatus](serverdatastatus-definitions-serverdevicedata-properties-isuserkeptsignedin.md "https://timelimit.io/ServerDataStatus#/definitions/ServerDeviceData/properties/isUserKeptSignedIn") |
|
||||||
|
| [showDeviceConnected](#showDeviceConnected) | `boolean` | Required | cannot be null | [ServerDataStatus](serverdatastatus-definitions-serverdevicedata-properties-showdeviceconnected.md "https://timelimit.io/ServerDataStatus#/definitions/ServerDeviceData/properties/showDeviceConnected") |
|
||||||
|
| [defUser](#defUser) | `string` | Required | cannot be null | [ServerDataStatus](serverdatastatus-definitions-serverdevicedata-properties-defuser.md "https://timelimit.io/ServerDataStatus#/definitions/ServerDeviceData/properties/defUser") |
|
||||||
|
| [defUserTimeout](#defUserTimeout) | `number` | Required | cannot be null | [ServerDataStatus](serverdatastatus-definitions-serverdevicedata-properties-defusertimeout.md "https://timelimit.io/ServerDataStatus#/definitions/ServerDeviceData/properties/defUserTimeout") |
|
||||||
|
| [rebootIsManipulation](#rebootIsManipulation) | `boolean` | Required | cannot be null | [ServerDataStatus](serverdatastatus-definitions-serverdevicedata-properties-rebootismanipulation.md "https://timelimit.io/ServerDataStatus#/definitions/ServerDeviceData/properties/rebootIsManipulation") |
|
||||||
|
| [cOverlay](#cOverlay) | `string` | Required | cannot be null | [ServerDataStatus](serverdatastatus-definitions-serverdevicedata-properties-runtimepermissionstatus-2.md "https://timelimit.io/ServerDataStatus#/definitions/ServerDeviceData/properties/cOverlay") |
|
||||||
|
| [hOverlay](#hOverlay) | `string` | Required | cannot be null | [ServerDataStatus](serverdatastatus-definitions-serverdevicedata-properties-runtimepermissionstatus-3.md "https://timelimit.io/ServerDataStatus#/definitions/ServerDeviceData/properties/hOverlay") |
|
||||||
|
| [asEnabled](#asEnabled) | `boolean` | Required | cannot be null | [ServerDataStatus](serverdatastatus-definitions-serverdevicedata-properties-asenabled.md "https://timelimit.io/ServerDataStatus#/definitions/ServerDeviceData/properties/asEnabled") |
|
||||||
|
| [wasAsEnabled](#wasAsEnabled) | `boolean` | Required | cannot be null | [ServerDataStatus](serverdatastatus-definitions-serverdevicedata-properties-wasasenabled.md "https://timelimit.io/ServerDataStatus#/definitions/ServerDeviceData/properties/wasAsEnabled") |
|
||||||
|
| [activityLevelBlocking](#activityLevelBlocking) | `boolean` | Required | cannot be null | [ServerDataStatus](serverdatastatus-definitions-serverdevicedata-properties-activitylevelblocking.md "https://timelimit.io/ServerDataStatus#/definitions/ServerDeviceData/properties/activityLevelBlocking") |
|
||||||
|
| [qOrLater](#qOrLater) | `boolean` | Required | cannot be null | [ServerDataStatus](serverdatastatus-definitions-serverdevicedata-properties-qorlater.md "https://timelimit.io/ServerDataStatus#/definitions/ServerDeviceData/properties/qOrLater") |
|
||||||
|
|
||||||
|
## deviceId
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
`deviceId`
|
||||||
|
|
||||||
|
- is required
|
||||||
|
- Type: `string`
|
||||||
|
- cannot be null
|
||||||
|
- defined in: [ServerDataStatus](serverdatastatus-definitions-serverdevicedata-properties-deviceid.md "https://timelimit.io/ServerDataStatus#/definitions/ServerDeviceData/properties/deviceId")
|
||||||
|
|
||||||
|
### deviceId Type
|
||||||
|
|
||||||
|
`string`
|
||||||
|
|
||||||
|
## name
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
`name`
|
||||||
|
|
||||||
|
- is required
|
||||||
|
- Type: `string`
|
||||||
|
- cannot be null
|
||||||
|
- defined in: [ServerDataStatus](serverdatastatus-definitions-serverdevicedata-properties-name.md "https://timelimit.io/ServerDataStatus#/definitions/ServerDeviceData/properties/name")
|
||||||
|
|
||||||
|
### name Type
|
||||||
|
|
||||||
|
`string`
|
||||||
|
|
||||||
|
## model
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
`model`
|
||||||
|
|
||||||
|
- is required
|
||||||
|
- Type: `string`
|
||||||
|
- cannot be null
|
||||||
|
- defined in: [ServerDataStatus](serverdatastatus-definitions-serverdevicedata-properties-model.md "https://timelimit.io/ServerDataStatus#/definitions/ServerDeviceData/properties/model")
|
||||||
|
|
||||||
|
### model Type
|
||||||
|
|
||||||
|
`string`
|
||||||
|
|
||||||
|
## addedAt
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
`addedAt`
|
||||||
|
|
||||||
|
- is required
|
||||||
|
- Type: `number`
|
||||||
|
- cannot be null
|
||||||
|
- defined in: [ServerDataStatus](serverdatastatus-definitions-serverdevicedata-properties-addedat.md "https://timelimit.io/ServerDataStatus#/definitions/ServerDeviceData/properties/addedAt")
|
||||||
|
|
||||||
|
### addedAt Type
|
||||||
|
|
||||||
|
`number`
|
||||||
|
|
||||||
|
## currentUserId
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
`currentUserId`
|
||||||
|
|
||||||
|
- is required
|
||||||
|
- Type: `string`
|
||||||
|
- cannot be null
|
||||||
|
- defined in: [ServerDataStatus](serverdatastatus-definitions-serverdevicedata-properties-currentuserid.md "https://timelimit.io/ServerDataStatus#/definitions/ServerDeviceData/properties/currentUserId")
|
||||||
|
|
||||||
|
### currentUserId Type
|
||||||
|
|
||||||
|
`string`
|
||||||
|
|
||||||
|
## networkTime
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
`networkTime`
|
||||||
|
|
||||||
|
- is required
|
||||||
|
- Type: `string`
|
||||||
|
- cannot be null
|
||||||
|
- defined in: [ServerDataStatus](serverdatastatus-definitions-serverdevicedata-properties-networktime.md "https://timelimit.io/ServerDataStatus#/definitions/ServerDeviceData/properties/networkTime")
|
||||||
|
|
||||||
|
### networkTime Type
|
||||||
|
|
||||||
|
`string`
|
||||||
|
|
||||||
|
### networkTime Constraints
|
||||||
|
|
||||||
|
**enum**: the value of this property must be equal to one of the following values:
|
||||||
|
|
||||||
|
| Value | Explanation |
|
||||||
|
| :-------------- | ----------- |
|
||||||
|
| `"disabled"` | |
|
||||||
|
| `"enabled"` | |
|
||||||
|
| `"if possible"` | |
|
||||||
|
|
||||||
|
## cProtectionLevel
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
`cProtectionLevel`
|
||||||
|
|
||||||
|
- is required
|
||||||
|
- Type: `string` ([ProtectionLevel](serverdatastatus-definitions-serverdevicedata-properties-protectionlevel.md))
|
||||||
|
- cannot be null
|
||||||
|
- defined in: [ServerDataStatus](serverdatastatus-definitions-serverdevicedata-properties-protectionlevel.md "https://timelimit.io/ServerDataStatus#/definitions/ServerDeviceData/properties/cProtectionLevel")
|
||||||
|
|
||||||
|
### cProtectionLevel Type
|
||||||
|
|
||||||
|
`string` ([ProtectionLevel](serverdatastatus-definitions-serverdevicedata-properties-protectionlevel.md))
|
||||||
|
|
||||||
|
### cProtectionLevel Constraints
|
||||||
|
|
||||||
|
**enum**: the value of this property must be equal to one of the following values:
|
||||||
|
|
||||||
|
| Value | Explanation |
|
||||||
|
| :------------------------ | ----------- |
|
||||||
|
| `"device owner"` | |
|
||||||
|
| `"none"` | |
|
||||||
|
| `"password device admin"` | |
|
||||||
|
| `"simple device admin"` | |
|
||||||
|
|
||||||
|
## hProtectionLevel
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
`hProtectionLevel`
|
||||||
|
|
||||||
|
- is required
|
||||||
|
- Type: `string` ([ProtectionLevel](serverdatastatus-definitions-serverdevicedata-properties-protectionlevel-1.md))
|
||||||
|
- cannot be null
|
||||||
|
- defined in: [ServerDataStatus](serverdatastatus-definitions-serverdevicedata-properties-protectionlevel-1.md "https://timelimit.io/ServerDataStatus#/definitions/ServerDeviceData/properties/hProtectionLevel")
|
||||||
|
|
||||||
|
### hProtectionLevel Type
|
||||||
|
|
||||||
|
`string` ([ProtectionLevel](serverdatastatus-definitions-serverdevicedata-properties-protectionlevel-1.md))
|
||||||
|
|
||||||
|
### hProtectionLevel Constraints
|
||||||
|
|
||||||
|
**enum**: the value of this property must be equal to one of the following values:
|
||||||
|
|
||||||
|
| Value | Explanation |
|
||||||
|
| :------------------------ | ----------- |
|
||||||
|
| `"device owner"` | |
|
||||||
|
| `"none"` | |
|
||||||
|
| `"password device admin"` | |
|
||||||
|
| `"simple device admin"` | |
|
||||||
|
|
||||||
|
## cUsageStats
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
`cUsageStats`
|
||||||
|
|
||||||
|
- is required
|
||||||
|
- Type: `string` ([RuntimePermissionStatus](serverdatastatus-definitions-serverdevicedata-properties-runtimepermissionstatus.md))
|
||||||
|
- cannot be null
|
||||||
|
- defined in: [ServerDataStatus](serverdatastatus-definitions-serverdevicedata-properties-runtimepermissionstatus.md "https://timelimit.io/ServerDataStatus#/definitions/ServerDeviceData/properties/cUsageStats")
|
||||||
|
|
||||||
|
### cUsageStats Type
|
||||||
|
|
||||||
|
`string` ([RuntimePermissionStatus](serverdatastatus-definitions-serverdevicedata-properties-runtimepermissionstatus.md))
|
||||||
|
|
||||||
|
### cUsageStats Constraints
|
||||||
|
|
||||||
|
**enum**: the value of this property must be equal to one of the following values:
|
||||||
|
|
||||||
|
| Value | Explanation |
|
||||||
|
| :--------------- | ----------- |
|
||||||
|
| `"granted"` | |
|
||||||
|
| `"not granted"` | |
|
||||||
|
| `"not required"` | |
|
||||||
|
|
||||||
|
## hUsageStats
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
`hUsageStats`
|
||||||
|
|
||||||
|
- is required
|
||||||
|
- Type: `string` ([RuntimePermissionStatus](serverdatastatus-definitions-serverdevicedata-properties-runtimepermissionstatus-1.md))
|
||||||
|
- cannot be null
|
||||||
|
- defined in: [ServerDataStatus](serverdatastatus-definitions-serverdevicedata-properties-runtimepermissionstatus-1.md "https://timelimit.io/ServerDataStatus#/definitions/ServerDeviceData/properties/hUsageStats")
|
||||||
|
|
||||||
|
### hUsageStats Type
|
||||||
|
|
||||||
|
`string` ([RuntimePermissionStatus](serverdatastatus-definitions-serverdevicedata-properties-runtimepermissionstatus-1.md))
|
||||||
|
|
||||||
|
### hUsageStats Constraints
|
||||||
|
|
||||||
|
**enum**: the value of this property must be equal to one of the following values:
|
||||||
|
|
||||||
|
| Value | Explanation |
|
||||||
|
| :--------------- | ----------- |
|
||||||
|
| `"granted"` | |
|
||||||
|
| `"not granted"` | |
|
||||||
|
| `"not required"` | |
|
||||||
|
|
||||||
|
## cNotificationAccess
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
`cNotificationAccess`
|
||||||
|
|
||||||
|
- is required
|
||||||
|
- Type: `string` ([NewPermissionStatus](serverdatastatus-definitions-serverdevicedata-properties-newpermissionstatus.md))
|
||||||
|
- cannot be null
|
||||||
|
- defined in: [ServerDataStatus](serverdatastatus-definitions-serverdevicedata-properties-newpermissionstatus.md "https://timelimit.io/ServerDataStatus#/definitions/ServerDeviceData/properties/cNotificationAccess")
|
||||||
|
|
||||||
|
### cNotificationAccess Type
|
||||||
|
|
||||||
|
`string` ([NewPermissionStatus](serverdatastatus-definitions-serverdevicedata-properties-newpermissionstatus.md))
|
||||||
|
|
||||||
|
### cNotificationAccess Constraints
|
||||||
|
|
||||||
|
**enum**: the value of this property must be equal to one of the following values:
|
||||||
|
|
||||||
|
| Value | Explanation |
|
||||||
|
| :---------------- | ----------- |
|
||||||
|
| `"granted"` | |
|
||||||
|
| `"not granted"` | |
|
||||||
|
| `"not supported"` | |
|
||||||
|
|
||||||
|
## hNotificationAccess
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
`hNotificationAccess`
|
||||||
|
|
||||||
|
- is required
|
||||||
|
- Type: `string` ([NewPermissionStatus](serverdatastatus-definitions-serverdevicedata-properties-newpermissionstatus-1.md))
|
||||||
|
- cannot be null
|
||||||
|
- defined in: [ServerDataStatus](serverdatastatus-definitions-serverdevicedata-properties-newpermissionstatus-1.md "https://timelimit.io/ServerDataStatus#/definitions/ServerDeviceData/properties/hNotificationAccess")
|
||||||
|
|
||||||
|
### hNotificationAccess Type
|
||||||
|
|
||||||
|
`string` ([NewPermissionStatus](serverdatastatus-definitions-serverdevicedata-properties-newpermissionstatus-1.md))
|
||||||
|
|
||||||
|
### hNotificationAccess Constraints
|
||||||
|
|
||||||
|
**enum**: the value of this property must be equal to one of the following values:
|
||||||
|
|
||||||
|
| Value | Explanation |
|
||||||
|
| :---------------- | ----------- |
|
||||||
|
| `"granted"` | |
|
||||||
|
| `"not granted"` | |
|
||||||
|
| `"not supported"` | |
|
||||||
|
|
||||||
|
## cAppVersion
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
`cAppVersion`
|
||||||
|
|
||||||
|
- is required
|
||||||
|
- Type: `number`
|
||||||
|
- cannot be null
|
||||||
|
- defined in: [ServerDataStatus](serverdatastatus-definitions-serverdevicedata-properties-cappversion.md "https://timelimit.io/ServerDataStatus#/definitions/ServerDeviceData/properties/cAppVersion")
|
||||||
|
|
||||||
|
### cAppVersion Type
|
||||||
|
|
||||||
|
`number`
|
||||||
|
|
||||||
|
## hAppVersion
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
`hAppVersion`
|
||||||
|
|
||||||
|
- is required
|
||||||
|
- Type: `number`
|
||||||
|
- cannot be null
|
||||||
|
- defined in: [ServerDataStatus](serverdatastatus-definitions-serverdevicedata-properties-happversion.md "https://timelimit.io/ServerDataStatus#/definitions/ServerDeviceData/properties/hAppVersion")
|
||||||
|
|
||||||
|
### hAppVersion Type
|
||||||
|
|
||||||
|
`number`
|
||||||
|
|
||||||
|
## tDisablingAdmin
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
`tDisablingAdmin`
|
||||||
|
|
||||||
|
- is required
|
||||||
|
- Type: `boolean`
|
||||||
|
- cannot be null
|
||||||
|
- defined in: [ServerDataStatus](serverdatastatus-definitions-serverdevicedata-properties-tdisablingadmin.md "https://timelimit.io/ServerDataStatus#/definitions/ServerDeviceData/properties/tDisablingAdmin")
|
||||||
|
|
||||||
|
### tDisablingAdmin Type
|
||||||
|
|
||||||
|
`boolean`
|
||||||
|
|
||||||
|
## reboot
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
`reboot`
|
||||||
|
|
||||||
|
- is required
|
||||||
|
- Type: `boolean`
|
||||||
|
- cannot be null
|
||||||
|
- defined in: [ServerDataStatus](serverdatastatus-definitions-serverdevicedata-properties-reboot.md "https://timelimit.io/ServerDataStatus#/definitions/ServerDeviceData/properties/reboot")
|
||||||
|
|
||||||
|
### reboot Type
|
||||||
|
|
||||||
|
`boolean`
|
||||||
|
|
||||||
|
## hadManipulation
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
`hadManipulation`
|
||||||
|
|
||||||
|
- is required
|
||||||
|
- Type: `boolean`
|
||||||
|
- cannot be null
|
||||||
|
- defined in: [ServerDataStatus](serverdatastatus-definitions-serverdevicedata-properties-hadmanipulation.md "https://timelimit.io/ServerDataStatus#/definitions/ServerDeviceData/properties/hadManipulation")
|
||||||
|
|
||||||
|
### hadManipulation Type
|
||||||
|
|
||||||
|
`boolean`
|
||||||
|
|
||||||
|
## hadManipulationFlags
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
`hadManipulationFlags`
|
||||||
|
|
||||||
|
- is required
|
||||||
|
- Type: `number`
|
||||||
|
- cannot be null
|
||||||
|
- defined in: [ServerDataStatus](serverdatastatus-definitions-serverdevicedata-properties-hadmanipulationflags.md "https://timelimit.io/ServerDataStatus#/definitions/ServerDeviceData/properties/hadManipulationFlags")
|
||||||
|
|
||||||
|
### hadManipulationFlags Type
|
||||||
|
|
||||||
|
`number`
|
||||||
|
|
||||||
|
## reportUninstall
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
`reportUninstall`
|
||||||
|
|
||||||
|
- is required
|
||||||
|
- Type: `boolean`
|
||||||
|
- cannot be null
|
||||||
|
- defined in: [ServerDataStatus](serverdatastatus-definitions-serverdevicedata-properties-reportuninstall.md "https://timelimit.io/ServerDataStatus#/definitions/ServerDeviceData/properties/reportUninstall")
|
||||||
|
|
||||||
|
### reportUninstall Type
|
||||||
|
|
||||||
|
`boolean`
|
||||||
|
|
||||||
|
## isUserKeptSignedIn
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
`isUserKeptSignedIn`
|
||||||
|
|
||||||
|
- is required
|
||||||
|
- Type: `boolean`
|
||||||
|
- cannot be null
|
||||||
|
- defined in: [ServerDataStatus](serverdatastatus-definitions-serverdevicedata-properties-isuserkeptsignedin.md "https://timelimit.io/ServerDataStatus#/definitions/ServerDeviceData/properties/isUserKeptSignedIn")
|
||||||
|
|
||||||
|
### isUserKeptSignedIn Type
|
||||||
|
|
||||||
|
`boolean`
|
||||||
|
|
||||||
|
## showDeviceConnected
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
`showDeviceConnected`
|
||||||
|
|
||||||
|
- is required
|
||||||
|
- Type: `boolean`
|
||||||
|
- cannot be null
|
||||||
|
- defined in: [ServerDataStatus](serverdatastatus-definitions-serverdevicedata-properties-showdeviceconnected.md "https://timelimit.io/ServerDataStatus#/definitions/ServerDeviceData/properties/showDeviceConnected")
|
||||||
|
|
||||||
|
### showDeviceConnected Type
|
||||||
|
|
||||||
|
`boolean`
|
||||||
|
|
||||||
|
## defUser
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
`defUser`
|
||||||
|
|
||||||
|
- is required
|
||||||
|
- Type: `string`
|
||||||
|
- cannot be null
|
||||||
|
- defined in: [ServerDataStatus](serverdatastatus-definitions-serverdevicedata-properties-defuser.md "https://timelimit.io/ServerDataStatus#/definitions/ServerDeviceData/properties/defUser")
|
||||||
|
|
||||||
|
### defUser Type
|
||||||
|
|
||||||
|
`string`
|
||||||
|
|
||||||
|
## defUserTimeout
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
`defUserTimeout`
|
||||||
|
|
||||||
|
- is required
|
||||||
|
- Type: `number`
|
||||||
|
- cannot be null
|
||||||
|
- defined in: [ServerDataStatus](serverdatastatus-definitions-serverdevicedata-properties-defusertimeout.md "https://timelimit.io/ServerDataStatus#/definitions/ServerDeviceData/properties/defUserTimeout")
|
||||||
|
|
||||||
|
### defUserTimeout Type
|
||||||
|
|
||||||
|
`number`
|
||||||
|
|
||||||
|
## rebootIsManipulation
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
`rebootIsManipulation`
|
||||||
|
|
||||||
|
- is required
|
||||||
|
- Type: `boolean`
|
||||||
|
- cannot be null
|
||||||
|
- defined in: [ServerDataStatus](serverdatastatus-definitions-serverdevicedata-properties-rebootismanipulation.md "https://timelimit.io/ServerDataStatus#/definitions/ServerDeviceData/properties/rebootIsManipulation")
|
||||||
|
|
||||||
|
### rebootIsManipulation Type
|
||||||
|
|
||||||
|
`boolean`
|
||||||
|
|
||||||
|
## cOverlay
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
`cOverlay`
|
||||||
|
|
||||||
|
- is required
|
||||||
|
- Type: `string` ([RuntimePermissionStatus](serverdatastatus-definitions-serverdevicedata-properties-runtimepermissionstatus-2.md))
|
||||||
|
- cannot be null
|
||||||
|
- defined in: [ServerDataStatus](serverdatastatus-definitions-serverdevicedata-properties-runtimepermissionstatus-2.md "https://timelimit.io/ServerDataStatus#/definitions/ServerDeviceData/properties/cOverlay")
|
||||||
|
|
||||||
|
### cOverlay Type
|
||||||
|
|
||||||
|
`string` ([RuntimePermissionStatus](serverdatastatus-definitions-serverdevicedata-properties-runtimepermissionstatus-2.md))
|
||||||
|
|
||||||
|
### cOverlay Constraints
|
||||||
|
|
||||||
|
**enum**: the value of this property must be equal to one of the following values:
|
||||||
|
|
||||||
|
| Value | Explanation |
|
||||||
|
| :--------------- | ----------- |
|
||||||
|
| `"granted"` | |
|
||||||
|
| `"not granted"` | |
|
||||||
|
| `"not required"` | |
|
||||||
|
|
||||||
|
## hOverlay
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
`hOverlay`
|
||||||
|
|
||||||
|
- is required
|
||||||
|
- Type: `string` ([RuntimePermissionStatus](serverdatastatus-definitions-serverdevicedata-properties-runtimepermissionstatus-3.md))
|
||||||
|
- cannot be null
|
||||||
|
- defined in: [ServerDataStatus](serverdatastatus-definitions-serverdevicedata-properties-runtimepermissionstatus-3.md "https://timelimit.io/ServerDataStatus#/definitions/ServerDeviceData/properties/hOverlay")
|
||||||
|
|
||||||
|
### hOverlay Type
|
||||||
|
|
||||||
|
`string` ([RuntimePermissionStatus](serverdatastatus-definitions-serverdevicedata-properties-runtimepermissionstatus-3.md))
|
||||||
|
|
||||||
|
### hOverlay Constraints
|
||||||
|
|
||||||
|
**enum**: the value of this property must be equal to one of the following values:
|
||||||
|
|
||||||
|
| Value | Explanation |
|
||||||
|
| :--------------- | ----------- |
|
||||||
|
| `"granted"` | |
|
||||||
|
| `"not granted"` | |
|
||||||
|
| `"not required"` | |
|
||||||
|
|
||||||
|
## asEnabled
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
`asEnabled`
|
||||||
|
|
||||||
|
- is required
|
||||||
|
- Type: `boolean`
|
||||||
|
- cannot be null
|
||||||
|
- defined in: [ServerDataStatus](serverdatastatus-definitions-serverdevicedata-properties-asenabled.md "https://timelimit.io/ServerDataStatus#/definitions/ServerDeviceData/properties/asEnabled")
|
||||||
|
|
||||||
|
### asEnabled Type
|
||||||
|
|
||||||
|
`boolean`
|
||||||
|
|
||||||
|
## wasAsEnabled
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
`wasAsEnabled`
|
||||||
|
|
||||||
|
- is required
|
||||||
|
- Type: `boolean`
|
||||||
|
- cannot be null
|
||||||
|
- defined in: [ServerDataStatus](serverdatastatus-definitions-serverdevicedata-properties-wasasenabled.md "https://timelimit.io/ServerDataStatus#/definitions/ServerDeviceData/properties/wasAsEnabled")
|
||||||
|
|
||||||
|
### wasAsEnabled Type
|
||||||
|
|
||||||
|
`boolean`
|
||||||
|
|
||||||
|
## activityLevelBlocking
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
`activityLevelBlocking`
|
||||||
|
|
||||||
|
- is required
|
||||||
|
- Type: `boolean`
|
||||||
|
- cannot be null
|
||||||
|
- defined in: [ServerDataStatus](serverdatastatus-definitions-serverdevicedata-properties-activitylevelblocking.md "https://timelimit.io/ServerDataStatus#/definitions/ServerDeviceData/properties/activityLevelBlocking")
|
||||||
|
|
||||||
|
### activityLevelBlocking Type
|
||||||
|
|
||||||
|
`boolean`
|
||||||
|
|
||||||
|
## qOrLater
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
`qOrLater`
|
||||||
|
|
||||||
|
- is required
|
||||||
|
- Type: `boolean`
|
||||||
|
- cannot be null
|
||||||
|
- defined in: [ServerDataStatus](serverdatastatus-definitions-serverdevicedata-properties-qorlater.md "https://timelimit.io/ServerDataStatus#/definitions/ServerDeviceData/properties/qOrLater")
|
||||||
|
|
||||||
|
### qOrLater Type
|
||||||
|
|
||||||
|
`boolean`
|
|
@ -0,0 +1,16 @@
|
||||||
|
# Untitled array in ServerDataStatus Schema
|
||||||
|
|
||||||
|
```txt
|
||||||
|
https://timelimit.io/ServerDataStatus#/definitions/ServerDeviceList/properties/data
|
||||||
|
```
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
| Abstract | Extensible | Status | Identifiable | Custom Properties | Additional Properties | Access Restrictions | Defined In |
|
||||||
|
| :------------------ | ---------- | -------------- | ----------------------- | :---------------- | --------------------- | ------------------- | ------------------------------------------------------------------------------------- |
|
||||||
|
| Can be instantiated | No | Unknown status | Unknown identifiability | Forbidden | Allowed | none | [ServerDataStatus.schema.json\*](ServerDataStatus.schema.json "open original schema") |
|
||||||
|
|
||||||
|
## data Type
|
||||||
|
|
||||||
|
`object[]` ([ServerDeviceData](serverdatastatus-definitions-serverdevicedata.md))
|
|
@ -0,0 +1,16 @@
|
||||||
|
# Untitled string in ServerDataStatus Schema
|
||||||
|
|
||||||
|
```txt
|
||||||
|
https://timelimit.io/ServerDataStatus#/definitions/ServerDeviceList/properties/version
|
||||||
|
```
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
| Abstract | Extensible | Status | Identifiable | Custom Properties | Additional Properties | Access Restrictions | Defined In |
|
||||||
|
| :------------------ | ---------- | -------------- | ----------------------- | :---------------- | --------------------- | ------------------- | ------------------------------------------------------------------------------------- |
|
||||||
|
| Can be instantiated | No | Unknown status | Unknown identifiability | Forbidden | Allowed | none | [ServerDataStatus.schema.json\*](ServerDataStatus.schema.json "open original schema") |
|
||||||
|
|
||||||
|
## version Type
|
||||||
|
|
||||||
|
`string`
|
|
@ -0,0 +1,16 @@
|
||||||
|
# Untitled undefined type in ServerDataStatus Schema
|
||||||
|
|
||||||
|
```txt
|
||||||
|
https://timelimit.io/ServerDataStatus#/definitions/ServerDeviceList/properties
|
||||||
|
```
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
| Abstract | Extensible | Status | Identifiable | Custom Properties | Additional Properties | Access Restrictions | Defined In |
|
||||||
|
| :------------------ | ---------- | -------------- | ----------------------- | :---------------- | --------------------- | ------------------- | ------------------------------------------------------------------------------------- |
|
||||||
|
| Can be instantiated | No | Unknown status | Unknown identifiability | Forbidden | Allowed | none | [ServerDataStatus.schema.json\*](ServerDataStatus.schema.json "open original schema") |
|
||||||
|
|
||||||
|
## properties Type
|
||||||
|
|
||||||
|
unknown
|
55
docs/schema/serverdatastatus-definitions-serverdevicelist.md
Normal file
55
docs/schema/serverdatastatus-definitions-serverdevicelist.md
Normal file
|
@ -0,0 +1,55 @@
|
||||||
|
# ServerDeviceList Schema
|
||||||
|
|
||||||
|
```txt
|
||||||
|
https://timelimit.io/ServerDataStatus#/definitions/ServerDeviceList
|
||||||
|
```
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
| Abstract | Extensible | Status | Identifiable | Custom Properties | Additional Properties | Access Restrictions | Defined In |
|
||||||
|
| :------------------ | ---------- | -------------- | ------------ | :---------------- | --------------------- | ------------------- | ------------------------------------------------------------------------------------- |
|
||||||
|
| Can be instantiated | No | Unknown status | No | Forbidden | Forbidden | none | [ServerDataStatus.schema.json\*](ServerDataStatus.schema.json "open original schema") |
|
||||||
|
|
||||||
|
## ServerDeviceList Type
|
||||||
|
|
||||||
|
`object` ([ServerDeviceList](serverdatastatus-definitions-serverdevicelist.md))
|
||||||
|
|
||||||
|
# ServerDeviceList Properties
|
||||||
|
|
||||||
|
| Property | Type | Required | Nullable | Defined by |
|
||||||
|
| :------------------ | -------- | -------- | -------------- | :------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ |
|
||||||
|
| [version](#version) | `string` | Required | cannot be null | [ServerDataStatus](serverdatastatus-definitions-serverdevicelist-properties-version.md "https://timelimit.io/ServerDataStatus#/definitions/ServerDeviceList/properties/version") |
|
||||||
|
| [data](#data) | `array` | Required | cannot be null | [ServerDataStatus](serverdatastatus-definitions-serverdevicelist-properties-data.md "https://timelimit.io/ServerDataStatus#/definitions/ServerDeviceList/properties/data") |
|
||||||
|
|
||||||
|
## version
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
`version`
|
||||||
|
|
||||||
|
- is required
|
||||||
|
- Type: `string`
|
||||||
|
- cannot be null
|
||||||
|
- defined in: [ServerDataStatus](serverdatastatus-definitions-serverdevicelist-properties-version.md "https://timelimit.io/ServerDataStatus#/definitions/ServerDeviceList/properties/version")
|
||||||
|
|
||||||
|
### version Type
|
||||||
|
|
||||||
|
`string`
|
||||||
|
|
||||||
|
## data
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
`data`
|
||||||
|
|
||||||
|
- is required
|
||||||
|
- Type: `object[]` ([ServerDeviceData](serverdatastatus-definitions-serverdevicedata.md))
|
||||||
|
- cannot be null
|
||||||
|
- defined in: [ServerDataStatus](serverdatastatus-definitions-serverdevicelist-properties-data.md "https://timelimit.io/ServerDataStatus#/definitions/ServerDeviceList/properties/data")
|
||||||
|
|
||||||
|
### data Type
|
||||||
|
|
||||||
|
`object[]` ([ServerDeviceData](serverdatastatus-definitions-serverdevicedata.md))
|
|
@ -0,0 +1,16 @@
|
||||||
|
# Untitled array in ServerDataStatus Schema
|
||||||
|
|
||||||
|
```txt
|
||||||
|
https://timelimit.io/ServerDataStatus#/definitions/ServerInstalledAppsData/properties/activities
|
||||||
|
```
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
| Abstract | Extensible | Status | Identifiable | Custom Properties | Additional Properties | Access Restrictions | Defined In |
|
||||||
|
| :------------------ | ---------- | -------------- | ----------------------- | :---------------- | --------------------- | ------------------- | ------------------------------------------------------------------------------------- |
|
||||||
|
| Can be instantiated | No | Unknown status | Unknown identifiability | Forbidden | Allowed | none | [ServerDataStatus.schema.json\*](ServerDataStatus.schema.json "open original schema") |
|
||||||
|
|
||||||
|
## activities Type
|
||||||
|
|
||||||
|
`object[]` ([SerializedAppActivityItem](serverdatastatus-definitions-serializedappactivityitem.md))
|
|
@ -0,0 +1,16 @@
|
||||||
|
# Untitled array in ServerDataStatus Schema
|
||||||
|
|
||||||
|
```txt
|
||||||
|
https://timelimit.io/ServerDataStatus#/definitions/ServerInstalledAppsData/properties/apps
|
||||||
|
```
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
| Abstract | Extensible | Status | Identifiable | Custom Properties | Additional Properties | Access Restrictions | Defined In |
|
||||||
|
| :------------------ | ---------- | -------------- | ----------------------- | :---------------- | --------------------- | ------------------- | ------------------------------------------------------------------------------------- |
|
||||||
|
| Can be instantiated | No | Unknown status | Unknown identifiability | Forbidden | Allowed | none | [ServerDataStatus.schema.json\*](ServerDataStatus.schema.json "open original schema") |
|
||||||
|
|
||||||
|
## apps Type
|
||||||
|
|
||||||
|
`object[]` ([SerializedInstalledApp](serverdatastatus-definitions-serializedinstalledapp.md))
|
|
@ -0,0 +1,16 @@
|
||||||
|
# Untitled string in ServerDataStatus Schema
|
||||||
|
|
||||||
|
```txt
|
||||||
|
https://timelimit.io/ServerDataStatus#/definitions/ServerInstalledAppsData/properties/deviceId
|
||||||
|
```
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
| Abstract | Extensible | Status | Identifiable | Custom Properties | Additional Properties | Access Restrictions | Defined In |
|
||||||
|
| :------------------ | ---------- | -------------- | ----------------------- | :---------------- | --------------------- | ------------------- | ------------------------------------------------------------------------------------- |
|
||||||
|
| Can be instantiated | No | Unknown status | Unknown identifiability | Forbidden | Allowed | none | [ServerDataStatus.schema.json\*](ServerDataStatus.schema.json "open original schema") |
|
||||||
|
|
||||||
|
## deviceId Type
|
||||||
|
|
||||||
|
`string`
|
|
@ -0,0 +1,16 @@
|
||||||
|
# Untitled string in ServerDataStatus Schema
|
||||||
|
|
||||||
|
```txt
|
||||||
|
https://timelimit.io/ServerDataStatus#/definitions/ServerInstalledAppsData/properties/version
|
||||||
|
```
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
| Abstract | Extensible | Status | Identifiable | Custom Properties | Additional Properties | Access Restrictions | Defined In |
|
||||||
|
| :------------------ | ---------- | -------------- | ----------------------- | :---------------- | --------------------- | ------------------- | ------------------------------------------------------------------------------------- |
|
||||||
|
| Can be instantiated | No | Unknown status | Unknown identifiability | Forbidden | Allowed | none | [ServerDataStatus.schema.json\*](ServerDataStatus.schema.json "open original schema") |
|
||||||
|
|
||||||
|
## version Type
|
||||||
|
|
||||||
|
`string`
|
|
@ -0,0 +1,16 @@
|
||||||
|
# Untitled undefined type in ServerDataStatus Schema
|
||||||
|
|
||||||
|
```txt
|
||||||
|
https://timelimit.io/ServerDataStatus#/definitions/ServerInstalledAppsData/properties
|
||||||
|
```
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
| Abstract | Extensible | Status | Identifiable | Custom Properties | Additional Properties | Access Restrictions | Defined In |
|
||||||
|
| :------------------ | ---------- | -------------- | ----------------------- | :---------------- | --------------------- | ------------------- | ------------------------------------------------------------------------------------- |
|
||||||
|
| Can be instantiated | No | Unknown status | Unknown identifiability | Forbidden | Allowed | none | [ServerDataStatus.schema.json\*](ServerDataStatus.schema.json "open original schema") |
|
||||||
|
|
||||||
|
## properties Type
|
||||||
|
|
||||||
|
unknown
|
|
@ -0,0 +1,89 @@
|
||||||
|
# ServerInstalledAppsData Schema
|
||||||
|
|
||||||
|
```txt
|
||||||
|
https://timelimit.io/ServerDataStatus#/definitions/ServerInstalledAppsData
|
||||||
|
```
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
| Abstract | Extensible | Status | Identifiable | Custom Properties | Additional Properties | Access Restrictions | Defined In |
|
||||||
|
| :------------------ | ---------- | -------------- | ------------ | :---------------- | --------------------- | ------------------- | ------------------------------------------------------------------------------------- |
|
||||||
|
| Can be instantiated | No | Unknown status | No | Forbidden | Forbidden | none | [ServerDataStatus.schema.json\*](ServerDataStatus.schema.json "open original schema") |
|
||||||
|
|
||||||
|
## ServerInstalledAppsData Type
|
||||||
|
|
||||||
|
`object` ([ServerInstalledAppsData](serverdatastatus-definitions-serverinstalledappsdata.md))
|
||||||
|
|
||||||
|
# ServerInstalledAppsData Properties
|
||||||
|
|
||||||
|
| Property | Type | Required | Nullable | Defined by |
|
||||||
|
| :------------------------ | -------- | -------- | -------------- | :-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
|
||||||
|
| [deviceId](#deviceId) | `string` | Required | cannot be null | [ServerDataStatus](serverdatastatus-definitions-serverinstalledappsdata-properties-deviceid.md "https://timelimit.io/ServerDataStatus#/definitions/ServerInstalledAppsData/properties/deviceId") |
|
||||||
|
| [version](#version) | `string` | Required | cannot be null | [ServerDataStatus](serverdatastatus-definitions-serverinstalledappsdata-properties-version.md "https://timelimit.io/ServerDataStatus#/definitions/ServerInstalledAppsData/properties/version") |
|
||||||
|
| [apps](#apps) | `array` | Required | cannot be null | [ServerDataStatus](serverdatastatus-definitions-serverinstalledappsdata-properties-apps.md "https://timelimit.io/ServerDataStatus#/definitions/ServerInstalledAppsData/properties/apps") |
|
||||||
|
| [activities](#activities) | `array` | Required | cannot be null | [ServerDataStatus](serverdatastatus-definitions-serverinstalledappsdata-properties-activities.md "https://timelimit.io/ServerDataStatus#/definitions/ServerInstalledAppsData/properties/activities") |
|
||||||
|
|
||||||
|
## deviceId
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
`deviceId`
|
||||||
|
|
||||||
|
- is required
|
||||||
|
- Type: `string`
|
||||||
|
- cannot be null
|
||||||
|
- defined in: [ServerDataStatus](serverdatastatus-definitions-serverinstalledappsdata-properties-deviceid.md "https://timelimit.io/ServerDataStatus#/definitions/ServerInstalledAppsData/properties/deviceId")
|
||||||
|
|
||||||
|
### deviceId Type
|
||||||
|
|
||||||
|
`string`
|
||||||
|
|
||||||
|
## version
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
`version`
|
||||||
|
|
||||||
|
- is required
|
||||||
|
- Type: `string`
|
||||||
|
- cannot be null
|
||||||
|
- defined in: [ServerDataStatus](serverdatastatus-definitions-serverinstalledappsdata-properties-version.md "https://timelimit.io/ServerDataStatus#/definitions/ServerInstalledAppsData/properties/version")
|
||||||
|
|
||||||
|
### version Type
|
||||||
|
|
||||||
|
`string`
|
||||||
|
|
||||||
|
## apps
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
`apps`
|
||||||
|
|
||||||
|
- is required
|
||||||
|
- Type: `object[]` ([SerializedInstalledApp](serverdatastatus-definitions-serializedinstalledapp.md))
|
||||||
|
- cannot be null
|
||||||
|
- defined in: [ServerDataStatus](serverdatastatus-definitions-serverinstalledappsdata-properties-apps.md "https://timelimit.io/ServerDataStatus#/definitions/ServerInstalledAppsData/properties/apps")
|
||||||
|
|
||||||
|
### apps Type
|
||||||
|
|
||||||
|
`object[]` ([SerializedInstalledApp](serverdatastatus-definitions-serializedinstalledapp.md))
|
||||||
|
|
||||||
|
## activities
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
`activities`
|
||||||
|
|
||||||
|
- is required
|
||||||
|
- Type: `object[]` ([SerializedAppActivityItem](serverdatastatus-definitions-serializedappactivityitem.md))
|
||||||
|
- cannot be null
|
||||||
|
- defined in: [ServerDataStatus](serverdatastatus-definitions-serverinstalledappsdata-properties-activities.md "https://timelimit.io/ServerDataStatus#/definitions/ServerInstalledAppsData/properties/activities")
|
||||||
|
|
||||||
|
### activities Type
|
||||||
|
|
||||||
|
`object[]` ([SerializedAppActivityItem](serverdatastatus-definitions-serializedappactivityitem.md))
|
|
@ -0,0 +1,16 @@
|
||||||
|
# Untitled number in ServerDataStatus Schema
|
||||||
|
|
||||||
|
```txt
|
||||||
|
https://timelimit.io/ServerDataStatus#/definitions/ServerTimeLimitRule/properties/dayMask
|
||||||
|
```
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
| Abstract | Extensible | Status | Identifiable | Custom Properties | Additional Properties | Access Restrictions | Defined In |
|
||||||
|
| :------------------ | ---------- | -------------- | ----------------------- | :---------------- | --------------------- | ------------------- | ------------------------------------------------------------------------------------- |
|
||||||
|
| Can be instantiated | No | Unknown status | Unknown identifiability | Forbidden | Allowed | none | [ServerDataStatus.schema.json\*](ServerDataStatus.schema.json "open original schema") |
|
||||||
|
|
||||||
|
## dayMask Type
|
||||||
|
|
||||||
|
`number`
|
|
@ -0,0 +1,16 @@
|
||||||
|
# Untitled boolean in ServerDataStatus Schema
|
||||||
|
|
||||||
|
```txt
|
||||||
|
https://timelimit.io/ServerDataStatus#/definitions/ServerTimeLimitRule/properties/extraTime
|
||||||
|
```
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
| Abstract | Extensible | Status | Identifiable | Custom Properties | Additional Properties | Access Restrictions | Defined In |
|
||||||
|
| :------------------ | ---------- | -------------- | ----------------------- | :---------------- | --------------------- | ------------------- | ------------------------------------------------------------------------------------- |
|
||||||
|
| Can be instantiated | No | Unknown status | Unknown identifiability | Forbidden | Allowed | none | [ServerDataStatus.schema.json\*](ServerDataStatus.schema.json "open original schema") |
|
||||||
|
|
||||||
|
## extraTime Type
|
||||||
|
|
||||||
|
`boolean`
|
|
@ -0,0 +1,16 @@
|
||||||
|
# Untitled string in ServerDataStatus Schema
|
||||||
|
|
||||||
|
```txt
|
||||||
|
https://timelimit.io/ServerDataStatus#/definitions/ServerTimeLimitRule/properties/id
|
||||||
|
```
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
| Abstract | Extensible | Status | Identifiable | Custom Properties | Additional Properties | Access Restrictions | Defined In |
|
||||||
|
| :------------------ | ---------- | -------------- | ----------------------- | :---------------- | --------------------- | ------------------- | ------------------------------------------------------------------------------------- |
|
||||||
|
| Can be instantiated | No | Unknown status | Unknown identifiability | Forbidden | Allowed | none | [ServerDataStatus.schema.json\*](ServerDataStatus.schema.json "open original schema") |
|
||||||
|
|
||||||
|
## id Type
|
||||||
|
|
||||||
|
`string`
|
|
@ -0,0 +1,16 @@
|
||||||
|
# Untitled number in ServerDataStatus Schema
|
||||||
|
|
||||||
|
```txt
|
||||||
|
https://timelimit.io/ServerDataStatus#/definitions/ServerTimeLimitRule/properties/maxTime
|
||||||
|
```
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
| Abstract | Extensible | Status | Identifiable | Custom Properties | Additional Properties | Access Restrictions | Defined In |
|
||||||
|
| :------------------ | ---------- | -------------- | ----------------------- | :---------------- | --------------------- | ------------------- | ------------------------------------------------------------------------------------- |
|
||||||
|
| Can be instantiated | No | Unknown status | Unknown identifiability | Forbidden | Allowed | none | [ServerDataStatus.schema.json\*](ServerDataStatus.schema.json "open original schema") |
|
||||||
|
|
||||||
|
## maxTime Type
|
||||||
|
|
||||||
|
`number`
|
|
@ -0,0 +1,16 @@
|
||||||
|
# Untitled undefined type in ServerDataStatus Schema
|
||||||
|
|
||||||
|
```txt
|
||||||
|
https://timelimit.io/ServerDataStatus#/definitions/ServerTimeLimitRule/properties
|
||||||
|
```
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
| Abstract | Extensible | Status | Identifiable | Custom Properties | Additional Properties | Access Restrictions | Defined In |
|
||||||
|
| :------------------ | ---------- | -------------- | ----------------------- | :---------------- | --------------------- | ------------------- | ------------------------------------------------------------------------------------- |
|
||||||
|
| Can be instantiated | No | Unknown status | Unknown identifiability | Forbidden | Allowed | none | [ServerDataStatus.schema.json\*](ServerDataStatus.schema.json "open original schema") |
|
||||||
|
|
||||||
|
## properties Type
|
||||||
|
|
||||||
|
unknown
|
|
@ -0,0 +1,89 @@
|
||||||
|
# ServerTimeLimitRule Schema
|
||||||
|
|
||||||
|
```txt
|
||||||
|
https://timelimit.io/ServerDataStatus#/definitions/ServerTimeLimitRule
|
||||||
|
```
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
| Abstract | Extensible | Status | Identifiable | Custom Properties | Additional Properties | Access Restrictions | Defined In |
|
||||||
|
| :------------------ | ---------- | -------------- | ------------ | :---------------- | --------------------- | ------------------- | ------------------------------------------------------------------------------------- |
|
||||||
|
| Can be instantiated | No | Unknown status | No | Forbidden | Forbidden | none | [ServerDataStatus.schema.json\*](ServerDataStatus.schema.json "open original schema") |
|
||||||
|
|
||||||
|
## ServerTimeLimitRule Type
|
||||||
|
|
||||||
|
`object` ([ServerTimeLimitRule](serverdatastatus-definitions-servertimelimitrule.md))
|
||||||
|
|
||||||
|
# ServerTimeLimitRule Properties
|
||||||
|
|
||||||
|
| Property | Type | Required | Nullable | Defined by |
|
||||||
|
| :---------------------- | --------- | -------- | -------------- | :---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
|
||||||
|
| [id](#id) | `string` | Required | cannot be null | [ServerDataStatus](serverdatastatus-definitions-servertimelimitrule-properties-id.md "https://timelimit.io/ServerDataStatus#/definitions/ServerTimeLimitRule/properties/id") |
|
||||||
|
| [extraTime](#extraTime) | `boolean` | Required | cannot be null | [ServerDataStatus](serverdatastatus-definitions-servertimelimitrule-properties-extratime.md "https://timelimit.io/ServerDataStatus#/definitions/ServerTimeLimitRule/properties/extraTime") |
|
||||||
|
| [dayMask](#dayMask) | `number` | Required | cannot be null | [ServerDataStatus](serverdatastatus-definitions-servertimelimitrule-properties-daymask.md "https://timelimit.io/ServerDataStatus#/definitions/ServerTimeLimitRule/properties/dayMask") |
|
||||||
|
| [maxTime](#maxTime) | `number` | Required | cannot be null | [ServerDataStatus](serverdatastatus-definitions-servertimelimitrule-properties-maxtime.md "https://timelimit.io/ServerDataStatus#/definitions/ServerTimeLimitRule/properties/maxTime") |
|
||||||
|
|
||||||
|
## id
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
`id`
|
||||||
|
|
||||||
|
- is required
|
||||||
|
- Type: `string`
|
||||||
|
- cannot be null
|
||||||
|
- defined in: [ServerDataStatus](serverdatastatus-definitions-servertimelimitrule-properties-id.md "https://timelimit.io/ServerDataStatus#/definitions/ServerTimeLimitRule/properties/id")
|
||||||
|
|
||||||
|
### id Type
|
||||||
|
|
||||||
|
`string`
|
||||||
|
|
||||||
|
## extraTime
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
`extraTime`
|
||||||
|
|
||||||
|
- is required
|
||||||
|
- Type: `boolean`
|
||||||
|
- cannot be null
|
||||||
|
- defined in: [ServerDataStatus](serverdatastatus-definitions-servertimelimitrule-properties-extratime.md "https://timelimit.io/ServerDataStatus#/definitions/ServerTimeLimitRule/properties/extraTime")
|
||||||
|
|
||||||
|
### extraTime Type
|
||||||
|
|
||||||
|
`boolean`
|
||||||
|
|
||||||
|
## dayMask
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
`dayMask`
|
||||||
|
|
||||||
|
- is required
|
||||||
|
- Type: `number`
|
||||||
|
- cannot be null
|
||||||
|
- defined in: [ServerDataStatus](serverdatastatus-definitions-servertimelimitrule-properties-daymask.md "https://timelimit.io/ServerDataStatus#/definitions/ServerTimeLimitRule/properties/dayMask")
|
||||||
|
|
||||||
|
### dayMask Type
|
||||||
|
|
||||||
|
`number`
|
||||||
|
|
||||||
|
## maxTime
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
`maxTime`
|
||||||
|
|
||||||
|
- is required
|
||||||
|
- Type: `number`
|
||||||
|
- cannot be null
|
||||||
|
- defined in: [ServerDataStatus](serverdatastatus-definitions-servertimelimitrule-properties-maxtime.md "https://timelimit.io/ServerDataStatus#/definitions/ServerTimeLimitRule/properties/maxTime")
|
||||||
|
|
||||||
|
### maxTime Type
|
||||||
|
|
||||||
|
`number`
|
|
@ -0,0 +1,16 @@
|
||||||
|
# Untitled string in ServerDataStatus Schema
|
||||||
|
|
||||||
|
```txt
|
||||||
|
https://timelimit.io/ServerDataStatus#/definitions/ServerUpdatedCategoryAssignedApps/properties/apps/items
|
||||||
|
```
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
| Abstract | Extensible | Status | Identifiable | Custom Properties | Additional Properties | Access Restrictions | Defined In |
|
||||||
|
| :------------------ | ---------- | -------------- | ----------------------- | :---------------- | --------------------- | ------------------- | ------------------------------------------------------------------------------------- |
|
||||||
|
| Can be instantiated | No | Unknown status | Unknown identifiability | Forbidden | Allowed | none | [ServerDataStatus.schema.json\*](ServerDataStatus.schema.json "open original schema") |
|
||||||
|
|
||||||
|
## items Type
|
||||||
|
|
||||||
|
`string`
|
|
@ -0,0 +1,16 @@
|
||||||
|
# Untitled array in ServerDataStatus Schema
|
||||||
|
|
||||||
|
```txt
|
||||||
|
https://timelimit.io/ServerDataStatus#/definitions/ServerUpdatedCategoryAssignedApps/properties/apps
|
||||||
|
```
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
| Abstract | Extensible | Status | Identifiable | Custom Properties | Additional Properties | Access Restrictions | Defined In |
|
||||||
|
| :------------------ | ---------- | -------------- | ----------------------- | :---------------- | --------------------- | ------------------- | ------------------------------------------------------------------------------------- |
|
||||||
|
| Can be instantiated | No | Unknown status | Unknown identifiability | Forbidden | Allowed | none | [ServerDataStatus.schema.json\*](ServerDataStatus.schema.json "open original schema") |
|
||||||
|
|
||||||
|
## apps Type
|
||||||
|
|
||||||
|
`string[]`
|
|
@ -0,0 +1,16 @@
|
||||||
|
# Untitled string in ServerDataStatus Schema
|
||||||
|
|
||||||
|
```txt
|
||||||
|
https://timelimit.io/ServerDataStatus#/definitions/ServerUpdatedCategoryAssignedApps/properties/categoryId
|
||||||
|
```
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
| Abstract | Extensible | Status | Identifiable | Custom Properties | Additional Properties | Access Restrictions | Defined In |
|
||||||
|
| :------------------ | ---------- | -------------- | ----------------------- | :---------------- | --------------------- | ------------------- | ------------------------------------------------------------------------------------- |
|
||||||
|
| Can be instantiated | No | Unknown status | Unknown identifiability | Forbidden | Allowed | none | [ServerDataStatus.schema.json\*](ServerDataStatus.schema.json "open original schema") |
|
||||||
|
|
||||||
|
## categoryId Type
|
||||||
|
|
||||||
|
`string`
|
|
@ -0,0 +1,16 @@
|
||||||
|
# Untitled string in ServerDataStatus Schema
|
||||||
|
|
||||||
|
```txt
|
||||||
|
https://timelimit.io/ServerDataStatus#/definitions/ServerUpdatedCategoryAssignedApps/properties/version
|
||||||
|
```
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
| Abstract | Extensible | Status | Identifiable | Custom Properties | Additional Properties | Access Restrictions | Defined In |
|
||||||
|
| :------------------ | ---------- | -------------- | ----------------------- | :---------------- | --------------------- | ------------------- | ------------------------------------------------------------------------------------- |
|
||||||
|
| Can be instantiated | No | Unknown status | Unknown identifiability | Forbidden | Allowed | none | [ServerDataStatus.schema.json\*](ServerDataStatus.schema.json "open original schema") |
|
||||||
|
|
||||||
|
## version Type
|
||||||
|
|
||||||
|
`string`
|
|
@ -0,0 +1,16 @@
|
||||||
|
# Untitled undefined type in ServerDataStatus Schema
|
||||||
|
|
||||||
|
```txt
|
||||||
|
https://timelimit.io/ServerDataStatus#/definitions/ServerUpdatedCategoryAssignedApps/properties
|
||||||
|
```
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
| Abstract | Extensible | Status | Identifiable | Custom Properties | Additional Properties | Access Restrictions | Defined In |
|
||||||
|
| :------------------ | ---------- | -------------- | ----------------------- | :---------------- | --------------------- | ------------------- | ------------------------------------------------------------------------------------- |
|
||||||
|
| Can be instantiated | No | Unknown status | Unknown identifiability | Forbidden | Allowed | none | [ServerDataStatus.schema.json\*](ServerDataStatus.schema.json "open original schema") |
|
||||||
|
|
||||||
|
## properties Type
|
||||||
|
|
||||||
|
unknown
|
|
@ -0,0 +1,72 @@
|
||||||
|
# ServerUpdatedCategoryAssignedApps Schema
|
||||||
|
|
||||||
|
```txt
|
||||||
|
https://timelimit.io/ServerDataStatus#/definitions/ServerUpdatedCategoryAssignedApps
|
||||||
|
```
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
| Abstract | Extensible | Status | Identifiable | Custom Properties | Additional Properties | Access Restrictions | Defined In |
|
||||||
|
| :------------------ | ---------- | -------------- | ------------ | :---------------- | --------------------- | ------------------- | ------------------------------------------------------------------------------------- |
|
||||||
|
| Can be instantiated | No | Unknown status | No | Forbidden | Forbidden | none | [ServerDataStatus.schema.json\*](ServerDataStatus.schema.json "open original schema") |
|
||||||
|
|
||||||
|
## ServerUpdatedCategoryAssignedApps Type
|
||||||
|
|
||||||
|
`object` ([ServerUpdatedCategoryAssignedApps](serverdatastatus-definitions-serverupdatedcategoryassignedapps.md))
|
||||||
|
|
||||||
|
# ServerUpdatedCategoryAssignedApps Properties
|
||||||
|
|
||||||
|
| Property | Type | Required | Nullable | Defined by |
|
||||||
|
| :------------------------ | -------- | -------- | -------------- | :---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
|
||||||
|
| [categoryId](#categoryId) | `string` | Required | cannot be null | [ServerDataStatus](serverdatastatus-definitions-serverupdatedcategoryassignedapps-properties-categoryid.md "https://timelimit.io/ServerDataStatus#/definitions/ServerUpdatedCategoryAssignedApps/properties/categoryId") |
|
||||||
|
| [apps](#apps) | `array` | Required | cannot be null | [ServerDataStatus](serverdatastatus-definitions-serverupdatedcategoryassignedapps-properties-apps.md "https://timelimit.io/ServerDataStatus#/definitions/ServerUpdatedCategoryAssignedApps/properties/apps") |
|
||||||
|
| [version](#version) | `string` | Required | cannot be null | [ServerDataStatus](serverdatastatus-definitions-serverupdatedcategoryassignedapps-properties-version.md "https://timelimit.io/ServerDataStatus#/definitions/ServerUpdatedCategoryAssignedApps/properties/version") |
|
||||||
|
|
||||||
|
## categoryId
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
`categoryId`
|
||||||
|
|
||||||
|
- is required
|
||||||
|
- Type: `string`
|
||||||
|
- cannot be null
|
||||||
|
- defined in: [ServerDataStatus](serverdatastatus-definitions-serverupdatedcategoryassignedapps-properties-categoryid.md "https://timelimit.io/ServerDataStatus#/definitions/ServerUpdatedCategoryAssignedApps/properties/categoryId")
|
||||||
|
|
||||||
|
### categoryId Type
|
||||||
|
|
||||||
|
`string`
|
||||||
|
|
||||||
|
## apps
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
`apps`
|
||||||
|
|
||||||
|
- is required
|
||||||
|
- Type: `string[]`
|
||||||
|
- cannot be null
|
||||||
|
- defined in: [ServerDataStatus](serverdatastatus-definitions-serverupdatedcategoryassignedapps-properties-apps.md "https://timelimit.io/ServerDataStatus#/definitions/ServerUpdatedCategoryAssignedApps/properties/apps")
|
||||||
|
|
||||||
|
### apps Type
|
||||||
|
|
||||||
|
`string[]`
|
||||||
|
|
||||||
|
## version
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
`version`
|
||||||
|
|
||||||
|
- is required
|
||||||
|
- Type: `string`
|
||||||
|
- cannot be null
|
||||||
|
- defined in: [ServerDataStatus](serverdatastatus-definitions-serverupdatedcategoryassignedapps-properties-version.md "https://timelimit.io/ServerDataStatus#/definitions/ServerUpdatedCategoryAssignedApps/properties/version")
|
||||||
|
|
||||||
|
### version Type
|
||||||
|
|
||||||
|
`string`
|
|
@ -0,0 +1,16 @@
|
||||||
|
# Untitled boolean in ServerDataStatus Schema
|
||||||
|
|
||||||
|
```txt
|
||||||
|
https://timelimit.io/ServerDataStatus#/definitions/ServerUpdatedCategoryBaseData/properties/blockAllNotifications
|
||||||
|
```
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
| Abstract | Extensible | Status | Identifiable | Custom Properties | Additional Properties | Access Restrictions | Defined In |
|
||||||
|
| :------------------ | ---------- | -------------- | ----------------------- | :---------------- | --------------------- | ------------------- | ------------------------------------------------------------------------------------- |
|
||||||
|
| Can be instantiated | No | Unknown status | Unknown identifiability | Forbidden | Allowed | none | [ServerDataStatus.schema.json\*](ServerDataStatus.schema.json "open original schema") |
|
||||||
|
|
||||||
|
## blockAllNotifications Type
|
||||||
|
|
||||||
|
`boolean`
|
|
@ -0,0 +1,16 @@
|
||||||
|
# Untitled string in ServerDataStatus Schema
|
||||||
|
|
||||||
|
```txt
|
||||||
|
https://timelimit.io/ServerDataStatus#/definitions/ServerUpdatedCategoryBaseData/properties/blockedTimes
|
||||||
|
```
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
| Abstract | Extensible | Status | Identifiable | Custom Properties | Additional Properties | Access Restrictions | Defined In |
|
||||||
|
| :------------------ | ---------- | -------------- | ----------------------- | :---------------- | --------------------- | ------------------- | ------------------------------------------------------------------------------------- |
|
||||||
|
| Can be instantiated | No | Unknown status | Unknown identifiability | Forbidden | Allowed | none | [ServerDataStatus.schema.json\*](ServerDataStatus.schema.json "open original schema") |
|
||||||
|
|
||||||
|
## blockedTimes Type
|
||||||
|
|
||||||
|
`string`
|
|
@ -0,0 +1,16 @@
|
||||||
|
# Untitled string in ServerDataStatus Schema
|
||||||
|
|
||||||
|
```txt
|
||||||
|
https://timelimit.io/ServerDataStatus#/definitions/ServerUpdatedCategoryBaseData/properties/categoryId
|
||||||
|
```
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
| Abstract | Extensible | Status | Identifiable | Custom Properties | Additional Properties | Access Restrictions | Defined In |
|
||||||
|
| :------------------ | ---------- | -------------- | ----------------------- | :---------------- | --------------------- | ------------------- | ------------------------------------------------------------------------------------- |
|
||||||
|
| Can be instantiated | No | Unknown status | Unknown identifiability | Forbidden | Allowed | none | [ServerDataStatus.schema.json\*](ServerDataStatus.schema.json "open original schema") |
|
||||||
|
|
||||||
|
## categoryId Type
|
||||||
|
|
||||||
|
`string`
|
|
@ -0,0 +1,16 @@
|
||||||
|
# Untitled string in ServerDataStatus Schema
|
||||||
|
|
||||||
|
```txt
|
||||||
|
https://timelimit.io/ServerDataStatus#/definitions/ServerUpdatedCategoryBaseData/properties/childId
|
||||||
|
```
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
| Abstract | Extensible | Status | Identifiable | Custom Properties | Additional Properties | Access Restrictions | Defined In |
|
||||||
|
| :------------------ | ---------- | -------------- | ----------------------- | :---------------- | --------------------- | ------------------- | ------------------------------------------------------------------------------------- |
|
||||||
|
| Can be instantiated | No | Unknown status | Unknown identifiability | Forbidden | Allowed | none | [ServerDataStatus.schema.json\*](ServerDataStatus.schema.json "open original schema") |
|
||||||
|
|
||||||
|
## childId Type
|
||||||
|
|
||||||
|
`string`
|
|
@ -0,0 +1,16 @@
|
||||||
|
# Untitled number in ServerDataStatus Schema
|
||||||
|
|
||||||
|
```txt
|
||||||
|
https://timelimit.io/ServerDataStatus#/definitions/ServerUpdatedCategoryBaseData/properties/extraTime
|
||||||
|
```
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
| Abstract | Extensible | Status | Identifiable | Custom Properties | Additional Properties | Access Restrictions | Defined In |
|
||||||
|
| :------------------ | ---------- | -------------- | ----------------------- | :---------------- | --------------------- | ------------------- | ------------------------------------------------------------------------------------- |
|
||||||
|
| Can be instantiated | No | Unknown status | Unknown identifiability | Forbidden | Allowed | none | [ServerDataStatus.schema.json\*](ServerDataStatus.schema.json "open original schema") |
|
||||||
|
|
||||||
|
## extraTime Type
|
||||||
|
|
||||||
|
`number`
|
|
@ -0,0 +1,16 @@
|
||||||
|
# Untitled number in ServerDataStatus Schema
|
||||||
|
|
||||||
|
```txt
|
||||||
|
https://timelimit.io/ServerDataStatus#/definitions/ServerUpdatedCategoryBaseData/properties/extraTimeDay
|
||||||
|
```
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
| Abstract | Extensible | Status | Identifiable | Custom Properties | Additional Properties | Access Restrictions | Defined In |
|
||||||
|
| :------------------ | ---------- | -------------- | ----------------------- | :---------------- | --------------------- | ------------------- | ------------------------------------------------------------------------------------- |
|
||||||
|
| Can be instantiated | No | Unknown status | Unknown identifiability | Forbidden | Allowed | none | [ServerDataStatus.schema.json\*](ServerDataStatus.schema.json "open original schema") |
|
||||||
|
|
||||||
|
## extraTimeDay Type
|
||||||
|
|
||||||
|
`number`
|
|
@ -0,0 +1,16 @@
|
||||||
|
# Untitled number in ServerDataStatus Schema
|
||||||
|
|
||||||
|
```txt
|
||||||
|
https://timelimit.io/ServerDataStatus#/definitions/ServerUpdatedCategoryBaseData/properties/mblCharging
|
||||||
|
```
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
| Abstract | Extensible | Status | Identifiable | Custom Properties | Additional Properties | Access Restrictions | Defined In |
|
||||||
|
| :------------------ | ---------- | -------------- | ----------------------- | :---------------- | --------------------- | ------------------- | ------------------------------------------------------------------------------------- |
|
||||||
|
| Can be instantiated | No | Unknown status | Unknown identifiability | Forbidden | Allowed | none | [ServerDataStatus.schema.json\*](ServerDataStatus.schema.json "open original schema") |
|
||||||
|
|
||||||
|
## mblCharging Type
|
||||||
|
|
||||||
|
`number`
|
|
@ -0,0 +1,16 @@
|
||||||
|
# Untitled number in ServerDataStatus Schema
|
||||||
|
|
||||||
|
```txt
|
||||||
|
https://timelimit.io/ServerDataStatus#/definitions/ServerUpdatedCategoryBaseData/properties/mblMobile
|
||||||
|
```
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
| Abstract | Extensible | Status | Identifiable | Custom Properties | Additional Properties | Access Restrictions | Defined In |
|
||||||
|
| :------------------ | ---------- | -------------- | ----------------------- | :---------------- | --------------------- | ------------------- | ------------------------------------------------------------------------------------- |
|
||||||
|
| Can be instantiated | No | Unknown status | Unknown identifiability | Forbidden | Allowed | none | [ServerDataStatus.schema.json\*](ServerDataStatus.schema.json "open original schema") |
|
||||||
|
|
||||||
|
## mblMobile Type
|
||||||
|
|
||||||
|
`number`
|
|
@ -0,0 +1,16 @@
|
||||||
|
# Untitled string in ServerDataStatus Schema
|
||||||
|
|
||||||
|
```txt
|
||||||
|
https://timelimit.io/ServerDataStatus#/definitions/ServerUpdatedCategoryBaseData/properties/parentCategoryId
|
||||||
|
```
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
| Abstract | Extensible | Status | Identifiable | Custom Properties | Additional Properties | Access Restrictions | Defined In |
|
||||||
|
| :------------------ | ---------- | -------------- | ----------------------- | :---------------- | --------------------- | ------------------- | ------------------------------------------------------------------------------------- |
|
||||||
|
| Can be instantiated | No | Unknown status | Unknown identifiability | Forbidden | Allowed | none | [ServerDataStatus.schema.json\*](ServerDataStatus.schema.json "open original schema") |
|
||||||
|
|
||||||
|
## parentCategoryId Type
|
||||||
|
|
||||||
|
`string`
|
|
@ -0,0 +1,16 @@
|
||||||
|
# Untitled number in ServerDataStatus Schema
|
||||||
|
|
||||||
|
```txt
|
||||||
|
https://timelimit.io/ServerDataStatus#/definitions/ServerUpdatedCategoryBaseData/properties/sort
|
||||||
|
```
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
| Abstract | Extensible | Status | Identifiable | Custom Properties | Additional Properties | Access Restrictions | Defined In |
|
||||||
|
| :------------------ | ---------- | -------------- | ----------------------- | :---------------- | --------------------- | ------------------- | ------------------------------------------------------------------------------------- |
|
||||||
|
| Can be instantiated | No | Unknown status | Unknown identifiability | Forbidden | Allowed | none | [ServerDataStatus.schema.json\*](ServerDataStatus.schema.json "open original schema") |
|
||||||
|
|
||||||
|
## sort Type
|
||||||
|
|
||||||
|
`number`
|
|
@ -0,0 +1,16 @@
|
||||||
|
# Untitled boolean in ServerDataStatus Schema
|
||||||
|
|
||||||
|
```txt
|
||||||
|
https://timelimit.io/ServerDataStatus#/definitions/ServerUpdatedCategoryBaseData/properties/tempBlocked
|
||||||
|
```
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
| Abstract | Extensible | Status | Identifiable | Custom Properties | Additional Properties | Access Restrictions | Defined In |
|
||||||
|
| :------------------ | ---------- | -------------- | ----------------------- | :---------------- | --------------------- | ------------------- | ------------------------------------------------------------------------------------- |
|
||||||
|
| Can be instantiated | No | Unknown status | Unknown identifiability | Forbidden | Allowed | none | [ServerDataStatus.schema.json\*](ServerDataStatus.schema.json "open original schema") |
|
||||||
|
|
||||||
|
## tempBlocked Type
|
||||||
|
|
||||||
|
`boolean`
|
|
@ -0,0 +1,16 @@
|
||||||
|
# Untitled number in ServerDataStatus Schema
|
||||||
|
|
||||||
|
```txt
|
||||||
|
https://timelimit.io/ServerDataStatus#/definitions/ServerUpdatedCategoryBaseData/properties/tempBlockTime
|
||||||
|
```
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
| Abstract | Extensible | Status | Identifiable | Custom Properties | Additional Properties | Access Restrictions | Defined In |
|
||||||
|
| :------------------ | ---------- | -------------- | ----------------------- | :---------------- | --------------------- | ------------------- | ------------------------------------------------------------------------------------- |
|
||||||
|
| Can be instantiated | No | Unknown status | Unknown identifiability | Forbidden | Allowed | none | [ServerDataStatus.schema.json\*](ServerDataStatus.schema.json "open original schema") |
|
||||||
|
|
||||||
|
## tempBlockTime Type
|
||||||
|
|
||||||
|
`number`
|
|
@ -0,0 +1,16 @@
|
||||||
|
# Untitled number in ServerDataStatus Schema
|
||||||
|
|
||||||
|
```txt
|
||||||
|
https://timelimit.io/ServerDataStatus#/definitions/ServerUpdatedCategoryBaseData/properties/timeWarnings
|
||||||
|
```
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
| Abstract | Extensible | Status | Identifiable | Custom Properties | Additional Properties | Access Restrictions | Defined In |
|
||||||
|
| :------------------ | ---------- | -------------- | ----------------------- | :---------------- | --------------------- | ------------------- | ------------------------------------------------------------------------------------- |
|
||||||
|
| Can be instantiated | No | Unknown status | Unknown identifiability | Forbidden | Allowed | none | [ServerDataStatus.schema.json\*](ServerDataStatus.schema.json "open original schema") |
|
||||||
|
|
||||||
|
## timeWarnings Type
|
||||||
|
|
||||||
|
`number`
|
|
@ -0,0 +1,16 @@
|
||||||
|
# Untitled string in ServerDataStatus Schema
|
||||||
|
|
||||||
|
```txt
|
||||||
|
https://timelimit.io/ServerDataStatus#/definitions/ServerUpdatedCategoryBaseData/properties/title
|
||||||
|
```
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
| Abstract | Extensible | Status | Identifiable | Custom Properties | Additional Properties | Access Restrictions | Defined In |
|
||||||
|
| :------------------ | ---------- | -------------- | ----------------------- | :---------------- | --------------------- | ------------------- | ------------------------------------------------------------------------------------- |
|
||||||
|
| Can be instantiated | No | Unknown status | Unknown identifiability | Forbidden | Allowed | none | [ServerDataStatus.schema.json\*](ServerDataStatus.schema.json "open original schema") |
|
||||||
|
|
||||||
|
## title Type
|
||||||
|
|
||||||
|
`string`
|
|
@ -0,0 +1,16 @@
|
||||||
|
# Untitled string in ServerDataStatus Schema
|
||||||
|
|
||||||
|
```txt
|
||||||
|
https://timelimit.io/ServerDataStatus#/definitions/ServerUpdatedCategoryBaseData/properties/version
|
||||||
|
```
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
| Abstract | Extensible | Status | Identifiable | Custom Properties | Additional Properties | Access Restrictions | Defined In |
|
||||||
|
| :------------------ | ---------- | -------------- | ----------------------- | :---------------- | --------------------- | ------------------- | ------------------------------------------------------------------------------------- |
|
||||||
|
| Can be instantiated | No | Unknown status | Unknown identifiability | Forbidden | Allowed | none | [ServerDataStatus.schema.json\*](ServerDataStatus.schema.json "open original schema") |
|
||||||
|
|
||||||
|
## version Type
|
||||||
|
|
||||||
|
`string`
|
|
@ -0,0 +1,16 @@
|
||||||
|
# \[object Object] Schema
|
||||||
|
|
||||||
|
```txt
|
||||||
|
https://timelimit.io/ServerDataStatus#/definitions/ServerUpdatedCategoryBaseData/properties
|
||||||
|
```
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
| Abstract | Extensible | Status | Identifiable | Custom Properties | Additional Properties | Access Restrictions | Defined In |
|
||||||
|
| :------------------ | ---------- | -------------- | ----------------------- | :---------------- | --------------------- | ------------------- | ------------------------------------------------------------------------------------- |
|
||||||
|
| Can be instantiated | No | Unknown status | Unknown identifiability | Forbidden | Allowed | none | [ServerDataStatus.schema.json\*](ServerDataStatus.schema.json "open original schema") |
|
||||||
|
|
||||||
|
## properties Type
|
||||||
|
|
||||||
|
unknown
|
|
@ -0,0 +1,276 @@
|
||||||
|
# ServerUpdatedCategoryBaseData Schema
|
||||||
|
|
||||||
|
```txt
|
||||||
|
https://timelimit.io/ServerDataStatus#/definitions/ServerUpdatedCategoryBaseData
|
||||||
|
```
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
| Abstract | Extensible | Status | Identifiable | Custom Properties | Additional Properties | Access Restrictions | Defined In |
|
||||||
|
| :------------------ | ---------- | -------------- | ------------ | :---------------- | --------------------- | ------------------- | ------------------------------------------------------------------------------------- |
|
||||||
|
| Can be instantiated | No | Unknown status | No | Forbidden | Forbidden | none | [ServerDataStatus.schema.json\*](ServerDataStatus.schema.json "open original schema") |
|
||||||
|
|
||||||
|
## ServerUpdatedCategoryBaseData Type
|
||||||
|
|
||||||
|
`object` ([ServerUpdatedCategoryBaseData](serverdatastatus-definitions-serverupdatedcategorybasedata.md))
|
||||||
|
|
||||||
|
# ServerUpdatedCategoryBaseData Properties
|
||||||
|
|
||||||
|
| Property | Type | Required | Nullable | Defined by |
|
||||||
|
| :---------------------------------------------- | --------- | -------- | -------------- | :------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ |
|
||||||
|
| [categoryId](#categoryId) | `string` | Required | cannot be null | [ServerDataStatus](serverdatastatus-definitions-serverupdatedcategorybasedata-properties-categoryid.md "https://timelimit.io/ServerDataStatus#/definitions/ServerUpdatedCategoryBaseData/properties/categoryId") |
|
||||||
|
| [childId](#childId) | `string` | Required | cannot be null | [ServerDataStatus](serverdatastatus-definitions-serverupdatedcategorybasedata-properties-childid.md "https://timelimit.io/ServerDataStatus#/definitions/ServerUpdatedCategoryBaseData/properties/childId") |
|
||||||
|
| [title](#title) | `string` | Required | cannot be null | [ServerDataStatus](serverdatastatus-definitions-serverupdatedcategorybasedata-properties-title.md "https://timelimit.io/ServerDataStatus#/definitions/ServerUpdatedCategoryBaseData/properties/title") |
|
||||||
|
| [blockedTimes](#blockedTimes) | `string` | Required | cannot be null | [ServerDataStatus](serverdatastatus-definitions-serverupdatedcategorybasedata-properties-blockedtimes.md "https://timelimit.io/ServerDataStatus#/definitions/ServerUpdatedCategoryBaseData/properties/blockedTimes") |
|
||||||
|
| [extraTime](#extraTime) | `number` | Required | cannot be null | [ServerDataStatus](serverdatastatus-definitions-serverupdatedcategorybasedata-properties-extratime.md "https://timelimit.io/ServerDataStatus#/definitions/ServerUpdatedCategoryBaseData/properties/extraTime") |
|
||||||
|
| [extraTimeDay](#extraTimeDay) | `number` | Required | cannot be null | [ServerDataStatus](serverdatastatus-definitions-serverupdatedcategorybasedata-properties-extratimeday.md "https://timelimit.io/ServerDataStatus#/definitions/ServerUpdatedCategoryBaseData/properties/extraTimeDay") |
|
||||||
|
| [tempBlocked](#tempBlocked) | `boolean` | Required | cannot be null | [ServerDataStatus](serverdatastatus-definitions-serverupdatedcategorybasedata-properties-tempblocked.md "https://timelimit.io/ServerDataStatus#/definitions/ServerUpdatedCategoryBaseData/properties/tempBlocked") |
|
||||||
|
| [tempBlockTime](#tempBlockTime) | `number` | Required | cannot be null | [ServerDataStatus](serverdatastatus-definitions-serverupdatedcategorybasedata-properties-tempblocktime.md "https://timelimit.io/ServerDataStatus#/definitions/ServerUpdatedCategoryBaseData/properties/tempBlockTime") |
|
||||||
|
| [version](#version) | `string` | Required | cannot be null | [ServerDataStatus](serverdatastatus-definitions-serverupdatedcategorybasedata-properties-version.md "https://timelimit.io/ServerDataStatus#/definitions/ServerUpdatedCategoryBaseData/properties/version") |
|
||||||
|
| [parentCategoryId](#parentCategoryId) | `string` | Required | cannot be null | [ServerDataStatus](serverdatastatus-definitions-serverupdatedcategorybasedata-properties-parentcategoryid.md "https://timelimit.io/ServerDataStatus#/definitions/ServerUpdatedCategoryBaseData/properties/parentCategoryId") |
|
||||||
|
| [blockAllNotifications](#blockAllNotifications) | `boolean` | Required | cannot be null | [ServerDataStatus](serverdatastatus-definitions-serverupdatedcategorybasedata-properties-blockallnotifications.md "https://timelimit.io/ServerDataStatus#/definitions/ServerUpdatedCategoryBaseData/properties/blockAllNotifications") |
|
||||||
|
| [timeWarnings](#timeWarnings) | `number` | Required | cannot be null | [ServerDataStatus](serverdatastatus-definitions-serverupdatedcategorybasedata-properties-timewarnings.md "https://timelimit.io/ServerDataStatus#/definitions/ServerUpdatedCategoryBaseData/properties/timeWarnings") |
|
||||||
|
| [mblCharging](#mblCharging) | `number` | Required | cannot be null | [ServerDataStatus](serverdatastatus-definitions-serverupdatedcategorybasedata-properties-mblcharging.md "https://timelimit.io/ServerDataStatus#/definitions/ServerUpdatedCategoryBaseData/properties/mblCharging") |
|
||||||
|
| [mblMobile](#mblMobile) | `number` | Required | cannot be null | [ServerDataStatus](serverdatastatus-definitions-serverupdatedcategorybasedata-properties-mblmobile.md "https://timelimit.io/ServerDataStatus#/definitions/ServerUpdatedCategoryBaseData/properties/mblMobile") |
|
||||||
|
| [sort](#sort) | `number` | Required | cannot be null | [ServerDataStatus](serverdatastatus-definitions-serverupdatedcategorybasedata-properties-sort.md "https://timelimit.io/ServerDataStatus#/definitions/ServerUpdatedCategoryBaseData/properties/sort") |
|
||||||
|
|
||||||
|
## categoryId
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
`categoryId`
|
||||||
|
|
||||||
|
- is required
|
||||||
|
- Type: `string`
|
||||||
|
- cannot be null
|
||||||
|
- defined in: [ServerDataStatus](serverdatastatus-definitions-serverupdatedcategorybasedata-properties-categoryid.md "https://timelimit.io/ServerDataStatus#/definitions/ServerUpdatedCategoryBaseData/properties/categoryId")
|
||||||
|
|
||||||
|
### categoryId Type
|
||||||
|
|
||||||
|
`string`
|
||||||
|
|
||||||
|
## childId
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
`childId`
|
||||||
|
|
||||||
|
- is required
|
||||||
|
- Type: `string`
|
||||||
|
- cannot be null
|
||||||
|
- defined in: [ServerDataStatus](serverdatastatus-definitions-serverupdatedcategorybasedata-properties-childid.md "https://timelimit.io/ServerDataStatus#/definitions/ServerUpdatedCategoryBaseData/properties/childId")
|
||||||
|
|
||||||
|
### childId Type
|
||||||
|
|
||||||
|
`string`
|
||||||
|
|
||||||
|
## title
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
`title`
|
||||||
|
|
||||||
|
- is required
|
||||||
|
- Type: `string`
|
||||||
|
- cannot be null
|
||||||
|
- defined in: [ServerDataStatus](serverdatastatus-definitions-serverupdatedcategorybasedata-properties-title.md "https://timelimit.io/ServerDataStatus#/definitions/ServerUpdatedCategoryBaseData/properties/title")
|
||||||
|
|
||||||
|
### title Type
|
||||||
|
|
||||||
|
`string`
|
||||||
|
|
||||||
|
## blockedTimes
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
`blockedTimes`
|
||||||
|
|
||||||
|
- is required
|
||||||
|
- Type: `string`
|
||||||
|
- cannot be null
|
||||||
|
- defined in: [ServerDataStatus](serverdatastatus-definitions-serverupdatedcategorybasedata-properties-blockedtimes.md "https://timelimit.io/ServerDataStatus#/definitions/ServerUpdatedCategoryBaseData/properties/blockedTimes")
|
||||||
|
|
||||||
|
### blockedTimes Type
|
||||||
|
|
||||||
|
`string`
|
||||||
|
|
||||||
|
## extraTime
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
`extraTime`
|
||||||
|
|
||||||
|
- is required
|
||||||
|
- Type: `number`
|
||||||
|
- cannot be null
|
||||||
|
- defined in: [ServerDataStatus](serverdatastatus-definitions-serverupdatedcategorybasedata-properties-extratime.md "https://timelimit.io/ServerDataStatus#/definitions/ServerUpdatedCategoryBaseData/properties/extraTime")
|
||||||
|
|
||||||
|
### extraTime Type
|
||||||
|
|
||||||
|
`number`
|
||||||
|
|
||||||
|
## extraTimeDay
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
`extraTimeDay`
|
||||||
|
|
||||||
|
- is required
|
||||||
|
- Type: `number`
|
||||||
|
- cannot be null
|
||||||
|
- defined in: [ServerDataStatus](serverdatastatus-definitions-serverupdatedcategorybasedata-properties-extratimeday.md "https://timelimit.io/ServerDataStatus#/definitions/ServerUpdatedCategoryBaseData/properties/extraTimeDay")
|
||||||
|
|
||||||
|
### extraTimeDay Type
|
||||||
|
|
||||||
|
`number`
|
||||||
|
|
||||||
|
## tempBlocked
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
`tempBlocked`
|
||||||
|
|
||||||
|
- is required
|
||||||
|
- Type: `boolean`
|
||||||
|
- cannot be null
|
||||||
|
- defined in: [ServerDataStatus](serverdatastatus-definitions-serverupdatedcategorybasedata-properties-tempblocked.md "https://timelimit.io/ServerDataStatus#/definitions/ServerUpdatedCategoryBaseData/properties/tempBlocked")
|
||||||
|
|
||||||
|
### tempBlocked Type
|
||||||
|
|
||||||
|
`boolean`
|
||||||
|
|
||||||
|
## tempBlockTime
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
`tempBlockTime`
|
||||||
|
|
||||||
|
- is required
|
||||||
|
- Type: `number`
|
||||||
|
- cannot be null
|
||||||
|
- defined in: [ServerDataStatus](serverdatastatus-definitions-serverupdatedcategorybasedata-properties-tempblocktime.md "https://timelimit.io/ServerDataStatus#/definitions/ServerUpdatedCategoryBaseData/properties/tempBlockTime")
|
||||||
|
|
||||||
|
### tempBlockTime Type
|
||||||
|
|
||||||
|
`number`
|
||||||
|
|
||||||
|
## version
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
`version`
|
||||||
|
|
||||||
|
- is required
|
||||||
|
- Type: `string`
|
||||||
|
- cannot be null
|
||||||
|
- defined in: [ServerDataStatus](serverdatastatus-definitions-serverupdatedcategorybasedata-properties-version.md "https://timelimit.io/ServerDataStatus#/definitions/ServerUpdatedCategoryBaseData/properties/version")
|
||||||
|
|
||||||
|
### version Type
|
||||||
|
|
||||||
|
`string`
|
||||||
|
|
||||||
|
## parentCategoryId
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
`parentCategoryId`
|
||||||
|
|
||||||
|
- is required
|
||||||
|
- Type: `string`
|
||||||
|
- cannot be null
|
||||||
|
- defined in: [ServerDataStatus](serverdatastatus-definitions-serverupdatedcategorybasedata-properties-parentcategoryid.md "https://timelimit.io/ServerDataStatus#/definitions/ServerUpdatedCategoryBaseData/properties/parentCategoryId")
|
||||||
|
|
||||||
|
### parentCategoryId Type
|
||||||
|
|
||||||
|
`string`
|
||||||
|
|
||||||
|
## blockAllNotifications
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
`blockAllNotifications`
|
||||||
|
|
||||||
|
- is required
|
||||||
|
- Type: `boolean`
|
||||||
|
- cannot be null
|
||||||
|
- defined in: [ServerDataStatus](serverdatastatus-definitions-serverupdatedcategorybasedata-properties-blockallnotifications.md "https://timelimit.io/ServerDataStatus#/definitions/ServerUpdatedCategoryBaseData/properties/blockAllNotifications")
|
||||||
|
|
||||||
|
### blockAllNotifications Type
|
||||||
|
|
||||||
|
`boolean`
|
||||||
|
|
||||||
|
## timeWarnings
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
`timeWarnings`
|
||||||
|
|
||||||
|
- is required
|
||||||
|
- Type: `number`
|
||||||
|
- cannot be null
|
||||||
|
- defined in: [ServerDataStatus](serverdatastatus-definitions-serverupdatedcategorybasedata-properties-timewarnings.md "https://timelimit.io/ServerDataStatus#/definitions/ServerUpdatedCategoryBaseData/properties/timeWarnings")
|
||||||
|
|
||||||
|
### timeWarnings Type
|
||||||
|
|
||||||
|
`number`
|
||||||
|
|
||||||
|
## mblCharging
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
`mblCharging`
|
||||||
|
|
||||||
|
- is required
|
||||||
|
- Type: `number`
|
||||||
|
- cannot be null
|
||||||
|
- defined in: [ServerDataStatus](serverdatastatus-definitions-serverupdatedcategorybasedata-properties-mblcharging.md "https://timelimit.io/ServerDataStatus#/definitions/ServerUpdatedCategoryBaseData/properties/mblCharging")
|
||||||
|
|
||||||
|
### mblCharging Type
|
||||||
|
|
||||||
|
`number`
|
||||||
|
|
||||||
|
## mblMobile
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
`mblMobile`
|
||||||
|
|
||||||
|
- is required
|
||||||
|
- Type: `number`
|
||||||
|
- cannot be null
|
||||||
|
- defined in: [ServerDataStatus](serverdatastatus-definitions-serverupdatedcategorybasedata-properties-mblmobile.md "https://timelimit.io/ServerDataStatus#/definitions/ServerUpdatedCategoryBaseData/properties/mblMobile")
|
||||||
|
|
||||||
|
### mblMobile Type
|
||||||
|
|
||||||
|
`number`
|
||||||
|
|
||||||
|
## sort
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
`sort`
|
||||||
|
|
||||||
|
- is required
|
||||||
|
- Type: `number`
|
||||||
|
- cannot be null
|
||||||
|
- defined in: [ServerDataStatus](serverdatastatus-definitions-serverupdatedcategorybasedata-properties-sort.md "https://timelimit.io/ServerDataStatus#/definitions/ServerUpdatedCategoryBaseData/properties/sort")
|
||||||
|
|
||||||
|
### sort Type
|
||||||
|
|
||||||
|
`number`
|
Some files were not shown because too many files have changed in this diff Show more
Loading…
Add table
Add a link
Reference in a new issue