diff --git a/docs/schema/CanDoPurchaseRequest.schema.json b/docs/schema/CanDoPurchaseRequest.schema.json new file mode 100644 index 0000000..62246f4 --- /dev/null +++ b/docs/schema/CanDoPurchaseRequest.schema.json @@ -0,0 +1,24 @@ +{ + "type": "object", + "properties": { + "type": { + "enum": [ + "any", + "googleplay" + ], + "type": "string" + }, + "deviceAuthToken": { + "type": "string" + } + }, + "additionalProperties": false, + "required": [ + "deviceAuthToken", + "type" + ], + "definitions": {}, + "$schema": "http://json-schema.org/draft-07/schema#", + "title": "CanDoPurchaseRequest", + "$id": "https://timelimit.io/CanDoPurchaseRequest" +} \ No newline at end of file diff --git a/docs/schema/CanRecoverPasswordRequest.schema.json b/docs/schema/CanRecoverPasswordRequest.schema.json new file mode 100644 index 0000000..30b88b4 --- /dev/null +++ b/docs/schema/CanRecoverPasswordRequest.schema.json @@ -0,0 +1,20 @@ +{ + "type": "object", + "properties": { + "mailAuthToken": { + "type": "string" + }, + "parentUserId": { + "type": "string" + } + }, + "additionalProperties": false, + "required": [ + "mailAuthToken", + "parentUserId" + ], + "definitions": {}, + "$schema": "http://json-schema.org/draft-07/schema#", + "title": "CanRecoverPasswordRequest", + "$id": "https://timelimit.io/CanRecoverPasswordRequest" +} \ No newline at end of file diff --git a/docs/schema/ClientPullChangesRequest.schema.json b/docs/schema/ClientPullChangesRequest.schema.json new file mode 100644 index 0000000..1ec4285 --- /dev/null +++ b/docs/schema/ClientPullChangesRequest.schema.json @@ -0,0 +1,77 @@ +{ + "type": "object", + "properties": { + "deviceAuthToken": { + "type": "string" + }, + "status": { + "$ref": "#/definitions/ClientDataStatus" + } + }, + "additionalProperties": false, + "required": [ + "deviceAuthToken", + "status" + ], + "definitions": { + "ClientDataStatus": { + "type": "object", + "properties": { + "devices": { + "type": "string" + }, + "apps": { + "type": "object", + "additionalProperties": { + "type": "string" + } + }, + "categories": { + "type": "object", + "additionalProperties": { + "$ref": "#/definitions/CategoryDataStatus" + } + }, + "users": { + "type": "string" + } + }, + "additionalProperties": false, + "required": [ + "apps", + "categories", + "devices", + "users" + ], + "title": "ClientDataStatus" + }, + "CategoryDataStatus": { + "type": "object", + "properties": { + "base": { + "type": "string" + }, + "apps": { + "type": "string" + }, + "rules": { + "type": "string" + }, + "usedTime": { + "type": "string" + } + }, + "additionalProperties": false, + "required": [ + "apps", + "base", + "rules", + "usedTime" + ], + "title": "CategoryDataStatus" + } + }, + "$schema": "http://json-schema.org/draft-07/schema#", + "title": "ClientPullChangesRequest", + "$id": "https://timelimit.io/ClientPullChangesRequest" +} \ No newline at end of file diff --git a/docs/schema/ClientPushChangesRequest.schema.json b/docs/schema/ClientPushChangesRequest.schema.json new file mode 100644 index 0000000..e70f4ea --- /dev/null +++ b/docs/schema/ClientPushChangesRequest.schema.json @@ -0,0 +1,52 @@ +{ + "type": "object", + "properties": { + "deviceAuthToken": { + "type": "string" + }, + "actions": { + "type": "array", + "items": { + "type": "object", + "properties": { + "encodedAction": { + "type": "string" + }, + "sequenceNumber": { + "type": "number" + }, + "integrity": { + "type": "string" + }, + "type": { + "enum": [ + "appLogic", + "child", + "parent" + ], + "type": "string" + }, + "userId": { + "type": "string" + } + }, + "additionalProperties": false, + "required": [ + "encodedAction", + "integrity", + "sequenceNumber", + "type", + "userId" + ] + } + } + }, + "additionalProperties": false, + "required": [ + "actions", + "deviceAuthToken" + ], + "$schema": "http://json-schema.org/draft-07/schema#", + "title": "ClientPushChangesRequest", + "$id": "https://timelimit.io/ClientPushChangesRequest" +} \ No newline at end of file diff --git a/docs/schema/CreateFamilyByMailTokenRequest.schema.json b/docs/schema/CreateFamilyByMailTokenRequest.schema.json new file mode 100644 index 0000000..b7a2ac8 --- /dev/null +++ b/docs/schema/CreateFamilyByMailTokenRequest.schema.json @@ -0,0 +1,71 @@ +{ + "type": "object", + "properties": { + "mailAuthToken": { + "type": "string" + }, + "parentPassword": { + "$ref": "#/definitions/ParentPassword" + }, + "parentDevice": { + "$ref": "#/definitions/NewDeviceInfo" + }, + "deviceName": { + "type": "string" + }, + "timeZone": { + "type": "string" + }, + "parentName": { + "type": "string" + } + }, + "additionalProperties": false, + "required": [ + "deviceName", + "mailAuthToken", + "parentDevice", + "parentName", + "parentPassword", + "timeZone" + ], + "definitions": { + "ParentPassword": { + "type": "object", + "properties": { + "hash": { + "type": "string" + }, + "secondHash": { + "type": "string" + }, + "secondSalt": { + "type": "string" + } + }, + "additionalProperties": false, + "required": [ + "hash", + "secondHash", + "secondSalt" + ], + "title": "ParentPassword" + }, + "NewDeviceInfo": { + "type": "object", + "properties": { + "model": { + "type": "string" + } + }, + "additionalProperties": false, + "required": [ + "model" + ], + "title": "NewDeviceInfo" + } + }, + "$schema": "http://json-schema.org/draft-07/schema#", + "title": "CreateFamilyByMailTokenRequest", + "$id": "https://timelimit.io/CreateFamilyByMailTokenRequest" +} \ No newline at end of file diff --git a/docs/schema/CreateRegisterDeviceTokenRequest.schema.json b/docs/schema/CreateRegisterDeviceTokenRequest.schema.json new file mode 100644 index 0000000..be812b4 --- /dev/null +++ b/docs/schema/CreateRegisterDeviceTokenRequest.schema.json @@ -0,0 +1,24 @@ +{ + "type": "object", + "properties": { + "deviceAuthToken": { + "type": "string" + }, + "parentId": { + "type": "string" + }, + "parentPasswordSecondHash": { + "type": "string" + } + }, + "additionalProperties": false, + "required": [ + "deviceAuthToken", + "parentId", + "parentPasswordSecondHash" + ], + "definitions": {}, + "$schema": "http://json-schema.org/draft-07/schema#", + "title": "CreateRegisterDeviceTokenRequest", + "$id": "https://timelimit.io/CreateRegisterDeviceTokenRequest" +} \ No newline at end of file diff --git a/docs/schema/FinishPurchaseByGooglePlayRequest.schema.json b/docs/schema/FinishPurchaseByGooglePlayRequest.schema.json new file mode 100644 index 0000000..dc33d08 --- /dev/null +++ b/docs/schema/FinishPurchaseByGooglePlayRequest.schema.json @@ -0,0 +1,24 @@ +{ + "type": "object", + "properties": { + "deviceAuthToken": { + "type": "string" + }, + "receipt": { + "type": "string" + }, + "signature": { + "type": "string" + } + }, + "additionalProperties": false, + "required": [ + "deviceAuthToken", + "receipt", + "signature" + ], + "definitions": {}, + "$schema": "http://json-schema.org/draft-07/schema#", + "title": "FinishPurchaseByGooglePlayRequest", + "$id": "https://timelimit.io/FinishPurchaseByGooglePlayRequest" +} \ No newline at end of file diff --git a/docs/schema/LinkParentMailAddressRequest.schema.json b/docs/schema/LinkParentMailAddressRequest.schema.json new file mode 100644 index 0000000..b08f77f --- /dev/null +++ b/docs/schema/LinkParentMailAddressRequest.schema.json @@ -0,0 +1,28 @@ +{ + "type": "object", + "properties": { + "mailAuthToken": { + "type": "string" + }, + "deviceAuthToken": { + "type": "string" + }, + "parentUserId": { + "type": "string" + }, + "parentPasswordSecondHash": { + "type": "string" + } + }, + "additionalProperties": false, + "required": [ + "deviceAuthToken", + "mailAuthToken", + "parentPasswordSecondHash", + "parentUserId" + ], + "definitions": {}, + "$schema": "http://json-schema.org/draft-07/schema#", + "title": "LinkParentMailAddressRequest", + "$id": "https://timelimit.io/LinkParentMailAddressRequest" +} \ No newline at end of file diff --git a/docs/schema/MailAuthTokenRequestBody.schema.json b/docs/schema/MailAuthTokenRequestBody.schema.json new file mode 100644 index 0000000..20896f7 --- /dev/null +++ b/docs/schema/MailAuthTokenRequestBody.schema.json @@ -0,0 +1,16 @@ +{ + "type": "object", + "properties": { + "mailAuthToken": { + "type": "string" + } + }, + "additionalProperties": false, + "required": [ + "mailAuthToken" + ], + "definitions": {}, + "$schema": "http://json-schema.org/draft-07/schema#", + "title": "MailAuthTokenRequestBody", + "$id": "https://timelimit.io/MailAuthTokenRequestBody" +} \ No newline at end of file diff --git a/docs/schema/README.md b/docs/schema/README.md new file mode 100644 index 0000000..9cfd693 --- /dev/null +++ b/docs/schema/README.md @@ -0,0 +1,192 @@ +# README + +## Top-level Schemas + +- [CanDoPurchaseRequest](./candopurchaserequest.md) – `https://timelimit.io/CanDoPurchaseRequest` +- [CanRecoverPasswordRequest](./canrecoverpasswordrequest.md) – `https://timelimit.io/CanRecoverPasswordRequest` +- [ClientPullChangesRequest](./clientpullchangesrequest.md) – `https://timelimit.io/ClientPullChangesRequest` +- [ClientPushChangesRequest](./clientpushchangesrequest.md) – `https://timelimit.io/ClientPushChangesRequest` +- [CreateFamilyByMailTokenRequest](./createfamilybymailtokenrequest.md) – `https://timelimit.io/CreateFamilyByMailTokenRequest` +- [CreateRegisterDeviceTokenRequest](./createregisterdevicetokenrequest.md) – `https://timelimit.io/CreateRegisterDeviceTokenRequest` +- [FinishPurchaseByGooglePlayRequest](./finishpurchasebygoogleplayrequest.md) – `https://timelimit.io/FinishPurchaseByGooglePlayRequest` +- [LinkParentMailAddressRequest](./linkparentmailaddressrequest.md) – `https://timelimit.io/LinkParentMailAddressRequest` +- [MailAuthTokenRequestBody](./mailauthtokenrequestbody.md) – `https://timelimit.io/MailAuthTokenRequestBody` +- [RecoverParentPasswordRequest](./recoverparentpasswordrequest.md) – `https://timelimit.io/RecoverParentPasswordRequest` +- [RegisterChildDeviceRequest](./registerchilddevicerequest.md) – `https://timelimit.io/RegisterChildDeviceRequest` +- [RemoveDeviceRequest](./removedevicerequest.md) – `https://timelimit.io/RemoveDeviceRequest` +- [RequestWithAuthToken](./requestwithauthtoken.md) – `https://timelimit.io/RequestWithAuthToken` +- [SendMailLoginCodeRequest](./sendmaillogincoderequest.md) – `https://timelimit.io/SendMailLoginCodeRequest` +- [SerializedAppLogicAction](./serializedapplogicaction.md) – `https://timelimit.io/SerializedAppLogicAction` +- [SerializedChildAction](./serializedchildaction.md) – `https://timelimit.io/SerializedChildAction` +- [SerializedParentAction](./serializedparentaction.md) – `https://timelimit.io/SerializedParentAction` +- [SignInByMailCodeRequest](./signinbymailcoderequest.md) – `https://timelimit.io/SignInByMailCodeRequest` +- [SignIntoFamilyRequest](./signintofamilyrequest.md) – `https://timelimit.io/SignIntoFamilyRequest` +- [UpdatePrimaryDeviceRequest](./updateprimarydevicerequest.md) – `https://timelimit.io/UpdatePrimaryDeviceRequest` + +## Other Schemas + +### Objects + +- [CategoryDataStatus](./clientpullchangesrequest-definitions-clientdatastatus-properties-categories-categorydatastatus.md) – `https://timelimit.io/ClientPullChangesRequest#/definitions/ClientDataStatus/properties/categories/additionalProperties` +- [CategoryDataStatus](./clientpullchangesrequest-definitions-clientdatastatus-properties-categories-categorydatastatus.md) – `https://timelimit.io/ClientPullChangesRequest#/definitions/ClientDataStatus/properties/categories/additionalProperties` +- [CategoryDataStatus](./clientpullchangesrequest-definitions-categorydatastatus.md) – `https://timelimit.io/ClientPullChangesRequest#/definitions/CategoryDataStatus` +- [ClientDataStatus](./clientpullchangesrequest-properties-clientdatastatus.md) – `https://timelimit.io/ClientPullChangesRequest#/properties/status` +- [ClientDataStatus](./clientpullchangesrequest-definitions-clientdatastatus.md) – `https://timelimit.io/ClientPullChangesRequest#/definitions/ClientDataStatus` +- [NewDeviceInfo](./registerchilddevicerequest-definitions-newdeviceinfo.md) – `https://timelimit.io/RegisterChildDeviceRequest#/definitions/NewDeviceInfo` +- [NewDeviceInfo](./registerchilddevicerequest-properties-newdeviceinfo.md) – `https://timelimit.io/RegisterChildDeviceRequest#/properties/childDevice` +- [NewDeviceInfo](./signintofamilyrequest-definitions-newdeviceinfo.md) – `https://timelimit.io/SignIntoFamilyRequest#/definitions/NewDeviceInfo` +- [NewDeviceInfo](./signintofamilyrequest-properties-newdeviceinfo.md) – `https://timelimit.io/SignIntoFamilyRequest#/properties/parentDevice` +- [NewDeviceInfo](./createfamilybymailtokenrequest-definitions-newdeviceinfo.md) – `https://timelimit.io/CreateFamilyByMailTokenRequest#/definitions/NewDeviceInfo` +- [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](./createfamilybymailtokenrequest-properties-parentpassword.md) – `https://timelimit.io/CreateFamilyByMailTokenRequest#/properties/parentPassword` +- [ParentPassword](./recoverparentpasswordrequest-properties-parentpassword.md) – `https://timelimit.io/RecoverParentPasswordRequest#/properties/password` +- [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-serializedadduseraction-properties-parentpassword.md) – `https://timelimit.io/SerializedParentAction#/definitions/SerializedAddUserAction/properties/password` +- [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](./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` +- [SerialiezdTriedDisablingDeviceAdminAction](./serializedapplogicaction-anyof-serialiezdtrieddisablingdeviceadminaction.md) – `https://timelimit.io/SerializedAppLogicAction#/anyOf/5` +- [SerialiezdTriedDisablingDeviceAdminAction](./serializedapplogicaction-definitions-serialiezdtrieddisablingdeviceadminaction.md) – `https://timelimit.io/SerializedAppLogicAction#/definitions/SerialiezdTriedDisablingDeviceAdminAction` +- [SerialiizedUpdateNetworkTimeVerificationAction](./serializedparentaction-definitions-serialiizedupdatenetworktimeverificationaction.md) – `https://timelimit.io/SerializedParentAction#/definitions/SerialiizedUpdateNetworkTimeVerificationAction` +- [SerialiizedUpdateNetworkTimeVerificationAction](./serializedparentaction-anyof-serialiizedupdatenetworktimeverificationaction.md) – `https://timelimit.io/SerializedParentAction#/anyOf/35` +- [SerializedAddCategoryAppsAction](./serializedparentaction-anyof-serializedaddcategoryappsaction.md) – `https://timelimit.io/SerializedParentAction#/anyOf/0` +- [SerializedAddCategoryAppsAction](./serializedparentaction-definitions-serializedaddcategoryappsaction.md) – `https://timelimit.io/SerializedParentAction#/definitions/SerializedAddCategoryAppsAction` +- [SerializedAddInstalledAppsAction](./serializedapplogicaction-definitions-serializedaddinstalledappsaction.md) – `https://timelimit.io/SerializedAppLogicAction#/definitions/SerializedAddInstalledAppsAction` +- [SerializedAddInstalledAppsAction](./serializedapplogicaction-anyof-serializedaddinstalledappsaction.md) – `https://timelimit.io/SerializedAppLogicAction#/anyOf/0` +- [SerializedAddUsedTimeAction](./serializedapplogicaction-definitions-serializedaddusedtimeaction.md) – `https://timelimit.io/SerializedAppLogicAction#/definitions/SerializedAddUsedTimeAction` +- [SerializedAddUsedTimeAction](./serializedapplogicaction-anyof-serializedaddusedtimeaction.md) – `https://timelimit.io/SerializedAppLogicAction#/anyOf/1` +- [SerializedAddUsedTimeActionVersion2](./serializedapplogicaction-anyof-serializedaddusedtimeactionversion2.md) – `https://timelimit.io/SerializedAppLogicAction#/anyOf/2` +- [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` +- [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-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-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` +- [SerializedChildSignInAction](./serializedchildaction-anyof-serializedchildsigninaction.md) – `https://timelimit.io/SerializedChildAction#/anyOf/1` +- [SerializedChildSignInAction](./serializedchildaction-definitions-serializedchildsigninaction.md) – `https://timelimit.io/SerializedChildAction#/definitions/SerializedChildSignInAction` +- [SerializedCreateCategoryAction](./serializedparentaction-definitions-serializedcreatecategoryaction.md) – `https://timelimit.io/SerializedParentAction#/definitions/SerializedCreateCategoryAction` +- [SerializedCreateCategoryAction](./serializedparentaction-anyof-serializedcreatecategoryaction.md) – `https://timelimit.io/SerializedParentAction#/anyOf/3` +- [SerializedCreateTimelimtRuleAction](./serializedparentaction-anyof-serializedcreatetimelimtruleaction.md) – `https://timelimit.io/SerializedParentAction#/anyOf/4` +- [SerializedCreateTimelimtRuleAction](./serializedparentaction-definitions-serializedcreatetimelimtruleaction.md) – `https://timelimit.io/SerializedParentAction#/definitions/SerializedCreateTimelimtRuleAction` +- [SerializedDeleteCategoryAction](./serializedparentaction-anyof-serializeddeletecategoryaction.md) – `https://timelimit.io/SerializedParentAction#/anyOf/5` +- [SerializedDeleteCategoryAction](./serializedparentaction-definitions-serializeddeletecategoryaction.md) – `https://timelimit.io/SerializedParentAction#/definitions/SerializedDeleteCategoryAction` +- [SerializedDeleteTimeLimitRuleAction](./serializedparentaction-anyof-serializeddeletetimelimitruleaction.md) – `https://timelimit.io/SerializedParentAction#/anyOf/6` +- [SerializedDeleteTimeLimitRuleAction](./serializedparentaction-definitions-serializeddeletetimelimitruleaction.md) – `https://timelimit.io/SerializedParentAction#/definitions/SerializedDeleteTimeLimitRuleAction` +- [SerializedIgnoreManipulationAction](./serializedparentaction-anyof-serializedignoremanipulationaction.md) – `https://timelimit.io/SerializedParentAction#/anyOf/7` +- [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` +- [SerializedInstalledApp](./serializedapplogicaction-definitions-serializedaddinstalledappsaction-properties-apps-serializedinstalledapp.md) – `https://timelimit.io/SerializedAppLogicAction#/definitions/SerializedAddInstalledAppsAction/properties/apps/items` +- [SerializedInstalledApp](./serializedapplogicaction-definitions-serializedinstalledapp.md) – `https://timelimit.io/SerializedAppLogicAction#/definitions/SerializedInstalledApp` +- [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` +- [SerializedRemoveCategoryAppsAction](./serializedparentaction-anyof-serializedremovecategoryappsaction.md) – `https://timelimit.io/SerializedParentAction#/anyOf/9` +- [SerializedRemoveInstalledAppsAction](./serializedapplogicaction-definitions-serializedremoveinstalledappsaction.md) – `https://timelimit.io/SerializedAppLogicAction#/definitions/SerializedRemoveInstalledAppsAction` +- [SerializedRemoveInstalledAppsAction](./serializedapplogicaction-anyof-serializedremoveinstalledappsaction.md) – `https://timelimit.io/SerializedAppLogicAction#/anyOf/3` +- [SerializedRemoveUserAction](./serializedparentaction-definitions-serializedremoveuseraction.md) – `https://timelimit.io/SerializedParentAction#/definitions/SerializedRemoveUserAction` +- [SerializedRemoveUserAction](./serializedparentaction-anyof-serializedremoveuseraction.md) – `https://timelimit.io/SerializedParentAction#/anyOf/10` +- [SerializedRenameChildAction](./serializedparentaction-definitions-serializedrenamechildaction.md) – `https://timelimit.io/SerializedParentAction#/definitions/SerializedRenameChildAction` +- [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` +- [SerializedSetCategoryExtraTimeAction](./serializedparentaction-definitions-serializedsetcategoryextratimeaction.md) – `https://timelimit.io/SerializedParentAction#/definitions/SerializedSetCategoryExtraTimeAction` +- [SerializedSetCategoryExtraTimeAction](./serializedparentaction-anyof-serializedsetcategoryextratimeaction.md) – `https://timelimit.io/SerializedParentAction#/anyOf/13` +- [SerializedSetCategoryForUnassignedAppsAction](./serializedparentaction-definitions-serializedsetcategoryforunassignedappsaction.md) – `https://timelimit.io/SerializedParentAction#/definitions/SerializedSetCategoryForUnassignedAppsAction` +- [SerializedSetCategoryForUnassignedAppsAction](./serializedparentaction-anyof-serializedsetcategoryforunassignedappsaction.md) – `https://timelimit.io/SerializedParentAction#/anyOf/14` +- [SerializedSetChildPasswordAction](./serializedparentaction-anyof-serializedsetchildpasswordaction.md) – `https://timelimit.io/SerializedParentAction#/anyOf/15` +- [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` +- [SerializedSetDeviceDefaultUserAction](./serializedparentaction-definitions-serializedsetdevicedefaultuseraction.md) – `https://timelimit.io/SerializedParentAction#/definitions/SerializedSetDeviceDefaultUserAction` +- [SerializedSetDeviceDefaultUserAction](./serializedparentaction-anyof-serializedsetdevicedefaultuseraction.md) – `https://timelimit.io/SerializedParentAction#/anyOf/17` +- [SerializedSetDeviceDefaultUserTimeoutAction](./serializedparentaction-anyof-serializedsetdevicedefaultusertimeoutaction.md) – `https://timelimit.io/SerializedParentAction#/anyOf/18` +- [SerializedSetDeviceDefaultUserTimeoutAction](./serializedparentaction-definitions-serializedsetdevicedefaultusertimeoutaction.md) – `https://timelimit.io/SerializedParentAction#/definitions/SerializedSetDeviceDefaultUserTimeoutAction` +- [SerializedSetDeviceUserAction](./serializedparentaction-definitions-serializedsetdeviceuseraction.md) – `https://timelimit.io/SerializedParentAction#/definitions/SerializedSetDeviceUserAction` +- [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` +- [SerializedSetParentCategoryAction](./serializedparentaction-definitions-serializedsetparentcategoryaction.md) – `https://timelimit.io/SerializedParentAction#/definitions/SerializedSetParentCategoryAction` +- [SerializedSetParentCategoryAction](./serializedparentaction-anyof-serializedsetparentcategoryaction.md) – `https://timelimit.io/SerializedParentAction#/anyOf/21` +- [SerializedSetRelaxPrimaryDeviceAction](./serializedparentaction-anyof-serializedsetrelaxprimarydeviceaction.md) – `https://timelimit.io/SerializedParentAction#/anyOf/22` +- [SerializedSetRelaxPrimaryDeviceAction](./serializedparentaction-definitions-serializedsetrelaxprimarydeviceaction.md) – `https://timelimit.io/SerializedParentAction#/definitions/SerializedSetRelaxPrimaryDeviceAction` +- [SerializedSetSendDeviceConnected](./serializedparentaction-anyof-serializedsetsenddeviceconnected.md) – `https://timelimit.io/SerializedParentAction#/anyOf/23` +- [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` +- [SerializedSetUserTimezoneAction](./serializedparentaction-anyof-serializedsetusertimezoneaction.md) – `https://timelimit.io/SerializedParentAction#/anyOf/25` +- [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` +- [SerializedTimeLimitRule](./serializedparentaction-definitions-serializedcreatetimelimtruleaction-properties-serializedtimelimitrule.md) – `https://timelimit.io/SerializedParentAction#/definitions/SerializedCreateTimelimtRuleAction/properties/rule` +- [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` +- [SerializedUpdateAppActivitiesAction](./serializedapplogicaction-anyof-serializedupdateappactivitiesaction.md) – `https://timelimit.io/SerializedAppLogicAction#/anyOf/6` +- [SerializedUpdateAppActivitiesAction](./serializedapplogicaction-definitions-serializedupdateappactivitiesaction.md) – `https://timelimit.io/SerializedAppLogicAction#/definitions/SerializedUpdateAppActivitiesAction` +- [SerializedUpdateCategoryBatteryLimitAction](./serializedparentaction-definitions-serializedupdatecategorybatterylimitaction.md) – `https://timelimit.io/SerializedParentAction#/definitions/SerializedUpdateCategoryBatteryLimitAction` +- [SerializedUpdateCategoryBatteryLimitAction](./serializedparentaction-anyof-serializedupdatecategorybatterylimitaction.md) – `https://timelimit.io/SerializedParentAction#/anyOf/26` +- [SerializedUpdateCategoryBlockAllNotificationsAction](./serializedparentaction-anyof-serializedupdatecategoryblockallnotificationsaction.md) – `https://timelimit.io/SerializedParentAction#/anyOf/27` +- [SerializedUpdateCategoryBlockAllNotificationsAction](./serializedparentaction-definitions-serializedupdatecategoryblockallnotificationsaction.md) – `https://timelimit.io/SerializedParentAction#/definitions/SerializedUpdateCategoryBlockAllNotificationsAction` +- [SerializedUpdateCategoryBlockedTimesAction](./serializedparentaction-anyof-serializedupdatecategoryblockedtimesaction.md) – `https://timelimit.io/SerializedParentAction#/anyOf/28` +- [SerializedUpdateCategoryBlockedTimesAction](./serializedparentaction-definitions-serializedupdatecategoryblockedtimesaction.md) – `https://timelimit.io/SerializedParentAction#/definitions/SerializedUpdateCategoryBlockedTimesAction` +- [SerializedUpdateCategorySortingAction](./serializedparentaction-definitions-serializedupdatecategorysortingaction.md) – `https://timelimit.io/SerializedParentAction#/definitions/SerializedUpdateCategorySortingAction` +- [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` +- [SerializedUpdateCategoryTimeWarningsAction](./serializedparentaction-anyof-serializedupdatecategorytimewarningsaction.md) – `https://timelimit.io/SerializedParentAction#/anyOf/31` +- [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` +- [SerializedUpdateDeviceNameAction](./serializedparentaction-definitions-serializedupdatedevicenameaction.md) – `https://timelimit.io/SerializedParentAction#/definitions/SerializedUpdateDeviceNameAction` +- [SerializedUpdateDeviceNameAction](./serializedparentaction-anyof-serializedupdatedevicenameaction.md) – `https://timelimit.io/SerializedParentAction#/anyOf/33` +- [SerializedUpdateDeviceStatusAction](./serializedapplogicaction-anyof-serializedupdatedevicestatusaction.md) – `https://timelimit.io/SerializedAppLogicAction#/anyOf/7` +- [SerializedUpdateDeviceStatusAction](./serializedapplogicaction-definitions-serializedupdatedevicestatusaction.md) – `https://timelimit.io/SerializedAppLogicAction#/definitions/SerializedUpdateDeviceStatusAction` +- [SerializedUpdateEnableActivityLevelBlockingAction](./serializedparentaction-anyof-serializedupdateenableactivitylevelblockingaction.md) – `https://timelimit.io/SerializedParentAction#/anyOf/34` +- [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` +- [SerializedUpdateParentNotificationFlagsAction](./serializedparentaction-anyof-serializedupdateparentnotificationflagsaction.md) – `https://timelimit.io/SerializedParentAction#/anyOf/37` +- [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` +- [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 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` + +### Arrays + +- [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-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-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-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-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-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-updatedoradded.md) – `https://timelimit.io/SerializedAppLogicAction#/definitions/SerializedUpdateAppActivitiesAction/properties/updatedOrAdded` +- [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-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-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` + +## Version Note + +The schemas linked above follow the JSON Schema Spec version: `http://json-schema.org/draft-07/schema#` diff --git a/docs/schema/RecoverParentPasswordRequest.schema.json b/docs/schema/RecoverParentPasswordRequest.schema.json new file mode 100644 index 0000000..74b59ea --- /dev/null +++ b/docs/schema/RecoverParentPasswordRequest.schema.json @@ -0,0 +1,42 @@ +{ + "type": "object", + "properties": { + "mailAuthToken": { + "type": "string" + }, + "password": { + "$ref": "#/definitions/ParentPassword" + } + }, + "additionalProperties": false, + "required": [ + "mailAuthToken", + "password" + ], + "definitions": { + "ParentPassword": { + "type": "object", + "properties": { + "hash": { + "type": "string" + }, + "secondHash": { + "type": "string" + }, + "secondSalt": { + "type": "string" + } + }, + "additionalProperties": false, + "required": [ + "hash", + "secondHash", + "secondSalt" + ], + "title": "ParentPassword" + } + }, + "$schema": "http://json-schema.org/draft-07/schema#", + "title": "RecoverParentPasswordRequest", + "$id": "https://timelimit.io/RecoverParentPasswordRequest" +} \ No newline at end of file diff --git a/docs/schema/RegisterChildDeviceRequest.schema.json b/docs/schema/RegisterChildDeviceRequest.schema.json new file mode 100644 index 0000000..3c7672f --- /dev/null +++ b/docs/schema/RegisterChildDeviceRequest.schema.json @@ -0,0 +1,38 @@ +{ + "type": "object", + "properties": { + "registerToken": { + "type": "string" + }, + "childDevice": { + "$ref": "#/definitions/NewDeviceInfo" + }, + "deviceName": { + "type": "string" + } + }, + "additionalProperties": false, + "required": [ + "childDevice", + "deviceName", + "registerToken" + ], + "definitions": { + "NewDeviceInfo": { + "type": "object", + "properties": { + "model": { + "type": "string" + } + }, + "additionalProperties": false, + "required": [ + "model" + ], + "title": "NewDeviceInfo" + } + }, + "$schema": "http://json-schema.org/draft-07/schema#", + "title": "RegisterChildDeviceRequest", + "$id": "https://timelimit.io/RegisterChildDeviceRequest" +} \ No newline at end of file diff --git a/docs/schema/RemoveDeviceRequest.schema.json b/docs/schema/RemoveDeviceRequest.schema.json new file mode 100644 index 0000000..fea34b5 --- /dev/null +++ b/docs/schema/RemoveDeviceRequest.schema.json @@ -0,0 +1,28 @@ +{ + "type": "object", + "properties": { + "deviceAuthToken": { + "type": "string" + }, + "parentUserId": { + "type": "string" + }, + "parentPasswordSecondHash": { + "type": "string" + }, + "deviceId": { + "type": "string" + } + }, + "additionalProperties": false, + "required": [ + "deviceAuthToken", + "deviceId", + "parentPasswordSecondHash", + "parentUserId" + ], + "definitions": {}, + "$schema": "http://json-schema.org/draft-07/schema#", + "title": "RemoveDeviceRequest", + "$id": "https://timelimit.io/RemoveDeviceRequest" +} \ No newline at end of file diff --git a/docs/schema/RequestWithAuthToken.schema.json b/docs/schema/RequestWithAuthToken.schema.json new file mode 100644 index 0000000..9be3134 --- /dev/null +++ b/docs/schema/RequestWithAuthToken.schema.json @@ -0,0 +1,16 @@ +{ + "type": "object", + "properties": { + "deviceAuthToken": { + "type": "string" + } + }, + "additionalProperties": false, + "required": [ + "deviceAuthToken" + ], + "definitions": {}, + "$schema": "http://json-schema.org/draft-07/schema#", + "title": "RequestWithAuthToken", + "$id": "https://timelimit.io/RequestWithAuthToken" +} \ No newline at end of file diff --git a/docs/schema/SendMailLoginCodeRequest.schema.json b/docs/schema/SendMailLoginCodeRequest.schema.json new file mode 100644 index 0000000..d542005 --- /dev/null +++ b/docs/schema/SendMailLoginCodeRequest.schema.json @@ -0,0 +1,20 @@ +{ + "type": "object", + "properties": { + "mail": { + "type": "string" + }, + "locale": { + "type": "string" + } + }, + "additionalProperties": false, + "required": [ + "locale", + "mail" + ], + "definitions": {}, + "$schema": "http://json-schema.org/draft-07/schema#", + "title": "SendMailLoginCodeRequest", + "$id": "https://timelimit.io/SendMailLoginCodeRequest" +} \ No newline at end of file diff --git a/docs/schema/SerializedAppLogicAction.schema.json b/docs/schema/SerializedAppLogicAction.schema.json new file mode 100644 index 0000000..18b8a9d --- /dev/null +++ b/docs/schema/SerializedAppLogicAction.schema.json @@ -0,0 +1,352 @@ +{ + "anyOf": [ + { + "$ref": "#/definitions/SerializedAddInstalledAppsAction" + }, + { + "$ref": "#/definitions/SerializedAddUsedTimeAction" + }, + { + "$ref": "#/definitions/SerializedAddUsedTimeActionVersion2" + }, + { + "$ref": "#/definitions/SerializedRemoveInstalledAppsAction" + }, + { + "$ref": "#/definitions/SerializedSignOutAtDeviceAction" + }, + { + "$ref": "#/definitions/SerialiezdTriedDisablingDeviceAdminAction" + }, + { + "$ref": "#/definitions/SerializedUpdateAppActivitiesAction" + }, + { + "$ref": "#/definitions/SerializedUpdateDeviceStatusAction" + } + ], + "definitions": { + "SerializedAddInstalledAppsAction": { + "type": "object", + "properties": { + "type": { + "type": "string", + "enum": [ + "ADD_INSTALLED_APPS" + ] + }, + "apps": { + "type": "array", + "items": { + "$ref": "#/definitions/SerializedInstalledApp" + } + } + }, + "additionalProperties": false, + "required": [ + "apps", + "type" + ], + "title": "SerializedAddInstalledAppsAction" + }, + "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" + }, + "SerializedAddUsedTimeAction": { + "type": "object", + "properties": { + "type": { + "type": "string", + "enum": [ + "ADD_USED_TIME" + ] + }, + "categoryId": { + "type": "string" + }, + "day": { + "type": "number" + }, + "timeToAdd": { + "type": "number" + }, + "extraTimeToSubtract": { + "type": "number" + } + }, + "additionalProperties": false, + "required": [ + "categoryId", + "day", + "extraTimeToSubtract", + "timeToAdd", + "type" + ], + "title": "SerializedAddUsedTimeAction" + }, + "SerializedAddUsedTimeActionVersion2": { + "type": "object", + "properties": { + "type": { + "type": "string", + "enum": [ + "ADD_USED_TIME_V2" + ] + }, + "d": { + "type": "number" + }, + "i": { + "type": "array", + "items": { + "type": "object", + "properties": { + "categoryId": { + "type": "string" + }, + "tta": { + "type": "number" + }, + "etts": { + "type": "number" + } + }, + "additionalProperties": false, + "required": [ + "categoryId", + "etts", + "tta" + ] + } + } + }, + "additionalProperties": false, + "required": [ + "d", + "i", + "type" + ], + "title": "SerializedAddUsedTimeActionVersion2" + }, + "SerializedRemoveInstalledAppsAction": { + "type": "object", + "properties": { + "type": { + "type": "string", + "enum": [ + "REMOVE_INSTALLED_APPS" + ] + }, + "packageNames": { + "type": "array", + "items": { + "type": "string" + } + } + }, + "additionalProperties": false, + "required": [ + "packageNames", + "type" + ], + "title": "SerializedRemoveInstalledAppsAction" + }, + "SerializedSignOutAtDeviceAction": { + "type": "object", + "properties": { + "type": { + "type": "string", + "enum": [ + "SIGN_OUT_AT_DEVICE" + ] + } + }, + "additionalProperties": false, + "required": [ + "type" + ], + "title": "SerializedSignOutAtDeviceAction" + }, + "SerialiezdTriedDisablingDeviceAdminAction": { + "type": "object", + "properties": { + "type": { + "type": "string", + "enum": [ + "TRIED_DISABLING_DEVICE_ADMIN" + ] + } + }, + "additionalProperties": false, + "required": [ + "type" + ], + "title": "SerialiezdTriedDisablingDeviceAdminAction" + }, + "SerializedUpdateAppActivitiesAction": { + "type": "object", + "properties": { + "type": { + "type": "string", + "enum": [ + "UPDATE_APP_ACTIVITIES" + ] + }, + "removed": { + "type": "array", + "items": { + "type": "array", + "items": [ + { + "type": "string" + }, + { + "type": "string" + } + ], + "minItems": 2, + "additionalItems": { + "anyOf": [ + { + "type": "string" + }, + { + "type": "string" + } + ] + } + } + }, + "updatedOrAdded": { + "type": "array", + "items": { + "$ref": "#/definitions/SerializedAppActivityItem" + } + } + }, + "additionalProperties": false, + "required": [ + "removed", + "type", + "updatedOrAdded" + ], + "title": "SerializedUpdateAppActivitiesAction" + }, + "SerializedAppActivityItem": { + "type": "object", + "properties": { + "p": { + "type": "string" + }, + "c": { + "type": "string" + }, + "t": { + "type": "string" + } + }, + "additionalProperties": false, + "required": [ + "c", + "p", + "t" + ], + "title": "SerializedAppActivityItem" + }, + "SerializedUpdateDeviceStatusAction": { + "type": "object", + "properties": { + "type": { + "type": "string", + "enum": [ + "UPDATE_DEVICE_STATUS" + ] + }, + "protectionLevel": { + "enum": [ + "device owner", + "none", + "password device admin", + "simple device admin" + ], + "type": "string" + }, + "usageStats": { + "enum": [ + "granted", + "not granted", + "not required" + ], + "type": "string" + }, + "notificationAccess": { + "enum": [ + "granted", + "not granted", + "not supported" + ], + "type": "string" + }, + "overlayPermission": { + "enum": [ + "granted", + "not granted", + "not required" + ], + "type": "string" + }, + "accessibilityServiceEnabled": { + "type": "boolean" + }, + "appVersion": { + "type": "number" + }, + "didReboot": { + "type": "boolean" + }, + "isQOrLaterNow": { + "type": "boolean" + } + }, + "additionalProperties": false, + "required": [ + "type" + ], + "title": "SerializedUpdateDeviceStatusAction" + } + }, + "$schema": "http://json-schema.org/draft-07/schema#", + "title": "SerializedAppLogicAction", + "$id": "https://timelimit.io/SerializedAppLogicAction" +} \ No newline at end of file diff --git a/docs/schema/SerializedChildAction.schema.json b/docs/schema/SerializedChildAction.schema.json new file mode 100644 index 0000000..351ad12 --- /dev/null +++ b/docs/schema/SerializedChildAction.schema.json @@ -0,0 +1,72 @@ +{ + "anyOf": [ + { + "$ref": "#/definitions/SerializedChildChangePasswordAction" + }, + { + "$ref": "#/definitions/SerializedChildSignInAction" + } + ], + "definitions": { + "SerializedChildChangePasswordAction": { + "type": "object", + "properties": { + "type": { + "type": "string", + "enum": [ + "CHILD_CHANGE_PASSWORD" + ] + }, + "password": { + "$ref": "#/definitions/ParentPassword" + } + }, + "additionalProperties": false, + "required": [ + "password", + "type" + ], + "title": "SerializedChildChangePasswordAction" + }, + "ParentPassword": { + "type": "object", + "properties": { + "hash": { + "type": "string" + }, + "secondHash": { + "type": "string" + }, + "secondSalt": { + "type": "string" + } + }, + "additionalProperties": false, + "required": [ + "hash", + "secondHash", + "secondSalt" + ], + "title": "ParentPassword" + }, + "SerializedChildSignInAction": { + "type": "object", + "properties": { + "type": { + "type": "string", + "enum": [ + "CHILD_SIGN_IN" + ] + } + }, + "additionalProperties": false, + "required": [ + "type" + ], + "title": "SerializedChildSignInAction" + } + }, + "$schema": "http://json-schema.org/draft-07/schema#", + "title": "SerializedChildAction", + "$id": "https://timelimit.io/SerializedChildAction" +} \ No newline at end of file diff --git a/docs/schema/SerializedParentAction.schema.json b/docs/schema/SerializedParentAction.schema.json new file mode 100644 index 0000000..3bd8cef --- /dev/null +++ b/docs/schema/SerializedParentAction.schema.json @@ -0,0 +1,1195 @@ +{ + "anyOf": [ + { + "$ref": "#/definitions/SerializedAddCategoryAppsAction" + }, + { + "$ref": "#/definitions/SerializedAddUserAction" + }, + { + "$ref": "#/definitions/SerializedChangeParentPasswordAction" + }, + { + "$ref": "#/definitions/SerializedCreateCategoryAction" + }, + { + "$ref": "#/definitions/SerializedCreateTimelimtRuleAction" + }, + { + "$ref": "#/definitions/SerializedDeleteCategoryAction" + }, + { + "$ref": "#/definitions/SerializedDeleteTimeLimitRuleAction" + }, + { + "$ref": "#/definitions/SerializedIgnoreManipulationAction" + }, + { + "$ref": "#/definitions/SerializedIncrementCategoryExtraTimeAction" + }, + { + "$ref": "#/definitions/SerializedRemoveCategoryAppsAction" + }, + { + "$ref": "#/definitions/SerializedRemoveUserAction" + }, + { + "$ref": "#/definitions/SerializedRenameChildAction" + }, + { + "$ref": "#/definitions/SerializedResetParentBlockedTimesAction" + }, + { + "$ref": "#/definitions/SerializedSetCategoryExtraTimeAction" + }, + { + "$ref": "#/definitions/SerializedSetCategoryForUnassignedAppsAction" + }, + { + "$ref": "#/definitions/SerializedSetChildPasswordAction" + }, + { + "$ref": "#/definitions/SerializedSetConsiderRebootManipulationAction" + }, + { + "$ref": "#/definitions/SerializedSetDeviceDefaultUserAction" + }, + { + "$ref": "#/definitions/SerializedSetDeviceDefaultUserTimeoutAction" + }, + { + "$ref": "#/definitions/SerializedSetDeviceUserAction" + }, + { + "$ref": "#/definitions/SerializedSetKeepSignedInAction" + }, + { + "$ref": "#/definitions/SerializedSetParentCategoryAction" + }, + { + "$ref": "#/definitions/SerializedSetRelaxPrimaryDeviceAction" + }, + { + "$ref": "#/definitions/SerializedSetSendDeviceConnected" + }, + { + "$ref": "#/definitions/SerializedSetUserDisableLimitsUntilAction" + }, + { + "$ref": "#/definitions/SerializedSetUserTimezoneAction" + }, + { + "$ref": "#/definitions/SerializedUpdateCategoryBatteryLimitAction" + }, + { + "$ref": "#/definitions/SerializedUpdateCategoryBlockAllNotificationsAction" + }, + { + "$ref": "#/definitions/SerializedUpdateCategoryBlockedTimesAction" + }, + { + "$ref": "#/definitions/SerializedUpdateCategorySortingAction" + }, + { + "$ref": "#/definitions/SerializedUpdateCategoryTemporarilyBlockedAction" + }, + { + "$ref": "#/definitions/SerializedUpdateCategoryTimeWarningsAction" + }, + { + "$ref": "#/definitions/SerializedUpdateCategoryTitleAction" + }, + { + "$ref": "#/definitions/SerializedUpdateDeviceNameAction" + }, + { + "$ref": "#/definitions/SerializedUpdateEnableActivityLevelBlockingAction" + }, + { + "$ref": "#/definitions/SerialiizedUpdateNetworkTimeVerificationAction" + }, + { + "$ref": "#/definitions/SerializedUpdateParentBlockedTimesAction" + }, + { + "$ref": "#/definitions/SerializedUpdateParentNotificationFlagsAction" + }, + { + "$ref": "#/definitions/SerializedUpdateTimelimitRuleAction" + } + ], + "definitions": { + "SerializedAddCategoryAppsAction": { + "type": "object", + "properties": { + "type": { + "type": "string", + "enum": [ + "ADD_CATEGORY_APPS" + ] + }, + "categoryId": { + "type": "string" + }, + "packageNames": { + "type": "array", + "items": { + "type": "string" + } + } + }, + "additionalProperties": false, + "required": [ + "categoryId", + "packageNames", + "type" + ], + "title": "SerializedAddCategoryAppsAction" + }, + "SerializedAddUserAction": { + "type": "object", + "properties": { + "type": { + "type": "string", + "enum": [ + "ADD_USER" + ] + }, + "name": { + "type": "string" + }, + "userType": { + "enum": [ + "child", + "parent" + ], + "type": "string" + }, + "userId": { + "type": "string" + }, + "password": { + "$ref": "#/definitions/ParentPassword" + }, + "timeZone": { + "type": "string" + } + }, + "additionalProperties": false, + "required": [ + "name", + "timeZone", + "type", + "userId", + "userType" + ], + "title": "SerializedAddUserAction" + }, + "ParentPassword": { + "type": "object", + "properties": { + "hash": { + "type": "string" + }, + "secondHash": { + "type": "string" + }, + "secondSalt": { + "type": "string" + } + }, + "additionalProperties": false, + "required": [ + "hash", + "secondHash", + "secondSalt" + ], + "title": "ParentPassword" + }, + "SerializedChangeParentPasswordAction": { + "type": "object", + "properties": { + "type": { + "type": "string", + "enum": [ + "CHANGE_PARENT_PASSWORD" + ] + }, + "userId": { + "type": "string" + }, + "hash": { + "type": "string" + }, + "secondSalt": { + "type": "string" + }, + "secondHashEncrypted": { + "type": "string" + }, + "integrity": { + "type": "string" + } + }, + "additionalProperties": false, + "required": [ + "hash", + "integrity", + "secondHashEncrypted", + "secondSalt", + "type", + "userId" + ], + "title": "SerializedChangeParentPasswordAction" + }, + "SerializedCreateCategoryAction": { + "type": "object", + "properties": { + "type": { + "type": "string", + "enum": [ + "CREATE_CATEGORY" + ] + }, + "childId": { + "type": "string" + }, + "categoryId": { + "type": "string" + }, + "title": { + "type": "string" + } + }, + "additionalProperties": false, + "required": [ + "categoryId", + "childId", + "title", + "type" + ], + "title": "SerializedCreateCategoryAction" + }, + "SerializedCreateTimelimtRuleAction": { + "type": "object", + "properties": { + "type": { + "type": "string", + "enum": [ + "CREATE_TIMELIMIT_RULE" + ] + }, + "rule": { + "$ref": "#/definitions/SerializedTimeLimitRule" + } + }, + "additionalProperties": false, + "required": [ + "rule", + "type" + ], + "title": "SerializedCreateTimelimtRuleAction" + }, + "SerializedTimeLimitRule": { + "type": "object", + "properties": { + "ruleId": { + "type": "string" + }, + "categoryId": { + "type": "string" + }, + "time": { + "type": "number" + }, + "days": { + "type": "number" + }, + "extraTime": { + "type": "boolean" + } + }, + "additionalProperties": false, + "required": [ + "categoryId", + "days", + "extraTime", + "ruleId", + "time" + ], + "title": "SerializedTimeLimitRule" + }, + "SerializedDeleteCategoryAction": { + "type": "object", + "properties": { + "type": { + "type": "string", + "enum": [ + "DELETE_CATEGORY" + ] + }, + "categoryId": { + "type": "string" + } + }, + "additionalProperties": false, + "required": [ + "categoryId", + "type" + ], + "title": "SerializedDeleteCategoryAction" + }, + "SerializedDeleteTimeLimitRuleAction": { + "type": "object", + "properties": { + "type": { + "type": "string", + "enum": [ + "DELETE_TIMELIMIT_RULE" + ] + }, + "ruleId": { + "type": "string" + } + }, + "additionalProperties": false, + "required": [ + "ruleId", + "type" + ], + "title": "SerializedDeleteTimeLimitRuleAction" + }, + "SerializedIgnoreManipulationAction": { + "type": "object", + "properties": { + "type": { + "type": "string", + "enum": [ + "IGNORE_MANIPULATION" + ] + }, + "deviceId": { + "type": "string" + }, + "admin": { + "type": "boolean" + }, + "adminA": { + "type": "boolean" + }, + "downgrade": { + "type": "boolean" + }, + "notification": { + "type": "boolean" + }, + "usageStats": { + "type": "boolean" + }, + "hadManipulation": { + "type": "boolean" + }, + "reboot": { + "type": "boolean" + }, + "overlay": { + "type": "boolean" + }, + "accessibilityService": { + "type": "boolean" + }, + "ignoreHadManipulationFlags": { + "type": "number" + } + }, + "additionalProperties": false, + "required": [ + "admin", + "adminA", + "deviceId", + "downgrade", + "hadManipulation", + "notification", + "type", + "usageStats" + ], + "title": "SerializedIgnoreManipulationAction" + }, + "SerializedIncrementCategoryExtraTimeAction": { + "type": "object", + "properties": { + "type": { + "type": "string", + "enum": [ + "INCREMENT_CATEGORY_EXTRATIME" + ] + }, + "categoryId": { + "type": "string" + }, + "addedExtraTime": { + "type": "number" + }, + "day": { + "type": "number" + } + }, + "additionalProperties": false, + "required": [ + "addedExtraTime", + "categoryId", + "type" + ], + "title": "SerializedIncrementCategoryExtraTimeAction" + }, + "SerializedRemoveCategoryAppsAction": { + "type": "object", + "properties": { + "type": { + "type": "string", + "enum": [ + "REMOVE_CATEGORY_APPS" + ] + }, + "categoryId": { + "type": "string" + }, + "packageNames": { + "type": "array", + "items": { + "type": "string" + } + } + }, + "additionalProperties": false, + "required": [ + "categoryId", + "packageNames", + "type" + ], + "title": "SerializedRemoveCategoryAppsAction" + }, + "SerializedRemoveUserAction": { + "type": "object", + "properties": { + "type": { + "type": "string", + "enum": [ + "REMOVE_USER" + ] + }, + "userId": { + "type": "string" + }, + "authentication": { + "type": "string" + } + }, + "additionalProperties": false, + "required": [ + "type", + "userId" + ], + "title": "SerializedRemoveUserAction" + }, + "SerializedRenameChildAction": { + "type": "object", + "properties": { + "type": { + "type": "string", + "enum": [ + "RENAME_CHILD" + ] + }, + "childId": { + "type": "string" + }, + "newName": { + "type": "string" + } + }, + "additionalProperties": false, + "required": [ + "childId", + "newName", + "type" + ], + "title": "SerializedRenameChildAction" + }, + "SerializedResetParentBlockedTimesAction": { + "type": "object", + "properties": { + "type": { + "type": "string", + "enum": [ + "RESET_PARENT_BLOCKED_TIMES" + ] + }, + "parentId": { + "type": "string" + } + }, + "additionalProperties": false, + "required": [ + "parentId", + "type" + ], + "title": "SerializedResetParentBlockedTimesAction" + }, + "SerializedSetCategoryExtraTimeAction": { + "type": "object", + "properties": { + "type": { + "type": "string", + "enum": [ + "SET_CATEGORY_EXTRA_TIME" + ] + }, + "categoryId": { + "type": "string" + }, + "newExtraTime": { + "type": "number" + }, + "day": { + "type": "number" + } + }, + "additionalProperties": false, + "required": [ + "categoryId", + "newExtraTime", + "type" + ], + "title": "SerializedSetCategoryExtraTimeAction" + }, + "SerializedSetCategoryForUnassignedAppsAction": { + "type": "object", + "properties": { + "type": { + "type": "string", + "enum": [ + "SET_CATEGORY_FOR_UNASSIGNED_APPS" + ] + }, + "childId": { + "type": "string" + }, + "categoryId": { + "type": "string" + } + }, + "additionalProperties": false, + "required": [ + "categoryId", + "childId", + "type" + ], + "title": "SerializedSetCategoryForUnassignedAppsAction" + }, + "SerializedSetChildPasswordAction": { + "type": "object", + "properties": { + "type": { + "type": "string", + "enum": [ + "SET_CHILD_PASSWORD" + ] + }, + "childId": { + "type": "string" + }, + "newPassword": { + "$ref": "#/definitions/ParentPassword" + } + }, + "additionalProperties": false, + "required": [ + "childId", + "newPassword", + "type" + ], + "title": "SerializedSetChildPasswordAction" + }, + "SerializedSetConsiderRebootManipulationAction": { + "type": "object", + "properties": { + "type": { + "type": "string", + "enum": [ + "SET_CONSIDER_REBOOT_MANIPULATION" + ] + }, + "deviceId": { + "type": "string" + }, + "enable": { + "type": "boolean" + } + }, + "additionalProperties": false, + "required": [ + "deviceId", + "enable", + "type" + ], + "title": "SerializedSetConsiderRebootManipulationAction" + }, + "SerializedSetDeviceDefaultUserAction": { + "type": "object", + "properties": { + "type": { + "type": "string", + "enum": [ + "SET_DEVICE_DEFAULT_USER" + ] + }, + "deviceId": { + "type": "string" + }, + "defaultUserId": { + "type": "string" + } + }, + "additionalProperties": false, + "required": [ + "defaultUserId", + "deviceId", + "type" + ], + "title": "SerializedSetDeviceDefaultUserAction" + }, + "SerializedSetDeviceDefaultUserTimeoutAction": { + "type": "object", + "properties": { + "type": { + "type": "string", + "enum": [ + "SET_DEVICE_DEFAULT_USER_TIMEOUT" + ] + }, + "deviceId": { + "type": "string" + }, + "timeout": { + "type": "number" + } + }, + "additionalProperties": false, + "required": [ + "deviceId", + "timeout", + "type" + ], + "title": "SerializedSetDeviceDefaultUserTimeoutAction" + }, + "SerializedSetDeviceUserAction": { + "type": "object", + "properties": { + "type": { + "type": "string", + "enum": [ + "SET_DEVICE_USER" + ] + }, + "deviceId": { + "type": "string" + }, + "userId": { + "type": "string" + } + }, + "additionalProperties": false, + "required": [ + "deviceId", + "type", + "userId" + ], + "title": "SerializedSetDeviceUserAction" + }, + "SerializedSetKeepSignedInAction": { + "type": "object", + "properties": { + "type": { + "type": "string", + "enum": [ + "SET_KEEP_SIGNED_IN" + ] + }, + "deviceId": { + "type": "string" + }, + "keepSignedIn": { + "type": "boolean" + } + }, + "additionalProperties": false, + "required": [ + "deviceId", + "keepSignedIn", + "type" + ], + "title": "SerializedSetKeepSignedInAction" + }, + "SerializedSetParentCategoryAction": { + "type": "object", + "properties": { + "type": { + "type": "string", + "enum": [ + "SET_PARENT_CATEGORY" + ] + }, + "categoryId": { + "type": "string" + }, + "parentCategory": { + "type": "string" + } + }, + "additionalProperties": false, + "required": [ + "categoryId", + "parentCategory", + "type" + ], + "title": "SerializedSetParentCategoryAction" + }, + "SerializedSetRelaxPrimaryDeviceAction": { + "type": "object", + "properties": { + "type": { + "type": "string", + "enum": [ + "SET_RELAX_PRIMARY_DEVICE" + ] + }, + "userId": { + "type": "string" + }, + "relax": { + "type": "boolean" + } + }, + "additionalProperties": false, + "required": [ + "relax", + "type", + "userId" + ], + "title": "SerializedSetRelaxPrimaryDeviceAction" + }, + "SerializedSetSendDeviceConnected": { + "type": "object", + "properties": { + "type": { + "type": "string", + "enum": [ + "SET_SEND_DEVICE_CONNECTED" + ] + }, + "deviceId": { + "type": "string" + }, + "enable": { + "type": "boolean" + } + }, + "additionalProperties": false, + "required": [ + "deviceId", + "enable", + "type" + ], + "title": "SerializedSetSendDeviceConnected" + }, + "SerializedSetUserDisableLimitsUntilAction": { + "type": "object", + "properties": { + "type": { + "type": "string", + "enum": [ + "SET_USER_DISABLE_LIMITS_UNTIL" + ] + }, + "childId": { + "type": "string" + }, + "time": { + "type": "number" + } + }, + "additionalProperties": false, + "required": [ + "childId", + "time", + "type" + ], + "title": "SerializedSetUserDisableLimitsUntilAction" + }, + "SerializedSetUserTimezoneAction": { + "type": "object", + "properties": { + "type": { + "type": "string", + "enum": [ + "SET_USER_TIMEZONE" + ] + }, + "userId": { + "type": "string" + }, + "timezone": { + "type": "string" + } + }, + "additionalProperties": false, + "required": [ + "timezone", + "type", + "userId" + ], + "title": "SerializedSetUserTimezoneAction" + }, + "SerializedUpdateCategoryBatteryLimitAction": { + "type": "object", + "properties": { + "type": { + "type": "string", + "enum": [ + "UPDATE_CATEGORY_BATTERY_LIMIT" + ] + }, + "categoryId": { + "type": "string" + }, + "chargeLimit": { + "type": "number" + }, + "mobileLimit": { + "type": "number" + } + }, + "additionalProperties": false, + "required": [ + "categoryId", + "type" + ], + "title": "SerializedUpdateCategoryBatteryLimitAction" + }, + "SerializedUpdateCategoryBlockAllNotificationsAction": { + "type": "object", + "properties": { + "type": { + "type": "string", + "enum": [ + "UPDATE_CATEGORY_BLOCK_ALL_NOTIFICATIONS" + ] + }, + "categoryId": { + "type": "string" + }, + "blocked": { + "type": "boolean" + } + }, + "additionalProperties": false, + "required": [ + "blocked", + "categoryId", + "type" + ], + "title": "SerializedUpdateCategoryBlockAllNotificationsAction" + }, + "SerializedUpdateCategoryBlockedTimesAction": { + "type": "object", + "properties": { + "type": { + "type": "string", + "enum": [ + "UPDATE_CATEGORY_BLOCKED_TIMES" + ] + }, + "categoryId": { + "type": "string" + }, + "times": { + "type": "string" + } + }, + "additionalProperties": false, + "required": [ + "categoryId", + "times", + "type" + ], + "title": "SerializedUpdateCategoryBlockedTimesAction" + }, + "SerializedUpdateCategorySortingAction": { + "type": "object", + "properties": { + "type": { + "type": "string", + "enum": [ + "UPDATE_CATEGORY_SORTING" + ] + }, + "categoryIds": { + "type": "array", + "items": { + "type": "string" + } + } + }, + "additionalProperties": false, + "required": [ + "categoryIds", + "type" + ], + "title": "SerializedUpdateCategorySortingAction" + }, + "SerializedUpdateCategoryTemporarilyBlockedAction": { + "type": "object", + "properties": { + "type": { + "type": "string", + "enum": [ + "UPDATE_CATEGORY_TEMPORARILY_BLOCKED" + ] + }, + "categoryId": { + "type": "string" + }, + "blocked": { + "type": "boolean" + }, + "endTime": { + "type": "number" + } + }, + "additionalProperties": false, + "required": [ + "blocked", + "categoryId", + "type" + ], + "title": "SerializedUpdateCategoryTemporarilyBlockedAction" + }, + "SerializedUpdateCategoryTimeWarningsAction": { + "type": "object", + "properties": { + "type": { + "type": "string", + "enum": [ + "UPDATE_CATEGORY_TIME_WARNINGS" + ] + }, + "categoryId": { + "type": "string" + }, + "enable": { + "type": "boolean" + }, + "flags": { + "type": "number" + } + }, + "additionalProperties": false, + "required": [ + "categoryId", + "enable", + "flags", + "type" + ], + "title": "SerializedUpdateCategoryTimeWarningsAction" + }, + "SerializedUpdateCategoryTitleAction": { + "type": "object", + "properties": { + "type": { + "type": "string", + "enum": [ + "UPDATE_CATEGORY_TITLE" + ] + }, + "categoryId": { + "type": "string" + }, + "newTitle": { + "type": "string" + } + }, + "additionalProperties": false, + "required": [ + "categoryId", + "newTitle", + "type" + ], + "title": "SerializedUpdateCategoryTitleAction" + }, + "SerializedUpdateDeviceNameAction": { + "type": "object", + "properties": { + "type": { + "type": "string", + "enum": [ + "UPDATE_DEVICE_NAME" + ] + }, + "deviceId": { + "type": "string" + }, + "name": { + "type": "string" + } + }, + "additionalProperties": false, + "required": [ + "deviceId", + "name", + "type" + ], + "title": "SerializedUpdateDeviceNameAction" + }, + "SerializedUpdateEnableActivityLevelBlockingAction": { + "type": "object", + "properties": { + "type": { + "type": "string", + "enum": [ + "UPDATE_ENABLE_ACTIVITY_LEVEL_BLOCKING" + ] + }, + "deviceId": { + "type": "string" + }, + "enable": { + "type": "boolean" + } + }, + "additionalProperties": false, + "required": [ + "deviceId", + "enable", + "type" + ], + "title": "SerializedUpdateEnableActivityLevelBlockingAction" + }, + "SerialiizedUpdateNetworkTimeVerificationAction": { + "type": "object", + "properties": { + "type": { + "type": "string", + "enum": [ + "UPDATE_NETWORK_TIME_VERIFICATION" + ] + }, + "deviceId": { + "type": "string" + }, + "mode": { + "enum": [ + "disabled", + "enabled", + "if possible" + ], + "type": "string" + } + }, + "additionalProperties": false, + "required": [ + "deviceId", + "mode", + "type" + ], + "title": "SerialiizedUpdateNetworkTimeVerificationAction" + }, + "SerializedUpdateParentBlockedTimesAction": { + "type": "object", + "properties": { + "type": { + "type": "string", + "enum": [ + "UPDATE_PARENT_BLOCKED_TIMES" + ] + }, + "parentId": { + "type": "string" + }, + "times": { + "type": "string" + } + }, + "additionalProperties": false, + "required": [ + "parentId", + "times", + "type" + ], + "title": "SerializedUpdateParentBlockedTimesAction" + }, + "SerializedUpdateParentNotificationFlagsAction": { + "type": "object", + "properties": { + "type": { + "type": "string", + "enum": [ + "UPDATE_PARENT_NOTIFICATION_FLAGS" + ] + }, + "parentId": { + "type": "string" + }, + "flags": { + "type": "number" + }, + "set": { + "type": "boolean" + } + }, + "additionalProperties": false, + "required": [ + "flags", + "parentId", + "set", + "type" + ], + "title": "SerializedUpdateParentNotificationFlagsAction" + }, + "SerializedUpdateTimelimitRuleAction": { + "type": "object", + "properties": { + "type": { + "type": "string", + "enum": [ + "UPDATE_TIMELIMIT_RULE" + ] + }, + "ruleId": { + "type": "string" + }, + "time": { + "type": "number" + }, + "days": { + "type": "number" + }, + "extraTime": { + "type": "boolean" + } + }, + "additionalProperties": false, + "required": [ + "days", + "extraTime", + "ruleId", + "time", + "type" + ], + "title": "SerializedUpdateTimelimitRuleAction" + } + }, + "$schema": "http://json-schema.org/draft-07/schema#", + "title": "SerializedParentAction", + "$id": "https://timelimit.io/SerializedParentAction" +} \ No newline at end of file diff --git a/docs/schema/SignInByMailCodeRequest.schema.json b/docs/schema/SignInByMailCodeRequest.schema.json new file mode 100644 index 0000000..9e5d1d0 --- /dev/null +++ b/docs/schema/SignInByMailCodeRequest.schema.json @@ -0,0 +1,20 @@ +{ + "type": "object", + "properties": { + "mailLoginToken": { + "type": "string" + }, + "receivedCode": { + "type": "string" + } + }, + "additionalProperties": false, + "required": [ + "mailLoginToken", + "receivedCode" + ], + "definitions": {}, + "$schema": "http://json-schema.org/draft-07/schema#", + "title": "SignInByMailCodeRequest", + "$id": "https://timelimit.io/SignInByMailCodeRequest" +} \ No newline at end of file diff --git a/docs/schema/SignIntoFamilyRequest.schema.json b/docs/schema/SignIntoFamilyRequest.schema.json new file mode 100644 index 0000000..8faf9a4 --- /dev/null +++ b/docs/schema/SignIntoFamilyRequest.schema.json @@ -0,0 +1,38 @@ +{ + "type": "object", + "properties": { + "mailAuthToken": { + "type": "string" + }, + "parentDevice": { + "$ref": "#/definitions/NewDeviceInfo" + }, + "deviceName": { + "type": "string" + } + }, + "additionalProperties": false, + "required": [ + "deviceName", + "mailAuthToken", + "parentDevice" + ], + "definitions": { + "NewDeviceInfo": { + "type": "object", + "properties": { + "model": { + "type": "string" + } + }, + "additionalProperties": false, + "required": [ + "model" + ], + "title": "NewDeviceInfo" + } + }, + "$schema": "http://json-schema.org/draft-07/schema#", + "title": "SignIntoFamilyRequest", + "$id": "https://timelimit.io/SignIntoFamilyRequest" +} \ No newline at end of file diff --git a/docs/schema/UpdatePrimaryDeviceRequest.schema.json b/docs/schema/UpdatePrimaryDeviceRequest.schema.json new file mode 100644 index 0000000..ffc070f --- /dev/null +++ b/docs/schema/UpdatePrimaryDeviceRequest.schema.json @@ -0,0 +1,28 @@ +{ + "type": "object", + "properties": { + "action": { + "enum": [ + "set this device", + "unset this device" + ], + "type": "string" + }, + "currentUserId": { + "type": "string" + }, + "authToken": { + "type": "string" + } + }, + "additionalProperties": false, + "required": [ + "action", + "authToken", + "currentUserId" + ], + "definitions": {}, + "$schema": "http://json-schema.org/draft-07/schema#", + "title": "UpdatePrimaryDeviceRequest", + "$id": "https://timelimit.io/UpdatePrimaryDeviceRequest" +} \ No newline at end of file diff --git a/docs/schema/candopurchaserequest-definitions.md b/docs/schema/candopurchaserequest-definitions.md new file mode 100644 index 0000000..895d10c --- /dev/null +++ b/docs/schema/candopurchaserequest-definitions.md @@ -0,0 +1,16 @@ +# Untitled undefined type in CanDoPurchaseRequest Schema + +```txt +https://timelimit.io/CanDoPurchaseRequest#/definitions +``` + + + + +| Abstract | Extensible | Status | Identifiable | Custom Properties | Additional Properties | Access Restrictions | Defined In | +| :------------------ | ---------- | -------------- | ----------------------- | :---------------- | --------------------- | ------------------- | --------------------------------------------------------------------------------------------- | +| Can be instantiated | No | Unknown status | Unknown identifiability | Forbidden | Allowed | none | [CanDoPurchaseRequest.schema.json\*](CanDoPurchaseRequest.schema.json "open original schema") | + +## definitions Type + +unknown diff --git a/docs/schema/candopurchaserequest-properties-deviceauthtoken.md b/docs/schema/candopurchaserequest-properties-deviceauthtoken.md new file mode 100644 index 0000000..592aa25 --- /dev/null +++ b/docs/schema/candopurchaserequest-properties-deviceauthtoken.md @@ -0,0 +1,16 @@ +# Untitled string in CanDoPurchaseRequest Schema + +```txt +https://timelimit.io/CanDoPurchaseRequest#/properties/deviceAuthToken +``` + + + + +| Abstract | Extensible | Status | Identifiable | Custom Properties | Additional Properties | Access Restrictions | Defined In | +| :------------------ | ---------- | -------------- | ----------------------- | :---------------- | --------------------- | ------------------- | --------------------------------------------------------------------------------------------- | +| Can be instantiated | No | Unknown status | Unknown identifiability | Forbidden | Allowed | none | [CanDoPurchaseRequest.schema.json\*](CanDoPurchaseRequest.schema.json "open original schema") | + +## deviceAuthToken Type + +`string` diff --git a/docs/schema/candopurchaserequest-properties-type.md b/docs/schema/candopurchaserequest-properties-type.md new file mode 100644 index 0000000..d4cc462 --- /dev/null +++ b/docs/schema/candopurchaserequest-properties-type.md @@ -0,0 +1,25 @@ +# Untitled string in CanDoPurchaseRequest Schema + +```txt +https://timelimit.io/CanDoPurchaseRequest#/properties/type +``` + + + + +| Abstract | Extensible | Status | Identifiable | Custom Properties | Additional Properties | Access Restrictions | Defined In | +| :------------------ | ---------- | -------------- | ----------------------- | :---------------- | --------------------- | ------------------- | --------------------------------------------------------------------------------------------- | +| Can be instantiated | No | Unknown status | Unknown identifiability | Forbidden | Allowed | none | [CanDoPurchaseRequest.schema.json\*](CanDoPurchaseRequest.schema.json "open original schema") | + +## type Type + +`string` + +## type Constraints + +**enum**: the value of this property must be equal to one of the following values: + +| Value | Explanation | +| :------------- | ----------- | +| `"any"` | | +| `"googleplay"` | | diff --git a/docs/schema/candopurchaserequest-properties.md b/docs/schema/candopurchaserequest-properties.md new file mode 100644 index 0000000..eeb7989 --- /dev/null +++ b/docs/schema/candopurchaserequest-properties.md @@ -0,0 +1,16 @@ +# Untitled undefined type in CanDoPurchaseRequest Schema + +```txt +https://timelimit.io/CanDoPurchaseRequest#/properties +``` + + + + +| Abstract | Extensible | Status | Identifiable | Custom Properties | Additional Properties | Access Restrictions | Defined In | +| :------------------ | ---------- | -------------- | ----------------------- | :---------------- | --------------------- | ------------------- | --------------------------------------------------------------------------------------------- | +| Can be instantiated | No | Unknown status | Unknown identifiability | Forbidden | Allowed | none | [CanDoPurchaseRequest.schema.json\*](CanDoPurchaseRequest.schema.json "open original schema") | + +## properties Type + +unknown diff --git a/docs/schema/candopurchaserequest.md b/docs/schema/candopurchaserequest.md new file mode 100644 index 0000000..659acfe --- /dev/null +++ b/docs/schema/candopurchaserequest.md @@ -0,0 +1,66 @@ +# CanDoPurchaseRequest Schema + +```txt +https://timelimit.io/CanDoPurchaseRequest +``` + + + + +| Abstract | Extensible | Status | Identifiable | Custom Properties | Additional Properties | Access Restrictions | Defined In | +| :------------------ | ---------- | -------------- | ------------ | :---------------- | --------------------- | ------------------- | ------------------------------------------------------------------------------------------- | +| Can be instantiated | Yes | Unknown status | No | Forbidden | Forbidden | none | [CanDoPurchaseRequest.schema.json](CanDoPurchaseRequest.schema.json "open original schema") | + +## CanDoPurchaseRequest Type + +`object` ([CanDoPurchaseRequest](candopurchaserequest.md)) + +# CanDoPurchaseRequest Definitions + +# CanDoPurchaseRequest Properties + +| Property | Type | Required | Nullable | Defined by | +| :---------------------------------- | -------- | -------- | -------------- | :------------------------------------------------------------------------------------------------------------------------------------------------------ | +| [type](#type) | `string` | Required | cannot be null | [CanDoPurchaseRequest](candopurchaserequest-properties-type.md "https://timelimit.io/CanDoPurchaseRequest#/properties/type") | +| [deviceAuthToken](#deviceAuthToken) | `string` | Required | cannot be null | [CanDoPurchaseRequest](candopurchaserequest-properties-deviceauthtoken.md "https://timelimit.io/CanDoPurchaseRequest#/properties/deviceAuthToken") | + +## type + + + + +`type` + +- is required +- Type: `string` +- cannot be null +- defined in: [CanDoPurchaseRequest](candopurchaserequest-properties-type.md "https://timelimit.io/CanDoPurchaseRequest#/properties/type") + +### type Type + +`string` + +### type Constraints + +**enum**: the value of this property must be equal to one of the following values: + +| Value | Explanation | +| :------------- | ----------- | +| `"any"` | | +| `"googleplay"` | | + +## deviceAuthToken + + + + +`deviceAuthToken` + +- is required +- Type: `string` +- cannot be null +- defined in: [CanDoPurchaseRequest](candopurchaserequest-properties-deviceauthtoken.md "https://timelimit.io/CanDoPurchaseRequest#/properties/deviceAuthToken") + +### deviceAuthToken Type + +`string` diff --git a/docs/schema/canrecoverpasswordrequest-definitions.md b/docs/schema/canrecoverpasswordrequest-definitions.md new file mode 100644 index 0000000..2532338 --- /dev/null +++ b/docs/schema/canrecoverpasswordrequest-definitions.md @@ -0,0 +1,16 @@ +# Untitled undefined type in CanRecoverPasswordRequest Schema + +```txt +https://timelimit.io/CanRecoverPasswordRequest#/definitions +``` + + + + +| Abstract | Extensible | Status | Identifiable | Custom Properties | Additional Properties | Access Restrictions | Defined In | +| :------------------ | ---------- | -------------- | ----------------------- | :---------------- | --------------------- | ------------------- | ------------------------------------------------------------------------------------------------------- | +| Can be instantiated | No | Unknown status | Unknown identifiability | Forbidden | Allowed | none | [CanRecoverPasswordRequest.schema.json\*](CanRecoverPasswordRequest.schema.json "open original schema") | + +## definitions Type + +unknown diff --git a/docs/schema/canrecoverpasswordrequest-properties-mailauthtoken.md b/docs/schema/canrecoverpasswordrequest-properties-mailauthtoken.md new file mode 100644 index 0000000..928cd98 --- /dev/null +++ b/docs/schema/canrecoverpasswordrequest-properties-mailauthtoken.md @@ -0,0 +1,16 @@ +# Untitled string in CanRecoverPasswordRequest Schema + +```txt +https://timelimit.io/CanRecoverPasswordRequest#/properties/mailAuthToken +``` + + + + +| Abstract | Extensible | Status | Identifiable | Custom Properties | Additional Properties | Access Restrictions | Defined In | +| :------------------ | ---------- | -------------- | ----------------------- | :---------------- | --------------------- | ------------------- | ------------------------------------------------------------------------------------------------------- | +| Can be instantiated | No | Unknown status | Unknown identifiability | Forbidden | Allowed | none | [CanRecoverPasswordRequest.schema.json\*](CanRecoverPasswordRequest.schema.json "open original schema") | + +## mailAuthToken Type + +`string` diff --git a/docs/schema/canrecoverpasswordrequest-properties-parentuserid.md b/docs/schema/canrecoverpasswordrequest-properties-parentuserid.md new file mode 100644 index 0000000..99e4a89 --- /dev/null +++ b/docs/schema/canrecoverpasswordrequest-properties-parentuserid.md @@ -0,0 +1,16 @@ +# Untitled string in CanRecoverPasswordRequest Schema + +```txt +https://timelimit.io/CanRecoverPasswordRequest#/properties/parentUserId +``` + + + + +| Abstract | Extensible | Status | Identifiable | Custom Properties | Additional Properties | Access Restrictions | Defined In | +| :------------------ | ---------- | -------------- | ----------------------- | :---------------- | --------------------- | ------------------- | ------------------------------------------------------------------------------------------------------- | +| Can be instantiated | No | Unknown status | Unknown identifiability | Forbidden | Allowed | none | [CanRecoverPasswordRequest.schema.json\*](CanRecoverPasswordRequest.schema.json "open original schema") | + +## parentUserId Type + +`string` diff --git a/docs/schema/canrecoverpasswordrequest-properties.md b/docs/schema/canrecoverpasswordrequest-properties.md new file mode 100644 index 0000000..be091f5 --- /dev/null +++ b/docs/schema/canrecoverpasswordrequest-properties.md @@ -0,0 +1,16 @@ +# Untitled undefined type in CanRecoverPasswordRequest Schema + +```txt +https://timelimit.io/CanRecoverPasswordRequest#/properties +``` + + + + +| Abstract | Extensible | Status | Identifiable | Custom Properties | Additional Properties | Access Restrictions | Defined In | +| :------------------ | ---------- | -------------- | ----------------------- | :---------------- | --------------------- | ------------------- | ------------------------------------------------------------------------------------------------------- | +| Can be instantiated | No | Unknown status | Unknown identifiability | Forbidden | Allowed | none | [CanRecoverPasswordRequest.schema.json\*](CanRecoverPasswordRequest.schema.json "open original schema") | + +## properties Type + +unknown diff --git a/docs/schema/canrecoverpasswordrequest.md b/docs/schema/canrecoverpasswordrequest.md new file mode 100644 index 0000000..edc6699 --- /dev/null +++ b/docs/schema/canrecoverpasswordrequest.md @@ -0,0 +1,57 @@ +# CanRecoverPasswordRequest Schema + +```txt +https://timelimit.io/CanRecoverPasswordRequest +``` + + + + +| Abstract | Extensible | Status | Identifiable | Custom Properties | Additional Properties | Access Restrictions | Defined In | +| :------------------ | ---------- | -------------- | ------------ | :---------------- | --------------------- | ------------------- | ----------------------------------------------------------------------------------------------------- | +| Can be instantiated | Yes | Unknown status | No | Forbidden | Forbidden | none | [CanRecoverPasswordRequest.schema.json](CanRecoverPasswordRequest.schema.json "open original schema") | + +## CanRecoverPasswordRequest Type + +`object` ([CanRecoverPasswordRequest](canrecoverpasswordrequest.md)) + +# CanRecoverPasswordRequest Definitions + +# CanRecoverPasswordRequest Properties + +| Property | Type | Required | Nullable | Defined by | +| :------------------------------ | -------- | -------- | -------------- | :----------------------------------------------------------------------------------------------------------------------------------------------------------------- | +| [mailAuthToken](#mailAuthToken) | `string` | Required | cannot be null | [CanRecoverPasswordRequest](canrecoverpasswordrequest-properties-mailauthtoken.md "https://timelimit.io/CanRecoverPasswordRequest#/properties/mailAuthToken") | +| [parentUserId](#parentUserId) | `string` | Required | cannot be null | [CanRecoverPasswordRequest](canrecoverpasswordrequest-properties-parentuserid.md "https://timelimit.io/CanRecoverPasswordRequest#/properties/parentUserId") | + +## mailAuthToken + + + + +`mailAuthToken` + +- is required +- Type: `string` +- cannot be null +- defined in: [CanRecoverPasswordRequest](canrecoverpasswordrequest-properties-mailauthtoken.md "https://timelimit.io/CanRecoverPasswordRequest#/properties/mailAuthToken") + +### mailAuthToken Type + +`string` + +## parentUserId + + + + +`parentUserId` + +- is required +- Type: `string` +- cannot be null +- defined in: [CanRecoverPasswordRequest](canrecoverpasswordrequest-properties-parentuserid.md "https://timelimit.io/CanRecoverPasswordRequest#/properties/parentUserId") + +### parentUserId Type + +`string` diff --git a/docs/schema/clientpullchangesrequest-definitions-categorydatastatus-properties-apps.md b/docs/schema/clientpullchangesrequest-definitions-categorydatastatus-properties-apps.md new file mode 100644 index 0000000..dbc1ade --- /dev/null +++ b/docs/schema/clientpullchangesrequest-definitions-categorydatastatus-properties-apps.md @@ -0,0 +1,16 @@ +# Untitled string in ClientPullChangesRequest Schema + +```txt +https://timelimit.io/ClientPullChangesRequest#/definitions/CategoryDataStatus/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 | [ClientPullChangesRequest.schema.json\*](ClientPullChangesRequest.schema.json "open original schema") | + +## apps Type + +`string` diff --git a/docs/schema/clientpullchangesrequest-definitions-categorydatastatus-properties-base.md b/docs/schema/clientpullchangesrequest-definitions-categorydatastatus-properties-base.md new file mode 100644 index 0000000..dc28369 --- /dev/null +++ b/docs/schema/clientpullchangesrequest-definitions-categorydatastatus-properties-base.md @@ -0,0 +1,16 @@ +# Untitled string in ClientPullChangesRequest Schema + +```txt +https://timelimit.io/ClientPullChangesRequest#/definitions/CategoryDataStatus/properties/base +``` + + + + +| Abstract | Extensible | Status | Identifiable | Custom Properties | Additional Properties | Access Restrictions | Defined In | +| :------------------ | ---------- | -------------- | ----------------------- | :---------------- | --------------------- | ------------------- | ----------------------------------------------------------------------------------------------------- | +| Can be instantiated | No | Unknown status | Unknown identifiability | Forbidden | Allowed | none | [ClientPullChangesRequest.schema.json\*](ClientPullChangesRequest.schema.json "open original schema") | + +## base Type + +`string` diff --git a/docs/schema/clientpullchangesrequest-definitions-categorydatastatus-properties-rules.md b/docs/schema/clientpullchangesrequest-definitions-categorydatastatus-properties-rules.md new file mode 100644 index 0000000..9126261 --- /dev/null +++ b/docs/schema/clientpullchangesrequest-definitions-categorydatastatus-properties-rules.md @@ -0,0 +1,16 @@ +# Untitled string in ClientPullChangesRequest Schema + +```txt +https://timelimit.io/ClientPullChangesRequest#/definitions/CategoryDataStatus/properties/rules +``` + + + + +| Abstract | Extensible | Status | Identifiable | Custom Properties | Additional Properties | Access Restrictions | Defined In | +| :------------------ | ---------- | -------------- | ----------------------- | :---------------- | --------------------- | ------------------- | ----------------------------------------------------------------------------------------------------- | +| Can be instantiated | No | Unknown status | Unknown identifiability | Forbidden | Allowed | none | [ClientPullChangesRequest.schema.json\*](ClientPullChangesRequest.schema.json "open original schema") | + +## rules Type + +`string` diff --git a/docs/schema/clientpullchangesrequest-definitions-categorydatastatus-properties-usedtime.md b/docs/schema/clientpullchangesrequest-definitions-categorydatastatus-properties-usedtime.md new file mode 100644 index 0000000..bda2cdb --- /dev/null +++ b/docs/schema/clientpullchangesrequest-definitions-categorydatastatus-properties-usedtime.md @@ -0,0 +1,16 @@ +# Untitled string in ClientPullChangesRequest Schema + +```txt +https://timelimit.io/ClientPullChangesRequest#/definitions/CategoryDataStatus/properties/usedTime +``` + + + + +| Abstract | Extensible | Status | Identifiable | Custom Properties | Additional Properties | Access Restrictions | Defined In | +| :------------------ | ---------- | -------------- | ----------------------- | :---------------- | --------------------- | ------------------- | ----------------------------------------------------------------------------------------------------- | +| Can be instantiated | No | Unknown status | Unknown identifiability | Forbidden | Allowed | none | [ClientPullChangesRequest.schema.json\*](ClientPullChangesRequest.schema.json "open original schema") | + +## usedTime Type + +`string` diff --git a/docs/schema/clientpullchangesrequest-definitions-categorydatastatus-properties.md b/docs/schema/clientpullchangesrequest-definitions-categorydatastatus-properties.md new file mode 100644 index 0000000..9266f00 --- /dev/null +++ b/docs/schema/clientpullchangesrequest-definitions-categorydatastatus-properties.md @@ -0,0 +1,16 @@ +# Untitled undefined type in ClientPullChangesRequest Schema + +```txt +https://timelimit.io/ClientPullChangesRequest#/definitions/CategoryDataStatus/properties +``` + + + + +| Abstract | Extensible | Status | Identifiable | Custom Properties | Additional Properties | Access Restrictions | Defined In | +| :------------------ | ---------- | -------------- | ----------------------- | :---------------- | --------------------- | ------------------- | ----------------------------------------------------------------------------------------------------- | +| Can be instantiated | No | Unknown status | Unknown identifiability | Forbidden | Allowed | none | [ClientPullChangesRequest.schema.json\*](ClientPullChangesRequest.schema.json "open original schema") | + +## properties Type + +unknown diff --git a/docs/schema/clientpullchangesrequest-definitions-categorydatastatus.md b/docs/schema/clientpullchangesrequest-definitions-categorydatastatus.md new file mode 100644 index 0000000..c9a62f2 --- /dev/null +++ b/docs/schema/clientpullchangesrequest-definitions-categorydatastatus.md @@ -0,0 +1,89 @@ +# CategoryDataStatus Schema + +```txt +https://timelimit.io/ClientPullChangesRequest#/definitions/CategoryDataStatus +``` + + + + +| Abstract | Extensible | Status | Identifiable | Custom Properties | Additional Properties | Access Restrictions | Defined In | +| :------------------ | ---------- | -------------- | ------------ | :---------------- | --------------------- | ------------------- | ----------------------------------------------------------------------------------------------------- | +| Can be instantiated | No | Unknown status | No | Forbidden | Forbidden | none | [ClientPullChangesRequest.schema.json\*](ClientPullChangesRequest.schema.json "open original schema") | + +## CategoryDataStatus Type + +`object` ([CategoryDataStatus](clientpullchangesrequest-definitions-categorydatastatus.md)) + +# CategoryDataStatus Properties + +| Property | Type | Required | Nullable | Defined by | +| :-------------------- | -------- | -------- | -------------- | :------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ | +| [base](#base) | `string` | Required | cannot be null | [ClientPullChangesRequest](clientpullchangesrequest-definitions-categorydatastatus-properties-base.md "https://timelimit.io/ClientPullChangesRequest#/definitions/CategoryDataStatus/properties/base") | +| [apps](#apps) | `string` | Required | cannot be null | [ClientPullChangesRequest](clientpullchangesrequest-definitions-categorydatastatus-properties-apps.md "https://timelimit.io/ClientPullChangesRequest#/definitions/CategoryDataStatus/properties/apps") | +| [rules](#rules) | `string` | Required | cannot be null | [ClientPullChangesRequest](clientpullchangesrequest-definitions-categorydatastatus-properties-rules.md "https://timelimit.io/ClientPullChangesRequest#/definitions/CategoryDataStatus/properties/rules") | +| [usedTime](#usedTime) | `string` | Required | cannot be null | [ClientPullChangesRequest](clientpullchangesrequest-definitions-categorydatastatus-properties-usedtime.md "https://timelimit.io/ClientPullChangesRequest#/definitions/CategoryDataStatus/properties/usedTime") | + +## base + + + + +`base` + +- is required +- Type: `string` +- cannot be null +- defined in: [ClientPullChangesRequest](clientpullchangesrequest-definitions-categorydatastatus-properties-base.md "https://timelimit.io/ClientPullChangesRequest#/definitions/CategoryDataStatus/properties/base") + +### base Type + +`string` + +## apps + + + + +`apps` + +- is required +- Type: `string` +- cannot be null +- defined in: [ClientPullChangesRequest](clientpullchangesrequest-definitions-categorydatastatus-properties-apps.md "https://timelimit.io/ClientPullChangesRequest#/definitions/CategoryDataStatus/properties/apps") + +### apps Type + +`string` + +## rules + + + + +`rules` + +- is required +- Type: `string` +- cannot be null +- defined in: [ClientPullChangesRequest](clientpullchangesrequest-definitions-categorydatastatus-properties-rules.md "https://timelimit.io/ClientPullChangesRequest#/definitions/CategoryDataStatus/properties/rules") + +### rules Type + +`string` + +## usedTime + + + + +`usedTime` + +- is required +- Type: `string` +- cannot be null +- defined in: [ClientPullChangesRequest](clientpullchangesrequest-definitions-categorydatastatus-properties-usedtime.md "https://timelimit.io/ClientPullChangesRequest#/definitions/CategoryDataStatus/properties/usedTime") + +### usedTime Type + +`string` diff --git a/docs/schema/clientpullchangesrequest-definitions-clientdatastatus-properties-apps-additionalproperties.md b/docs/schema/clientpullchangesrequest-definitions-clientdatastatus-properties-apps-additionalproperties.md new file mode 100644 index 0000000..86fd040 --- /dev/null +++ b/docs/schema/clientpullchangesrequest-definitions-clientdatastatus-properties-apps-additionalproperties.md @@ -0,0 +1,16 @@ +# Untitled string in ClientPullChangesRequest Schema + +```txt +https://timelimit.io/ClientPullChangesRequest#/definitions/ClientDataStatus/properties/apps/additionalProperties +``` + + + + +| Abstract | Extensible | Status | Identifiable | Custom Properties | Additional Properties | Access Restrictions | Defined In | +| :------------------ | ---------- | -------------- | ----------------------- | :---------------- | --------------------- | ------------------- | ----------------------------------------------------------------------------------------------------- | +| Can be instantiated | No | Unknown status | Unknown identifiability | Forbidden | Allowed | none | [ClientPullChangesRequest.schema.json\*](ClientPullChangesRequest.schema.json "open original schema") | + +## additionalProperties Type + +`string` diff --git a/docs/schema/clientpullchangesrequest-definitions-clientdatastatus-properties-apps.md b/docs/schema/clientpullchangesrequest-definitions-clientdatastatus-properties-apps.md new file mode 100644 index 0000000..906f103 --- /dev/null +++ b/docs/schema/clientpullchangesrequest-definitions-clientdatastatus-properties-apps.md @@ -0,0 +1,38 @@ +# Untitled object in ClientPullChangesRequest Schema + +```txt +https://timelimit.io/ClientPullChangesRequest#/definitions/ClientDataStatus/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 | [ClientPullChangesRequest.schema.json\*](ClientPullChangesRequest.schema.json "open original schema") | + +## apps Type + +`object` ([Details](clientpullchangesrequest-definitions-clientdatastatus-properties-apps.md)) + +# undefined Properties + +| Property | Type | Required | Nullable | Defined by | +| :-------------------- | -------- | -------- | -------------- | :------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ | +| Additional Properties | `string` | Optional | cannot be null | [ClientPullChangesRequest](clientpullchangesrequest-definitions-clientdatastatus-properties-apps-additionalproperties.md "https://timelimit.io/ClientPullChangesRequest#/definitions/ClientDataStatus/properties/apps/additionalProperties") | + +## Additional Properties + +Additional properties are allowed, as long as they follow this schema: + + + + +- is optional +- Type: `string` +- cannot be null +- defined in: [ClientPullChangesRequest](clientpullchangesrequest-definitions-clientdatastatus-properties-apps-additionalproperties.md "https://timelimit.io/ClientPullChangesRequest#/definitions/ClientDataStatus/properties/apps/additionalProperties") + +### additionalProperties Type + +`string` diff --git a/docs/schema/clientpullchangesrequest-definitions-clientdatastatus-properties-categories.md b/docs/schema/clientpullchangesrequest-definitions-clientdatastatus-properties-categories.md new file mode 100644 index 0000000..263da0f --- /dev/null +++ b/docs/schema/clientpullchangesrequest-definitions-clientdatastatus-properties-categories.md @@ -0,0 +1,38 @@ +# Untitled object in ClientPullChangesRequest Schema + +```txt +https://timelimit.io/ClientPullChangesRequest#/definitions/ClientDataStatus/properties/categories +``` + + + + +| Abstract | Extensible | Status | Identifiable | Custom Properties | Additional Properties | Access Restrictions | Defined In | +| :------------------ | ---------- | -------------- | ----------------------- | :---------------- | --------------------- | ------------------- | ----------------------------------------------------------------------------------------------------- | +| Can be instantiated | No | Unknown status | Unknown identifiability | Forbidden | Allowed | none | [ClientPullChangesRequest.schema.json\*](ClientPullChangesRequest.schema.json "open original schema") | + +## categories Type + +`object` ([Details](clientpullchangesrequest-definitions-clientdatastatus-properties-categories.md)) + +# undefined Properties + +| Property | Type | Required | Nullable | Defined by | +| :-------------------- | -------- | -------- | -------------- | :------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | +| Additional Properties | `object` | Optional | cannot be null | [ClientPullChangesRequest](clientpullchangesrequest-definitions-categorydatastatus.md "https://timelimit.io/ClientPullChangesRequest#/definitions/ClientDataStatus/properties/categories/additionalProperties") | + +## Additional Properties + +Additional properties are allowed, as long as they follow this schema: + + + + +- is optional +- Type: `object` ([CategoryDataStatus](clientpullchangesrequest-definitions-categorydatastatus.md)) +- cannot be null +- defined in: [ClientPullChangesRequest](clientpullchangesrequest-definitions-categorydatastatus.md "https://timelimit.io/ClientPullChangesRequest#/definitions/ClientDataStatus/properties/categories/additionalProperties") + +### additionalProperties Type + +`object` ([CategoryDataStatus](clientpullchangesrequest-definitions-categorydatastatus.md)) diff --git a/docs/schema/clientpullchangesrequest-definitions-clientdatastatus-properties-devices.md b/docs/schema/clientpullchangesrequest-definitions-clientdatastatus-properties-devices.md new file mode 100644 index 0000000..eb34a72 --- /dev/null +++ b/docs/schema/clientpullchangesrequest-definitions-clientdatastatus-properties-devices.md @@ -0,0 +1,16 @@ +# Untitled string in ClientPullChangesRequest Schema + +```txt +https://timelimit.io/ClientPullChangesRequest#/definitions/ClientDataStatus/properties/devices +``` + + + + +| Abstract | Extensible | Status | Identifiable | Custom Properties | Additional Properties | Access Restrictions | Defined In | +| :------------------ | ---------- | -------------- | ----------------------- | :---------------- | --------------------- | ------------------- | ----------------------------------------------------------------------------------------------------- | +| Can be instantiated | No | Unknown status | Unknown identifiability | Forbidden | Allowed | none | [ClientPullChangesRequest.schema.json\*](ClientPullChangesRequest.schema.json "open original schema") | + +## devices Type + +`string` diff --git a/docs/schema/clientpullchangesrequest-definitions-clientdatastatus-properties-users.md b/docs/schema/clientpullchangesrequest-definitions-clientdatastatus-properties-users.md new file mode 100644 index 0000000..8ab8918 --- /dev/null +++ b/docs/schema/clientpullchangesrequest-definitions-clientdatastatus-properties-users.md @@ -0,0 +1,16 @@ +# Untitled string in ClientPullChangesRequest Schema + +```txt +https://timelimit.io/ClientPullChangesRequest#/definitions/ClientDataStatus/properties/users +``` + + + + +| Abstract | Extensible | Status | Identifiable | Custom Properties | Additional Properties | Access Restrictions | Defined In | +| :------------------ | ---------- | -------------- | ----------------------- | :---------------- | --------------------- | ------------------- | ----------------------------------------------------------------------------------------------------- | +| Can be instantiated | No | Unknown status | Unknown identifiability | Forbidden | Allowed | none | [ClientPullChangesRequest.schema.json\*](ClientPullChangesRequest.schema.json "open original schema") | + +## users Type + +`string` diff --git a/docs/schema/clientpullchangesrequest-definitions-clientdatastatus-properties.md b/docs/schema/clientpullchangesrequest-definitions-clientdatastatus-properties.md new file mode 100644 index 0000000..503d3b3 --- /dev/null +++ b/docs/schema/clientpullchangesrequest-definitions-clientdatastatus-properties.md @@ -0,0 +1,16 @@ +# Untitled undefined type in ClientPullChangesRequest Schema + +```txt +https://timelimit.io/ClientPullChangesRequest#/definitions/ClientDataStatus/properties +``` + + + + +| Abstract | Extensible | Status | Identifiable | Custom Properties | Additional Properties | Access Restrictions | Defined In | +| :------------------ | ---------- | -------------- | ----------------------- | :---------------- | --------------------- | ------------------- | ----------------------------------------------------------------------------------------------------- | +| Can be instantiated | No | Unknown status | Unknown identifiability | Forbidden | Allowed | none | [ClientPullChangesRequest.schema.json\*](ClientPullChangesRequest.schema.json "open original schema") | + +## properties Type + +unknown diff --git a/docs/schema/clientpullchangesrequest-definitions-clientdatastatus.md b/docs/schema/clientpullchangesrequest-definitions-clientdatastatus.md new file mode 100644 index 0000000..eef6f8b --- /dev/null +++ b/docs/schema/clientpullchangesrequest-definitions-clientdatastatus.md @@ -0,0 +1,89 @@ +# ClientDataStatus Schema + +```txt +https://timelimit.io/ClientPullChangesRequest#/definitions/ClientDataStatus +``` + + + + +| Abstract | Extensible | Status | Identifiable | Custom Properties | Additional Properties | Access Restrictions | Defined In | +| :------------------ | ---------- | -------------- | ------------ | :---------------- | --------------------- | ------------------- | ----------------------------------------------------------------------------------------------------- | +| Can be instantiated | No | Unknown status | No | Forbidden | Forbidden | none | [ClientPullChangesRequest.schema.json\*](ClientPullChangesRequest.schema.json "open original schema") | + +## ClientDataStatus Type + +`object` ([ClientDataStatus](clientpullchangesrequest-definitions-clientdatastatus.md)) + +# ClientDataStatus Properties + +| Property | Type | Required | Nullable | Defined by | +| :------------------------ | -------- | -------- | -------------- | :------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ | +| [devices](#devices) | `string` | Required | cannot be null | [ClientPullChangesRequest](clientpullchangesrequest-definitions-clientdatastatus-properties-devices.md "https://timelimit.io/ClientPullChangesRequest#/definitions/ClientDataStatus/properties/devices") | +| [apps](#apps) | `object` | Required | cannot be null | [ClientPullChangesRequest](clientpullchangesrequest-definitions-clientdatastatus-properties-apps.md "https://timelimit.io/ClientPullChangesRequest#/definitions/ClientDataStatus/properties/apps") | +| [categories](#categories) | `object` | Required | cannot be null | [ClientPullChangesRequest](clientpullchangesrequest-definitions-clientdatastatus-properties-categories.md "https://timelimit.io/ClientPullChangesRequest#/definitions/ClientDataStatus/properties/categories") | +| [users](#users) | `string` | Required | cannot be null | [ClientPullChangesRequest](clientpullchangesrequest-definitions-clientdatastatus-properties-users.md "https://timelimit.io/ClientPullChangesRequest#/definitions/ClientDataStatus/properties/users") | + +## devices + + + + +`devices` + +- is required +- Type: `string` +- cannot be null +- defined in: [ClientPullChangesRequest](clientpullchangesrequest-definitions-clientdatastatus-properties-devices.md "https://timelimit.io/ClientPullChangesRequest#/definitions/ClientDataStatus/properties/devices") + +### devices Type + +`string` + +## apps + + + + +`apps` + +- is required +- Type: `object` ([Details](clientpullchangesrequest-definitions-clientdatastatus-properties-apps.md)) +- cannot be null +- defined in: [ClientPullChangesRequest](clientpullchangesrequest-definitions-clientdatastatus-properties-apps.md "https://timelimit.io/ClientPullChangesRequest#/definitions/ClientDataStatus/properties/apps") + +### apps Type + +`object` ([Details](clientpullchangesrequest-definitions-clientdatastatus-properties-apps.md)) + +## categories + + + + +`categories` + +- is required +- Type: `object` ([Details](clientpullchangesrequest-definitions-clientdatastatus-properties-categories.md)) +- cannot be null +- defined in: [ClientPullChangesRequest](clientpullchangesrequest-definitions-clientdatastatus-properties-categories.md "https://timelimit.io/ClientPullChangesRequest#/definitions/ClientDataStatus/properties/categories") + +### categories Type + +`object` ([Details](clientpullchangesrequest-definitions-clientdatastatus-properties-categories.md)) + +## users + + + + +`users` + +- is required +- Type: `string` +- cannot be null +- defined in: [ClientPullChangesRequest](clientpullchangesrequest-definitions-clientdatastatus-properties-users.md "https://timelimit.io/ClientPullChangesRequest#/definitions/ClientDataStatus/properties/users") + +### users Type + +`string` diff --git a/docs/schema/clientpullchangesrequest-definitions.md b/docs/schema/clientpullchangesrequest-definitions.md new file mode 100644 index 0000000..2276292 --- /dev/null +++ b/docs/schema/clientpullchangesrequest-definitions.md @@ -0,0 +1,16 @@ +# Untitled undefined type in ClientPullChangesRequest Schema + +```txt +https://timelimit.io/ClientPullChangesRequest#/definitions +``` + + + + +| Abstract | Extensible | Status | Identifiable | Custom Properties | Additional Properties | Access Restrictions | Defined In | +| :------------------ | ---------- | -------------- | ----------------------- | :---------------- | --------------------- | ------------------- | ----------------------------------------------------------------------------------------------------- | +| Can be instantiated | No | Unknown status | Unknown identifiability | Forbidden | Allowed | none | [ClientPullChangesRequest.schema.json\*](ClientPullChangesRequest.schema.json "open original schema") | + +## definitions Type + +unknown diff --git a/docs/schema/clientpullchangesrequest-properties-deviceauthtoken.md b/docs/schema/clientpullchangesrequest-properties-deviceauthtoken.md new file mode 100644 index 0000000..236de5a --- /dev/null +++ b/docs/schema/clientpullchangesrequest-properties-deviceauthtoken.md @@ -0,0 +1,16 @@ +# Untitled string in ClientPullChangesRequest Schema + +```txt +https://timelimit.io/ClientPullChangesRequest#/properties/deviceAuthToken +``` + + + + +| Abstract | Extensible | Status | Identifiable | Custom Properties | Additional Properties | Access Restrictions | Defined In | +| :------------------ | ---------- | -------------- | ----------------------- | :---------------- | --------------------- | ------------------- | ----------------------------------------------------------------------------------------------------- | +| Can be instantiated | No | Unknown status | Unknown identifiability | Forbidden | Allowed | none | [ClientPullChangesRequest.schema.json\*](ClientPullChangesRequest.schema.json "open original schema") | + +## deviceAuthToken Type + +`string` diff --git a/docs/schema/clientpullchangesrequest-properties.md b/docs/schema/clientpullchangesrequest-properties.md new file mode 100644 index 0000000..22f61d3 --- /dev/null +++ b/docs/schema/clientpullchangesrequest-properties.md @@ -0,0 +1,16 @@ +# Untitled undefined type in ClientPullChangesRequest Schema + +```txt +https://timelimit.io/ClientPullChangesRequest#/properties +``` + + + + +| Abstract | Extensible | Status | Identifiable | Custom Properties | Additional Properties | Access Restrictions | Defined In | +| :------------------ | ---------- | -------------- | ----------------------- | :---------------- | --------------------- | ------------------- | ----------------------------------------------------------------------------------------------------- | +| Can be instantiated | No | Unknown status | Unknown identifiability | Forbidden | Allowed | none | [ClientPullChangesRequest.schema.json\*](ClientPullChangesRequest.schema.json "open original schema") | + +## properties Type + +unknown diff --git a/docs/schema/clientpullchangesrequest.md b/docs/schema/clientpullchangesrequest.md new file mode 100644 index 0000000..c601ef9 --- /dev/null +++ b/docs/schema/clientpullchangesrequest.md @@ -0,0 +1,215 @@ +# ClientPullChangesRequest Schema + +```txt +https://timelimit.io/ClientPullChangesRequest +``` + + + + +| Abstract | Extensible | Status | Identifiable | Custom Properties | Additional Properties | Access Restrictions | Defined In | +| :------------------ | ---------- | -------------- | ------------ | :---------------- | --------------------- | ------------------- | --------------------------------------------------------------------------------------------------- | +| Can be instantiated | Yes | Unknown status | No | Forbidden | Forbidden | none | [ClientPullChangesRequest.schema.json](ClientPullChangesRequest.schema.json "open original schema") | + +## ClientPullChangesRequest Type + +`object` ([ClientPullChangesRequest](clientpullchangesrequest.md)) + +# ClientPullChangesRequest Definitions + +## Definitions group ClientDataStatus + +Reference this group by using + +```json +{"$ref":"https://timelimit.io/ClientPullChangesRequest#/definitions/ClientDataStatus"} +``` + +| Property | Type | Required | Nullable | Defined by | +| :------------------------ | -------- | -------- | -------------- | :------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ | +| [devices](#devices) | `string` | Required | cannot be null | [ClientPullChangesRequest](clientpullchangesrequest-definitions-clientdatastatus-properties-devices.md "https://timelimit.io/ClientPullChangesRequest#/definitions/ClientDataStatus/properties/devices") | +| [apps](#apps) | `object` | Required | cannot be null | [ClientPullChangesRequest](clientpullchangesrequest-definitions-clientdatastatus-properties-apps.md "https://timelimit.io/ClientPullChangesRequest#/definitions/ClientDataStatus/properties/apps") | +| [categories](#categories) | `object` | Required | cannot be null | [ClientPullChangesRequest](clientpullchangesrequest-definitions-clientdatastatus-properties-categories.md "https://timelimit.io/ClientPullChangesRequest#/definitions/ClientDataStatus/properties/categories") | +| [users](#users) | `string` | Required | cannot be null | [ClientPullChangesRequest](clientpullchangesrequest-definitions-clientdatastatus-properties-users.md "https://timelimit.io/ClientPullChangesRequest#/definitions/ClientDataStatus/properties/users") | + +### devices + + + + +`devices` + +- is required +- Type: `string` +- cannot be null +- defined in: [ClientPullChangesRequest](clientpullchangesrequest-definitions-clientdatastatus-properties-devices.md "https://timelimit.io/ClientPullChangesRequest#/definitions/ClientDataStatus/properties/devices") + +#### devices Type + +`string` + +### apps + + + + +`apps` + +- is required +- Type: `object` ([Details](clientpullchangesrequest-definitions-clientdatastatus-properties-apps.md)) +- cannot be null +- defined in: [ClientPullChangesRequest](clientpullchangesrequest-definitions-clientdatastatus-properties-apps.md "https://timelimit.io/ClientPullChangesRequest#/definitions/ClientDataStatus/properties/apps") + +#### apps Type + +`object` ([Details](clientpullchangesrequest-definitions-clientdatastatus-properties-apps.md)) + +### categories + + + + +`categories` + +- is required +- Type: `object` ([Details](clientpullchangesrequest-definitions-clientdatastatus-properties-categories.md)) +- cannot be null +- defined in: [ClientPullChangesRequest](clientpullchangesrequest-definitions-clientdatastatus-properties-categories.md "https://timelimit.io/ClientPullChangesRequest#/definitions/ClientDataStatus/properties/categories") + +#### categories Type + +`object` ([Details](clientpullchangesrequest-definitions-clientdatastatus-properties-categories.md)) + +### users + + + + +`users` + +- is required +- Type: `string` +- cannot be null +- defined in: [ClientPullChangesRequest](clientpullchangesrequest-definitions-clientdatastatus-properties-users.md "https://timelimit.io/ClientPullChangesRequest#/definitions/ClientDataStatus/properties/users") + +#### users Type + +`string` + +## Definitions group CategoryDataStatus + +Reference this group by using + +```json +{"$ref":"https://timelimit.io/ClientPullChangesRequest#/definitions/CategoryDataStatus"} +``` + +| Property | Type | Required | Nullable | Defined by | +| :-------------------- | -------- | -------- | -------------- | :------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ | +| [base](#base) | `string` | Required | cannot be null | [ClientPullChangesRequest](clientpullchangesrequest-definitions-categorydatastatus-properties-base.md "https://timelimit.io/ClientPullChangesRequest#/definitions/CategoryDataStatus/properties/base") | +| [apps](#apps) | `string` | Required | cannot be null | [ClientPullChangesRequest](clientpullchangesrequest-definitions-categorydatastatus-properties-apps.md "https://timelimit.io/ClientPullChangesRequest#/definitions/CategoryDataStatus/properties/apps") | +| [rules](#rules) | `string` | Required | cannot be null | [ClientPullChangesRequest](clientpullchangesrequest-definitions-categorydatastatus-properties-rules.md "https://timelimit.io/ClientPullChangesRequest#/definitions/CategoryDataStatus/properties/rules") | +| [usedTime](#usedTime) | `string` | Required | cannot be null | [ClientPullChangesRequest](clientpullchangesrequest-definitions-categorydatastatus-properties-usedtime.md "https://timelimit.io/ClientPullChangesRequest#/definitions/CategoryDataStatus/properties/usedTime") | + +### base + + + + +`base` + +- is required +- Type: `string` +- cannot be null +- defined in: [ClientPullChangesRequest](clientpullchangesrequest-definitions-categorydatastatus-properties-base.md "https://timelimit.io/ClientPullChangesRequest#/definitions/CategoryDataStatus/properties/base") + +#### base Type + +`string` + +### apps + + + + +`apps` + +- is required +- Type: `string` +- cannot be null +- defined in: [ClientPullChangesRequest](clientpullchangesrequest-definitions-categorydatastatus-properties-apps.md "https://timelimit.io/ClientPullChangesRequest#/definitions/CategoryDataStatus/properties/apps") + +#### apps Type + +`string` + +### rules + + + + +`rules` + +- is required +- Type: `string` +- cannot be null +- defined in: [ClientPullChangesRequest](clientpullchangesrequest-definitions-categorydatastatus-properties-rules.md "https://timelimit.io/ClientPullChangesRequest#/definitions/CategoryDataStatus/properties/rules") + +#### rules Type + +`string` + +### usedTime + + + + +`usedTime` + +- is required +- Type: `string` +- cannot be null +- defined in: [ClientPullChangesRequest](clientpullchangesrequest-definitions-categorydatastatus-properties-usedtime.md "https://timelimit.io/ClientPullChangesRequest#/definitions/CategoryDataStatus/properties/usedTime") + +#### usedTime Type + +`string` + +# ClientPullChangesRequest Properties + +| Property | Type | Required | Nullable | Defined by | +| :---------------------------------- | -------- | -------- | -------------- | :------------------------------------------------------------------------------------------------------------------------------------------------------------------ | +| [deviceAuthToken](#deviceAuthToken) | `string` | Required | cannot be null | [ClientPullChangesRequest](clientpullchangesrequest-properties-deviceauthtoken.md "https://timelimit.io/ClientPullChangesRequest#/properties/deviceAuthToken") | +| [status](#status) | `object` | Required | cannot be null | [ClientPullChangesRequest](clientpullchangesrequest-definitions-clientdatastatus.md "https://timelimit.io/ClientPullChangesRequest#/properties/status") | + +## deviceAuthToken + + + + +`deviceAuthToken` + +- is required +- Type: `string` +- cannot be null +- defined in: [ClientPullChangesRequest](clientpullchangesrequest-properties-deviceauthtoken.md "https://timelimit.io/ClientPullChangesRequest#/properties/deviceAuthToken") + +### deviceAuthToken Type + +`string` + +## status + + + + +`status` + +- is required +- Type: `object` ([ClientDataStatus](clientpullchangesrequest-definitions-clientdatastatus.md)) +- cannot be null +- defined in: [ClientPullChangesRequest](clientpullchangesrequest-definitions-clientdatastatus.md "https://timelimit.io/ClientPullChangesRequest#/properties/status") + +### status Type + +`object` ([ClientDataStatus](clientpullchangesrequest-definitions-clientdatastatus.md)) diff --git a/docs/schema/clientpushchangesrequest-properties-actions-items-properties-encodedaction.md b/docs/schema/clientpushchangesrequest-properties-actions-items-properties-encodedaction.md new file mode 100644 index 0000000..c8a23a7 --- /dev/null +++ b/docs/schema/clientpushchangesrequest-properties-actions-items-properties-encodedaction.md @@ -0,0 +1,16 @@ +# Untitled string in ClientPushChangesRequest Schema + +```txt +https://timelimit.io/ClientPushChangesRequest#/properties/actions/items/properties/encodedAction +``` + + + + +| Abstract | Extensible | Status | Identifiable | Custom Properties | Additional Properties | Access Restrictions | Defined In | +| :------------------ | ---------- | -------------- | ----------------------- | :---------------- | --------------------- | ------------------- | ----------------------------------------------------------------------------------------------------- | +| Can be instantiated | No | Unknown status | Unknown identifiability | Forbidden | Allowed | none | [ClientPushChangesRequest.schema.json\*](ClientPushChangesRequest.schema.json "open original schema") | + +## encodedAction Type + +`string` diff --git a/docs/schema/clientpushchangesrequest-properties-actions-items-properties-integrity.md b/docs/schema/clientpushchangesrequest-properties-actions-items-properties-integrity.md new file mode 100644 index 0000000..6895dc3 --- /dev/null +++ b/docs/schema/clientpushchangesrequest-properties-actions-items-properties-integrity.md @@ -0,0 +1,16 @@ +# Untitled string in ClientPushChangesRequest Schema + +```txt +https://timelimit.io/ClientPushChangesRequest#/properties/actions/items/properties/integrity +``` + + + + +| Abstract | Extensible | Status | Identifiable | Custom Properties | Additional Properties | Access Restrictions | Defined In | +| :------------------ | ---------- | -------------- | ----------------------- | :---------------- | --------------------- | ------------------- | ----------------------------------------------------------------------------------------------------- | +| Can be instantiated | No | Unknown status | Unknown identifiability | Forbidden | Allowed | none | [ClientPushChangesRequest.schema.json\*](ClientPushChangesRequest.schema.json "open original schema") | + +## integrity Type + +`string` diff --git a/docs/schema/clientpushchangesrequest-properties-actions-items-properties-sequencenumber.md b/docs/schema/clientpushchangesrequest-properties-actions-items-properties-sequencenumber.md new file mode 100644 index 0000000..b7bb50c --- /dev/null +++ b/docs/schema/clientpushchangesrequest-properties-actions-items-properties-sequencenumber.md @@ -0,0 +1,16 @@ +# Untitled number in ClientPushChangesRequest Schema + +```txt +https://timelimit.io/ClientPushChangesRequest#/properties/actions/items/properties/sequenceNumber +``` + + + + +| Abstract | Extensible | Status | Identifiable | Custom Properties | Additional Properties | Access Restrictions | Defined In | +| :------------------ | ---------- | -------------- | ----------------------- | :---------------- | --------------------- | ------------------- | ----------------------------------------------------------------------------------------------------- | +| Can be instantiated | No | Unknown status | Unknown identifiability | Forbidden | Allowed | none | [ClientPushChangesRequest.schema.json\*](ClientPushChangesRequest.schema.json "open original schema") | + +## sequenceNumber Type + +`number` diff --git a/docs/schema/clientpushchangesrequest-properties-actions-items-properties-type.md b/docs/schema/clientpushchangesrequest-properties-actions-items-properties-type.md new file mode 100644 index 0000000..0804a9b --- /dev/null +++ b/docs/schema/clientpushchangesrequest-properties-actions-items-properties-type.md @@ -0,0 +1,26 @@ +# Untitled string in ClientPushChangesRequest Schema + +```txt +https://timelimit.io/ClientPushChangesRequest#/properties/actions/items/properties/type +``` + + + + +| Abstract | Extensible | Status | Identifiable | Custom Properties | Additional Properties | Access Restrictions | Defined In | +| :------------------ | ---------- | -------------- | ----------------------- | :---------------- | --------------------- | ------------------- | ----------------------------------------------------------------------------------------------------- | +| Can be instantiated | No | Unknown status | Unknown identifiability | Forbidden | Allowed | none | [ClientPushChangesRequest.schema.json\*](ClientPushChangesRequest.schema.json "open original schema") | + +## type Type + +`string` + +## type Constraints + +**enum**: the value of this property must be equal to one of the following values: + +| Value | Explanation | +| :----------- | ----------- | +| `"appLogic"` | | +| `"child"` | | +| `"parent"` | | diff --git a/docs/schema/clientpushchangesrequest-properties-actions-items-properties-userid.md b/docs/schema/clientpushchangesrequest-properties-actions-items-properties-userid.md new file mode 100644 index 0000000..b7148ea --- /dev/null +++ b/docs/schema/clientpushchangesrequest-properties-actions-items-properties-userid.md @@ -0,0 +1,16 @@ +# Untitled string in ClientPushChangesRequest Schema + +```txt +https://timelimit.io/ClientPushChangesRequest#/properties/actions/items/properties/userId +``` + + + + +| Abstract | Extensible | Status | Identifiable | Custom Properties | Additional Properties | Access Restrictions | Defined In | +| :------------------ | ---------- | -------------- | ----------------------- | :---------------- | --------------------- | ------------------- | ----------------------------------------------------------------------------------------------------- | +| Can be instantiated | No | Unknown status | Unknown identifiability | Forbidden | Allowed | none | [ClientPushChangesRequest.schema.json\*](ClientPushChangesRequest.schema.json "open original schema") | + +## userId Type + +`string` diff --git a/docs/schema/clientpushchangesrequest-properties-actions-items-properties.md b/docs/schema/clientpushchangesrequest-properties-actions-items-properties.md new file mode 100644 index 0000000..5e6fa0b --- /dev/null +++ b/docs/schema/clientpushchangesrequest-properties-actions-items-properties.md @@ -0,0 +1,16 @@ +# Untitled undefined type in ClientPushChangesRequest Schema + +```txt +https://timelimit.io/ClientPushChangesRequest#/properties/actions/items/properties +``` + + + + +| Abstract | Extensible | Status | Identifiable | Custom Properties | Additional Properties | Access Restrictions | Defined In | +| :------------------ | ---------- | -------------- | ----------------------- | :---------------- | --------------------- | ------------------- | ----------------------------------------------------------------------------------------------------- | +| Can be instantiated | No | Unknown status | Unknown identifiability | Forbidden | Allowed | none | [ClientPushChangesRequest.schema.json\*](ClientPushChangesRequest.schema.json "open original schema") | + +## properties Type + +unknown diff --git a/docs/schema/clientpushchangesrequest-properties-actions-items.md b/docs/schema/clientpushchangesrequest-properties-actions-items.md new file mode 100644 index 0000000..585ff13 --- /dev/null +++ b/docs/schema/clientpushchangesrequest-properties-actions-items.md @@ -0,0 +1,116 @@ +# Untitled object in ClientPushChangesRequest Schema + +```txt +https://timelimit.io/ClientPushChangesRequest#/properties/actions/items +``` + + + + +| Abstract | Extensible | Status | Identifiable | Custom Properties | Additional Properties | Access Restrictions | Defined In | +| :------------------ | ---------- | -------------- | ------------ | :---------------- | --------------------- | ------------------- | ----------------------------------------------------------------------------------------------------- | +| Can be instantiated | No | Unknown status | No | Forbidden | Forbidden | none | [ClientPushChangesRequest.schema.json\*](ClientPushChangesRequest.schema.json "open original schema") | + +## items Type + +`object` ([Details](clientpushchangesrequest-properties-actions-items.md)) + +# undefined Properties + +| Property | Type | Required | Nullable | Defined by | +| :-------------------------------- | -------- | -------- | -------------- | :------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ | +| [encodedAction](#encodedAction) | `string` | Required | cannot be null | [ClientPushChangesRequest](clientpushchangesrequest-properties-actions-items-properties-encodedaction.md "https://timelimit.io/ClientPushChangesRequest#/properties/actions/items/properties/encodedAction") | +| [sequenceNumber](#sequenceNumber) | `number` | Required | cannot be null | [ClientPushChangesRequest](clientpushchangesrequest-properties-actions-items-properties-sequencenumber.md "https://timelimit.io/ClientPushChangesRequest#/properties/actions/items/properties/sequenceNumber") | +| [integrity](#integrity) | `string` | Required | cannot be null | [ClientPushChangesRequest](clientpushchangesrequest-properties-actions-items-properties-integrity.md "https://timelimit.io/ClientPushChangesRequest#/properties/actions/items/properties/integrity") | +| [type](#type) | `string` | Required | cannot be null | [ClientPushChangesRequest](clientpushchangesrequest-properties-actions-items-properties-type.md "https://timelimit.io/ClientPushChangesRequest#/properties/actions/items/properties/type") | +| [userId](#userId) | `string` | Required | cannot be null | [ClientPushChangesRequest](clientpushchangesrequest-properties-actions-items-properties-userid.md "https://timelimit.io/ClientPushChangesRequest#/properties/actions/items/properties/userId") | + +## encodedAction + + + + +`encodedAction` + +- is required +- Type: `string` +- cannot be null +- defined in: [ClientPushChangesRequest](clientpushchangesrequest-properties-actions-items-properties-encodedaction.md "https://timelimit.io/ClientPushChangesRequest#/properties/actions/items/properties/encodedAction") + +### encodedAction Type + +`string` + +## sequenceNumber + + + + +`sequenceNumber` + +- is required +- Type: `number` +- cannot be null +- defined in: [ClientPushChangesRequest](clientpushchangesrequest-properties-actions-items-properties-sequencenumber.md "https://timelimit.io/ClientPushChangesRequest#/properties/actions/items/properties/sequenceNumber") + +### sequenceNumber Type + +`number` + +## integrity + + + + +`integrity` + +- is required +- Type: `string` +- cannot be null +- defined in: [ClientPushChangesRequest](clientpushchangesrequest-properties-actions-items-properties-integrity.md "https://timelimit.io/ClientPushChangesRequest#/properties/actions/items/properties/integrity") + +### integrity Type + +`string` + +## type + + + + +`type` + +- is required +- Type: `string` +- cannot be null +- defined in: [ClientPushChangesRequest](clientpushchangesrequest-properties-actions-items-properties-type.md "https://timelimit.io/ClientPushChangesRequest#/properties/actions/items/properties/type") + +### type Type + +`string` + +### type Constraints + +**enum**: the value of this property must be equal to one of the following values: + +| Value | Explanation | +| :----------- | ----------- | +| `"appLogic"` | | +| `"child"` | | +| `"parent"` | | + +## userId + + + + +`userId` + +- is required +- Type: `string` +- cannot be null +- defined in: [ClientPushChangesRequest](clientpushchangesrequest-properties-actions-items-properties-userid.md "https://timelimit.io/ClientPushChangesRequest#/properties/actions/items/properties/userId") + +### userId Type + +`string` diff --git a/docs/schema/clientpushchangesrequest-properties-actions.md b/docs/schema/clientpushchangesrequest-properties-actions.md new file mode 100644 index 0000000..974bae5 --- /dev/null +++ b/docs/schema/clientpushchangesrequest-properties-actions.md @@ -0,0 +1,16 @@ +# Untitled array in ClientPushChangesRequest Schema + +```txt +https://timelimit.io/ClientPushChangesRequest#/properties/actions +``` + + + + +| Abstract | Extensible | Status | Identifiable | Custom Properties | Additional Properties | Access Restrictions | Defined In | +| :------------------ | ---------- | -------------- | ----------------------- | :---------------- | --------------------- | ------------------- | ----------------------------------------------------------------------------------------------------- | +| Can be instantiated | No | Unknown status | Unknown identifiability | Forbidden | Allowed | none | [ClientPushChangesRequest.schema.json\*](ClientPushChangesRequest.schema.json "open original schema") | + +## actions Type + +`object[]` ([Details](clientpushchangesrequest-properties-actions-items.md)) diff --git a/docs/schema/clientpushchangesrequest-properties-deviceauthtoken.md b/docs/schema/clientpushchangesrequest-properties-deviceauthtoken.md new file mode 100644 index 0000000..f1345bb --- /dev/null +++ b/docs/schema/clientpushchangesrequest-properties-deviceauthtoken.md @@ -0,0 +1,16 @@ +# Untitled string in ClientPushChangesRequest Schema + +```txt +https://timelimit.io/ClientPushChangesRequest#/properties/deviceAuthToken +``` + + + + +| Abstract | Extensible | Status | Identifiable | Custom Properties | Additional Properties | Access Restrictions | Defined In | +| :------------------ | ---------- | -------------- | ----------------------- | :---------------- | --------------------- | ------------------- | ----------------------------------------------------------------------------------------------------- | +| Can be instantiated | No | Unknown status | Unknown identifiability | Forbidden | Allowed | none | [ClientPushChangesRequest.schema.json\*](ClientPushChangesRequest.schema.json "open original schema") | + +## deviceAuthToken Type + +`string` diff --git a/docs/schema/clientpushchangesrequest-properties.md b/docs/schema/clientpushchangesrequest-properties.md new file mode 100644 index 0000000..d390e73 --- /dev/null +++ b/docs/schema/clientpushchangesrequest-properties.md @@ -0,0 +1,16 @@ +# Untitled undefined type in ClientPushChangesRequest Schema + +```txt +https://timelimit.io/ClientPushChangesRequest#/properties +``` + + + + +| Abstract | Extensible | Status | Identifiable | Custom Properties | Additional Properties | Access Restrictions | Defined In | +| :------------------ | ---------- | -------------- | ----------------------- | :---------------- | --------------------- | ------------------- | ----------------------------------------------------------------------------------------------------- | +| Can be instantiated | No | Unknown status | Unknown identifiability | Forbidden | Allowed | none | [ClientPushChangesRequest.schema.json\*](ClientPushChangesRequest.schema.json "open original schema") | + +## properties Type + +unknown diff --git a/docs/schema/clientpushchangesrequest.md b/docs/schema/clientpushchangesrequest.md new file mode 100644 index 0000000..47bf6e0 --- /dev/null +++ b/docs/schema/clientpushchangesrequest.md @@ -0,0 +1,55 @@ +# ClientPushChangesRequest Schema + +```txt +https://timelimit.io/ClientPushChangesRequest +``` + + + + +| Abstract | Extensible | Status | Identifiable | Custom Properties | Additional Properties | Access Restrictions | Defined In | +| :------------------ | ---------- | -------------- | ------------ | :---------------- | --------------------- | ------------------- | --------------------------------------------------------------------------------------------------- | +| Can be instantiated | No | Unknown status | No | Forbidden | Forbidden | none | [ClientPushChangesRequest.schema.json](ClientPushChangesRequest.schema.json "open original schema") | + +## ClientPushChangesRequest Type + +`object` ([ClientPushChangesRequest](clientpushchangesrequest.md)) + +# ClientPushChangesRequest Properties + +| Property | Type | Required | Nullable | Defined by | +| :---------------------------------- | -------- | -------- | -------------- | :------------------------------------------------------------------------------------------------------------------------------------------------------------------ | +| [deviceAuthToken](#deviceAuthToken) | `string` | Required | cannot be null | [ClientPushChangesRequest](clientpushchangesrequest-properties-deviceauthtoken.md "https://timelimit.io/ClientPushChangesRequest#/properties/deviceAuthToken") | +| [actions](#actions) | `array` | Required | cannot be null | [ClientPushChangesRequest](clientpushchangesrequest-properties-actions.md "https://timelimit.io/ClientPushChangesRequest#/properties/actions") | + +## deviceAuthToken + + + + +`deviceAuthToken` + +- is required +- Type: `string` +- cannot be null +- defined in: [ClientPushChangesRequest](clientpushchangesrequest-properties-deviceauthtoken.md "https://timelimit.io/ClientPushChangesRequest#/properties/deviceAuthToken") + +### deviceAuthToken Type + +`string` + +## actions + + + + +`actions` + +- is required +- Type: `object[]` ([Details](clientpushchangesrequest-properties-actions-items.md)) +- cannot be null +- defined in: [ClientPushChangesRequest](clientpushchangesrequest-properties-actions.md "https://timelimit.io/ClientPushChangesRequest#/properties/actions") + +### actions Type + +`object[]` ([Details](clientpushchangesrequest-properties-actions-items.md)) diff --git a/docs/schema/createfamilybymailtokenrequest-definitions-newdeviceinfo-properties-model.md b/docs/schema/createfamilybymailtokenrequest-definitions-newdeviceinfo-properties-model.md new file mode 100644 index 0000000..37523f5 --- /dev/null +++ b/docs/schema/createfamilybymailtokenrequest-definitions-newdeviceinfo-properties-model.md @@ -0,0 +1,16 @@ +# Untitled string in CreateFamilyByMailTokenRequest Schema + +```txt +https://timelimit.io/CreateFamilyByMailTokenRequest#/definitions/NewDeviceInfo/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 | [CreateFamilyByMailTokenRequest.schema.json\*](CreateFamilyByMailTokenRequest.schema.json "open original schema") | + +## model Type + +`string` diff --git a/docs/schema/createfamilybymailtokenrequest-definitions-newdeviceinfo-properties.md b/docs/schema/createfamilybymailtokenrequest-definitions-newdeviceinfo-properties.md new file mode 100644 index 0000000..9930d40 --- /dev/null +++ b/docs/schema/createfamilybymailtokenrequest-definitions-newdeviceinfo-properties.md @@ -0,0 +1,16 @@ +# Untitled undefined type in CreateFamilyByMailTokenRequest Schema + +```txt +https://timelimit.io/CreateFamilyByMailTokenRequest#/definitions/NewDeviceInfo/properties +``` + + + + +| Abstract | Extensible | Status | Identifiable | Custom Properties | Additional Properties | Access Restrictions | Defined In | +| :------------------ | ---------- | -------------- | ----------------------- | :---------------- | --------------------- | ------------------- | ----------------------------------------------------------------------------------------------------------------- | +| Can be instantiated | No | Unknown status | Unknown identifiability | Forbidden | Allowed | none | [CreateFamilyByMailTokenRequest.schema.json\*](CreateFamilyByMailTokenRequest.schema.json "open original schema") | + +## properties Type + +unknown diff --git a/docs/schema/createfamilybymailtokenrequest-definitions-newdeviceinfo.md b/docs/schema/createfamilybymailtokenrequest-definitions-newdeviceinfo.md new file mode 100644 index 0000000..a4882fb --- /dev/null +++ b/docs/schema/createfamilybymailtokenrequest-definitions-newdeviceinfo.md @@ -0,0 +1,38 @@ +# NewDeviceInfo Schema + +```txt +https://timelimit.io/CreateFamilyByMailTokenRequest#/definitions/NewDeviceInfo +``` + + + + +| Abstract | Extensible | Status | Identifiable | Custom Properties | Additional Properties | Access Restrictions | Defined In | +| :------------------ | ---------- | -------------- | ------------ | :---------------- | --------------------- | ------------------- | ----------------------------------------------------------------------------------------------------------------- | +| Can be instantiated | No | Unknown status | No | Forbidden | Forbidden | none | [CreateFamilyByMailTokenRequest.schema.json\*](CreateFamilyByMailTokenRequest.schema.json "open original schema") | + +## NewDeviceInfo Type + +`object` ([NewDeviceInfo](createfamilybymailtokenrequest-definitions-newdeviceinfo.md)) + +# NewDeviceInfo Properties + +| Property | Type | Required | Nullable | Defined by | +| :-------------- | -------- | -------- | -------------- | :-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | +| [model](#model) | `string` | Required | cannot be null | [CreateFamilyByMailTokenRequest](createfamilybymailtokenrequest-definitions-newdeviceinfo-properties-model.md "https://timelimit.io/CreateFamilyByMailTokenRequest#/definitions/NewDeviceInfo/properties/model") | + +## model + + + + +`model` + +- is required +- Type: `string` +- cannot be null +- defined in: [CreateFamilyByMailTokenRequest](createfamilybymailtokenrequest-definitions-newdeviceinfo-properties-model.md "https://timelimit.io/CreateFamilyByMailTokenRequest#/definitions/NewDeviceInfo/properties/model") + +### model Type + +`string` diff --git a/docs/schema/createfamilybymailtokenrequest-definitions-parentpassword-properties-hash.md b/docs/schema/createfamilybymailtokenrequest-definitions-parentpassword-properties-hash.md new file mode 100644 index 0000000..fb63755 --- /dev/null +++ b/docs/schema/createfamilybymailtokenrequest-definitions-parentpassword-properties-hash.md @@ -0,0 +1,16 @@ +# Untitled string in CreateFamilyByMailTokenRequest Schema + +```txt +https://timelimit.io/CreateFamilyByMailTokenRequest#/definitions/ParentPassword/properties/hash +``` + + + + +| Abstract | Extensible | Status | Identifiable | Custom Properties | Additional Properties | Access Restrictions | Defined In | +| :------------------ | ---------- | -------------- | ----------------------- | :---------------- | --------------------- | ------------------- | ----------------------------------------------------------------------------------------------------------------- | +| Can be instantiated | No | Unknown status | Unknown identifiability | Forbidden | Allowed | none | [CreateFamilyByMailTokenRequest.schema.json\*](CreateFamilyByMailTokenRequest.schema.json "open original schema") | + +## hash Type + +`string` diff --git a/docs/schema/createfamilybymailtokenrequest-definitions-parentpassword-properties-secondhash.md b/docs/schema/createfamilybymailtokenrequest-definitions-parentpassword-properties-secondhash.md new file mode 100644 index 0000000..3ddeab4 --- /dev/null +++ b/docs/schema/createfamilybymailtokenrequest-definitions-parentpassword-properties-secondhash.md @@ -0,0 +1,16 @@ +# Untitled string in CreateFamilyByMailTokenRequest Schema + +```txt +https://timelimit.io/CreateFamilyByMailTokenRequest#/definitions/ParentPassword/properties/secondHash +``` + + + + +| Abstract | Extensible | Status | Identifiable | Custom Properties | Additional Properties | Access Restrictions | Defined In | +| :------------------ | ---------- | -------------- | ----------------------- | :---------------- | --------------------- | ------------------- | ----------------------------------------------------------------------------------------------------------------- | +| Can be instantiated | No | Unknown status | Unknown identifiability | Forbidden | Allowed | none | [CreateFamilyByMailTokenRequest.schema.json\*](CreateFamilyByMailTokenRequest.schema.json "open original schema") | + +## secondHash Type + +`string` diff --git a/docs/schema/createfamilybymailtokenrequest-definitions-parentpassword-properties-secondsalt.md b/docs/schema/createfamilybymailtokenrequest-definitions-parentpassword-properties-secondsalt.md new file mode 100644 index 0000000..8aa0e70 --- /dev/null +++ b/docs/schema/createfamilybymailtokenrequest-definitions-parentpassword-properties-secondsalt.md @@ -0,0 +1,16 @@ +# Untitled string in CreateFamilyByMailTokenRequest Schema + +```txt +https://timelimit.io/CreateFamilyByMailTokenRequest#/definitions/ParentPassword/properties/secondSalt +``` + + + + +| Abstract | Extensible | Status | Identifiable | Custom Properties | Additional Properties | Access Restrictions | Defined In | +| :------------------ | ---------- | -------------- | ----------------------- | :---------------- | --------------------- | ------------------- | ----------------------------------------------------------------------------------------------------------------- | +| Can be instantiated | No | Unknown status | Unknown identifiability | Forbidden | Allowed | none | [CreateFamilyByMailTokenRequest.schema.json\*](CreateFamilyByMailTokenRequest.schema.json "open original schema") | + +## secondSalt Type + +`string` diff --git a/docs/schema/createfamilybymailtokenrequest-definitions-parentpassword-properties.md b/docs/schema/createfamilybymailtokenrequest-definitions-parentpassword-properties.md new file mode 100644 index 0000000..afda84e --- /dev/null +++ b/docs/schema/createfamilybymailtokenrequest-definitions-parentpassword-properties.md @@ -0,0 +1,16 @@ +# Untitled undefined type in CreateFamilyByMailTokenRequest Schema + +```txt +https://timelimit.io/CreateFamilyByMailTokenRequest#/definitions/ParentPassword/properties +``` + + + + +| Abstract | Extensible | Status | Identifiable | Custom Properties | Additional Properties | Access Restrictions | Defined In | +| :------------------ | ---------- | -------------- | ----------------------- | :---------------- | --------------------- | ------------------- | ----------------------------------------------------------------------------------------------------------------- | +| Can be instantiated | No | Unknown status | Unknown identifiability | Forbidden | Allowed | none | [CreateFamilyByMailTokenRequest.schema.json\*](CreateFamilyByMailTokenRequest.schema.json "open original schema") | + +## properties Type + +unknown diff --git a/docs/schema/createfamilybymailtokenrequest-definitions-parentpassword.md b/docs/schema/createfamilybymailtokenrequest-definitions-parentpassword.md new file mode 100644 index 0000000..1d8f5d0 --- /dev/null +++ b/docs/schema/createfamilybymailtokenrequest-definitions-parentpassword.md @@ -0,0 +1,72 @@ +# ParentPassword Schema + +```txt +https://timelimit.io/CreateFamilyByMailTokenRequest#/definitions/ParentPassword +``` + + + + +| Abstract | Extensible | Status | Identifiable | Custom Properties | Additional Properties | Access Restrictions | Defined In | +| :------------------ | ---------- | -------------- | ------------ | :---------------- | --------------------- | ------------------- | ----------------------------------------------------------------------------------------------------------------- | +| Can be instantiated | No | Unknown status | No | Forbidden | Forbidden | none | [CreateFamilyByMailTokenRequest.schema.json\*](CreateFamilyByMailTokenRequest.schema.json "open original schema") | + +## ParentPassword Type + +`object` ([ParentPassword](createfamilybymailtokenrequest-definitions-parentpassword.md)) + +# ParentPassword Properties + +| Property | Type | Required | Nullable | Defined by | +| :------------------------ | -------- | -------- | -------------- | :-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | +| [hash](#hash) | `string` | Required | cannot be null | [CreateFamilyByMailTokenRequest](createfamilybymailtokenrequest-definitions-parentpassword-properties-hash.md "https://timelimit.io/CreateFamilyByMailTokenRequest#/definitions/ParentPassword/properties/hash") | +| [secondHash](#secondHash) | `string` | Required | cannot be null | [CreateFamilyByMailTokenRequest](createfamilybymailtokenrequest-definitions-parentpassword-properties-secondhash.md "https://timelimit.io/CreateFamilyByMailTokenRequest#/definitions/ParentPassword/properties/secondHash") | +| [secondSalt](#secondSalt) | `string` | Required | cannot be null | [CreateFamilyByMailTokenRequest](createfamilybymailtokenrequest-definitions-parentpassword-properties-secondsalt.md "https://timelimit.io/CreateFamilyByMailTokenRequest#/definitions/ParentPassword/properties/secondSalt") | + +## hash + + + + +`hash` + +- is required +- Type: `string` +- cannot be null +- defined in: [CreateFamilyByMailTokenRequest](createfamilybymailtokenrequest-definitions-parentpassword-properties-hash.md "https://timelimit.io/CreateFamilyByMailTokenRequest#/definitions/ParentPassword/properties/hash") + +### hash Type + +`string` + +## secondHash + + + + +`secondHash` + +- is required +- Type: `string` +- cannot be null +- defined in: [CreateFamilyByMailTokenRequest](createfamilybymailtokenrequest-definitions-parentpassword-properties-secondhash.md "https://timelimit.io/CreateFamilyByMailTokenRequest#/definitions/ParentPassword/properties/secondHash") + +### secondHash Type + +`string` + +## secondSalt + + + + +`secondSalt` + +- is required +- Type: `string` +- cannot be null +- defined in: [CreateFamilyByMailTokenRequest](createfamilybymailtokenrequest-definitions-parentpassword-properties-secondsalt.md "https://timelimit.io/CreateFamilyByMailTokenRequest#/definitions/ParentPassword/properties/secondSalt") + +### secondSalt Type + +`string` diff --git a/docs/schema/createfamilybymailtokenrequest-definitions.md b/docs/schema/createfamilybymailtokenrequest-definitions.md new file mode 100644 index 0000000..6eee2c4 --- /dev/null +++ b/docs/schema/createfamilybymailtokenrequest-definitions.md @@ -0,0 +1,16 @@ +# Untitled undefined type in CreateFamilyByMailTokenRequest Schema + +```txt +https://timelimit.io/CreateFamilyByMailTokenRequest#/definitions +``` + + + + +| Abstract | Extensible | Status | Identifiable | Custom Properties | Additional Properties | Access Restrictions | Defined In | +| :------------------ | ---------- | -------------- | ----------------------- | :---------------- | --------------------- | ------------------- | ----------------------------------------------------------------------------------------------------------------- | +| Can be instantiated | No | Unknown status | Unknown identifiability | Forbidden | Allowed | none | [CreateFamilyByMailTokenRequest.schema.json\*](CreateFamilyByMailTokenRequest.schema.json "open original schema") | + +## definitions Type + +unknown diff --git a/docs/schema/createfamilybymailtokenrequest-properties-devicename.md b/docs/schema/createfamilybymailtokenrequest-properties-devicename.md new file mode 100644 index 0000000..a047c6f --- /dev/null +++ b/docs/schema/createfamilybymailtokenrequest-properties-devicename.md @@ -0,0 +1,16 @@ +# Untitled string in CreateFamilyByMailTokenRequest Schema + +```txt +https://timelimit.io/CreateFamilyByMailTokenRequest#/properties/deviceName +``` + + + + +| Abstract | Extensible | Status | Identifiable | Custom Properties | Additional Properties | Access Restrictions | Defined In | +| :------------------ | ---------- | -------------- | ----------------------- | :---------------- | --------------------- | ------------------- | ----------------------------------------------------------------------------------------------------------------- | +| Can be instantiated | No | Unknown status | Unknown identifiability | Forbidden | Allowed | none | [CreateFamilyByMailTokenRequest.schema.json\*](CreateFamilyByMailTokenRequest.schema.json "open original schema") | + +## deviceName Type + +`string` diff --git a/docs/schema/createfamilybymailtokenrequest-properties-mailauthtoken.md b/docs/schema/createfamilybymailtokenrequest-properties-mailauthtoken.md new file mode 100644 index 0000000..4824638 --- /dev/null +++ b/docs/schema/createfamilybymailtokenrequest-properties-mailauthtoken.md @@ -0,0 +1,16 @@ +# Untitled string in CreateFamilyByMailTokenRequest Schema + +```txt +https://timelimit.io/CreateFamilyByMailTokenRequest#/properties/mailAuthToken +``` + + + + +| Abstract | Extensible | Status | Identifiable | Custom Properties | Additional Properties | Access Restrictions | Defined In | +| :------------------ | ---------- | -------------- | ----------------------- | :---------------- | --------------------- | ------------------- | ----------------------------------------------------------------------------------------------------------------- | +| Can be instantiated | No | Unknown status | Unknown identifiability | Forbidden | Allowed | none | [CreateFamilyByMailTokenRequest.schema.json\*](CreateFamilyByMailTokenRequest.schema.json "open original schema") | + +## mailAuthToken Type + +`string` diff --git a/docs/schema/createfamilybymailtokenrequest-properties-parentname.md b/docs/schema/createfamilybymailtokenrequest-properties-parentname.md new file mode 100644 index 0000000..3f09267 --- /dev/null +++ b/docs/schema/createfamilybymailtokenrequest-properties-parentname.md @@ -0,0 +1,16 @@ +# Untitled string in CreateFamilyByMailTokenRequest Schema + +```txt +https://timelimit.io/CreateFamilyByMailTokenRequest#/properties/parentName +``` + + + + +| Abstract | Extensible | Status | Identifiable | Custom Properties | Additional Properties | Access Restrictions | Defined In | +| :------------------ | ---------- | -------------- | ----------------------- | :---------------- | --------------------- | ------------------- | ----------------------------------------------------------------------------------------------------------------- | +| Can be instantiated | No | Unknown status | Unknown identifiability | Forbidden | Allowed | none | [CreateFamilyByMailTokenRequest.schema.json\*](CreateFamilyByMailTokenRequest.schema.json "open original schema") | + +## parentName Type + +`string` diff --git a/docs/schema/createfamilybymailtokenrequest-properties-timezone.md b/docs/schema/createfamilybymailtokenrequest-properties-timezone.md new file mode 100644 index 0000000..226338d --- /dev/null +++ b/docs/schema/createfamilybymailtokenrequest-properties-timezone.md @@ -0,0 +1,16 @@ +# Untitled string in CreateFamilyByMailTokenRequest Schema + +```txt +https://timelimit.io/CreateFamilyByMailTokenRequest#/properties/timeZone +``` + + + + +| Abstract | Extensible | Status | Identifiable | Custom Properties | Additional Properties | Access Restrictions | Defined In | +| :------------------ | ---------- | -------------- | ----------------------- | :---------------- | --------------------- | ------------------- | ----------------------------------------------------------------------------------------------------------------- | +| Can be instantiated | No | Unknown status | Unknown identifiability | Forbidden | Allowed | none | [CreateFamilyByMailTokenRequest.schema.json\*](CreateFamilyByMailTokenRequest.schema.json "open original schema") | + +## timeZone Type + +`string` diff --git a/docs/schema/createfamilybymailtokenrequest-properties.md b/docs/schema/createfamilybymailtokenrequest-properties.md new file mode 100644 index 0000000..45fd590 --- /dev/null +++ b/docs/schema/createfamilybymailtokenrequest-properties.md @@ -0,0 +1,16 @@ +# Untitled undefined type in CreateFamilyByMailTokenRequest Schema + +```txt +https://timelimit.io/CreateFamilyByMailTokenRequest#/properties +``` + + + + +| Abstract | Extensible | Status | Identifiable | Custom Properties | Additional Properties | Access Restrictions | Defined In | +| :------------------ | ---------- | -------------- | ----------------------- | :---------------- | --------------------- | ------------------- | ----------------------------------------------------------------------------------------------------------------- | +| Can be instantiated | No | Unknown status | Unknown identifiability | Forbidden | Allowed | none | [CreateFamilyByMailTokenRequest.schema.json\*](CreateFamilyByMailTokenRequest.schema.json "open original schema") | + +## properties Type + +unknown diff --git a/docs/schema/createfamilybymailtokenrequest.md b/docs/schema/createfamilybymailtokenrequest.md new file mode 100644 index 0000000..194f0e2 --- /dev/null +++ b/docs/schema/createfamilybymailtokenrequest.md @@ -0,0 +1,215 @@ +# CreateFamilyByMailTokenRequest Schema + +```txt +https://timelimit.io/CreateFamilyByMailTokenRequest +``` + + + + +| Abstract | Extensible | Status | Identifiable | Custom Properties | Additional Properties | Access Restrictions | Defined In | +| :------------------ | ---------- | -------------- | ------------ | :---------------- | --------------------- | ------------------- | --------------------------------------------------------------------------------------------------------------- | +| Can be instantiated | Yes | Unknown status | No | Forbidden | Forbidden | none | [CreateFamilyByMailTokenRequest.schema.json](CreateFamilyByMailTokenRequest.schema.json "open original schema") | + +## CreateFamilyByMailTokenRequest Type + +`object` ([CreateFamilyByMailTokenRequest](createfamilybymailtokenrequest.md)) + +# CreateFamilyByMailTokenRequest Definitions + +## Definitions group ParentPassword + +Reference this group by using + +```json +{"$ref":"https://timelimit.io/CreateFamilyByMailTokenRequest#/definitions/ParentPassword"} +``` + +| Property | Type | Required | Nullable | Defined by | +| :------------------------ | -------- | -------- | -------------- | :-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | +| [hash](#hash) | `string` | Required | cannot be null | [CreateFamilyByMailTokenRequest](createfamilybymailtokenrequest-definitions-parentpassword-properties-hash.md "https://timelimit.io/CreateFamilyByMailTokenRequest#/definitions/ParentPassword/properties/hash") | +| [secondHash](#secondHash) | `string` | Required | cannot be null | [CreateFamilyByMailTokenRequest](createfamilybymailtokenrequest-definitions-parentpassword-properties-secondhash.md "https://timelimit.io/CreateFamilyByMailTokenRequest#/definitions/ParentPassword/properties/secondHash") | +| [secondSalt](#secondSalt) | `string` | Required | cannot be null | [CreateFamilyByMailTokenRequest](createfamilybymailtokenrequest-definitions-parentpassword-properties-secondsalt.md "https://timelimit.io/CreateFamilyByMailTokenRequest#/definitions/ParentPassword/properties/secondSalt") | + +### hash + + + + +`hash` + +- is required +- Type: `string` +- cannot be null +- defined in: [CreateFamilyByMailTokenRequest](createfamilybymailtokenrequest-definitions-parentpassword-properties-hash.md "https://timelimit.io/CreateFamilyByMailTokenRequest#/definitions/ParentPassword/properties/hash") + +#### hash Type + +`string` + +### secondHash + + + + +`secondHash` + +- is required +- Type: `string` +- cannot be null +- defined in: [CreateFamilyByMailTokenRequest](createfamilybymailtokenrequest-definitions-parentpassword-properties-secondhash.md "https://timelimit.io/CreateFamilyByMailTokenRequest#/definitions/ParentPassword/properties/secondHash") + +#### secondHash Type + +`string` + +### secondSalt + + + + +`secondSalt` + +- is required +- Type: `string` +- cannot be null +- defined in: [CreateFamilyByMailTokenRequest](createfamilybymailtokenrequest-definitions-parentpassword-properties-secondsalt.md "https://timelimit.io/CreateFamilyByMailTokenRequest#/definitions/ParentPassword/properties/secondSalt") + +#### secondSalt Type + +`string` + +## Definitions group NewDeviceInfo + +Reference this group by using + +```json +{"$ref":"https://timelimit.io/CreateFamilyByMailTokenRequest#/definitions/NewDeviceInfo"} +``` + +| Property | Type | Required | Nullable | Defined by | +| :-------------- | -------- | -------- | -------------- | :-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | +| [model](#model) | `string` | Required | cannot be null | [CreateFamilyByMailTokenRequest](createfamilybymailtokenrequest-definitions-newdeviceinfo-properties-model.md "https://timelimit.io/CreateFamilyByMailTokenRequest#/definitions/NewDeviceInfo/properties/model") | + +### model + + + + +`model` + +- is required +- Type: `string` +- cannot be null +- defined in: [CreateFamilyByMailTokenRequest](createfamilybymailtokenrequest-definitions-newdeviceinfo-properties-model.md "https://timelimit.io/CreateFamilyByMailTokenRequest#/definitions/NewDeviceInfo/properties/model") + +#### model Type + +`string` + +# CreateFamilyByMailTokenRequest Properties + +| Property | Type | Required | Nullable | Defined by | +| :-------------------------------- | -------- | -------- | -------------- | :----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | +| [mailAuthToken](#mailAuthToken) | `string` | Required | cannot be null | [CreateFamilyByMailTokenRequest](createfamilybymailtokenrequest-properties-mailauthtoken.md "https://timelimit.io/CreateFamilyByMailTokenRequest#/properties/mailAuthToken") | +| [parentPassword](#parentPassword) | `object` | Required | cannot be null | [CreateFamilyByMailTokenRequest](createfamilybymailtokenrequest-definitions-parentpassword.md "https://timelimit.io/CreateFamilyByMailTokenRequest#/properties/parentPassword") | +| [parentDevice](#parentDevice) | `object` | Required | cannot be null | [CreateFamilyByMailTokenRequest](createfamilybymailtokenrequest-definitions-newdeviceinfo.md "https://timelimit.io/CreateFamilyByMailTokenRequest#/properties/parentDevice") | +| [deviceName](#deviceName) | `string` | Required | cannot be null | [CreateFamilyByMailTokenRequest](createfamilybymailtokenrequest-properties-devicename.md "https://timelimit.io/CreateFamilyByMailTokenRequest#/properties/deviceName") | +| [timeZone](#timeZone) | `string` | Required | cannot be null | [CreateFamilyByMailTokenRequest](createfamilybymailtokenrequest-properties-timezone.md "https://timelimit.io/CreateFamilyByMailTokenRequest#/properties/timeZone") | +| [parentName](#parentName) | `string` | Required | cannot be null | [CreateFamilyByMailTokenRequest](createfamilybymailtokenrequest-properties-parentname.md "https://timelimit.io/CreateFamilyByMailTokenRequest#/properties/parentName") | + +## mailAuthToken + + + + +`mailAuthToken` + +- is required +- Type: `string` +- cannot be null +- defined in: [CreateFamilyByMailTokenRequest](createfamilybymailtokenrequest-properties-mailauthtoken.md "https://timelimit.io/CreateFamilyByMailTokenRequest#/properties/mailAuthToken") + +### mailAuthToken Type + +`string` + +## parentPassword + + + + +`parentPassword` + +- is required +- Type: `object` ([ParentPassword](createfamilybymailtokenrequest-definitions-parentpassword.md)) +- cannot be null +- defined in: [CreateFamilyByMailTokenRequest](createfamilybymailtokenrequest-definitions-parentpassword.md "https://timelimit.io/CreateFamilyByMailTokenRequest#/properties/parentPassword") + +### parentPassword Type + +`object` ([ParentPassword](createfamilybymailtokenrequest-definitions-parentpassword.md)) + +## parentDevice + + + + +`parentDevice` + +- is required +- Type: `object` ([NewDeviceInfo](createfamilybymailtokenrequest-definitions-newdeviceinfo.md)) +- cannot be null +- defined in: [CreateFamilyByMailTokenRequest](createfamilybymailtokenrequest-definitions-newdeviceinfo.md "https://timelimit.io/CreateFamilyByMailTokenRequest#/properties/parentDevice") + +### parentDevice Type + +`object` ([NewDeviceInfo](createfamilybymailtokenrequest-definitions-newdeviceinfo.md)) + +## deviceName + + + + +`deviceName` + +- is required +- Type: `string` +- cannot be null +- defined in: [CreateFamilyByMailTokenRequest](createfamilybymailtokenrequest-properties-devicename.md "https://timelimit.io/CreateFamilyByMailTokenRequest#/properties/deviceName") + +### deviceName Type + +`string` + +## timeZone + + + + +`timeZone` + +- is required +- Type: `string` +- cannot be null +- defined in: [CreateFamilyByMailTokenRequest](createfamilybymailtokenrequest-properties-timezone.md "https://timelimit.io/CreateFamilyByMailTokenRequest#/properties/timeZone") + +### timeZone Type + +`string` + +## parentName + + + + +`parentName` + +- is required +- Type: `string` +- cannot be null +- defined in: [CreateFamilyByMailTokenRequest](createfamilybymailtokenrequest-properties-parentname.md "https://timelimit.io/CreateFamilyByMailTokenRequest#/properties/parentName") + +### parentName Type + +`string` diff --git a/docs/schema/createregisterdevicetokenrequest-definitions.md b/docs/schema/createregisterdevicetokenrequest-definitions.md new file mode 100644 index 0000000..3947dce --- /dev/null +++ b/docs/schema/createregisterdevicetokenrequest-definitions.md @@ -0,0 +1,16 @@ +# Untitled undefined type in CreateRegisterDeviceTokenRequest Schema + +```txt +https://timelimit.io/CreateRegisterDeviceTokenRequest#/definitions +``` + + + + +| Abstract | Extensible | Status | Identifiable | Custom Properties | Additional Properties | Access Restrictions | Defined In | +| :------------------ | ---------- | -------------- | ----------------------- | :---------------- | --------------------- | ------------------- | --------------------------------------------------------------------------------------------------------------------- | +| Can be instantiated | No | Unknown status | Unknown identifiability | Forbidden | Allowed | none | [CreateRegisterDeviceTokenRequest.schema.json\*](CreateRegisterDeviceTokenRequest.schema.json "open original schema") | + +## definitions Type + +unknown diff --git a/docs/schema/createregisterdevicetokenrequest-properties-deviceauthtoken.md b/docs/schema/createregisterdevicetokenrequest-properties-deviceauthtoken.md new file mode 100644 index 0000000..544901a --- /dev/null +++ b/docs/schema/createregisterdevicetokenrequest-properties-deviceauthtoken.md @@ -0,0 +1,16 @@ +# Untitled string in CreateRegisterDeviceTokenRequest Schema + +```txt +https://timelimit.io/CreateRegisterDeviceTokenRequest#/properties/deviceAuthToken +``` + + + + +| Abstract | Extensible | Status | Identifiable | Custom Properties | Additional Properties | Access Restrictions | Defined In | +| :------------------ | ---------- | -------------- | ----------------------- | :---------------- | --------------------- | ------------------- | --------------------------------------------------------------------------------------------------------------------- | +| Can be instantiated | No | Unknown status | Unknown identifiability | Forbidden | Allowed | none | [CreateRegisterDeviceTokenRequest.schema.json\*](CreateRegisterDeviceTokenRequest.schema.json "open original schema") | + +## deviceAuthToken Type + +`string` diff --git a/docs/schema/createregisterdevicetokenrequest-properties-parentid.md b/docs/schema/createregisterdevicetokenrequest-properties-parentid.md new file mode 100644 index 0000000..240da58 --- /dev/null +++ b/docs/schema/createregisterdevicetokenrequest-properties-parentid.md @@ -0,0 +1,16 @@ +# Untitled string in CreateRegisterDeviceTokenRequest Schema + +```txt +https://timelimit.io/CreateRegisterDeviceTokenRequest#/properties/parentId +``` + + + + +| Abstract | Extensible | Status | Identifiable | Custom Properties | Additional Properties | Access Restrictions | Defined In | +| :------------------ | ---------- | -------------- | ----------------------- | :---------------- | --------------------- | ------------------- | --------------------------------------------------------------------------------------------------------------------- | +| Can be instantiated | No | Unknown status | Unknown identifiability | Forbidden | Allowed | none | [CreateRegisterDeviceTokenRequest.schema.json\*](CreateRegisterDeviceTokenRequest.schema.json "open original schema") | + +## parentId Type + +`string` diff --git a/docs/schema/createregisterdevicetokenrequest-properties-parentpasswordsecondhash.md b/docs/schema/createregisterdevicetokenrequest-properties-parentpasswordsecondhash.md new file mode 100644 index 0000000..11fa9e8 --- /dev/null +++ b/docs/schema/createregisterdevicetokenrequest-properties-parentpasswordsecondhash.md @@ -0,0 +1,16 @@ +# Untitled string in CreateRegisterDeviceTokenRequest Schema + +```txt +https://timelimit.io/CreateRegisterDeviceTokenRequest#/properties/parentPasswordSecondHash +``` + + + + +| Abstract | Extensible | Status | Identifiable | Custom Properties | Additional Properties | Access Restrictions | Defined In | +| :------------------ | ---------- | -------------- | ----------------------- | :---------------- | --------------------- | ------------------- | --------------------------------------------------------------------------------------------------------------------- | +| Can be instantiated | No | Unknown status | Unknown identifiability | Forbidden | Allowed | none | [CreateRegisterDeviceTokenRequest.schema.json\*](CreateRegisterDeviceTokenRequest.schema.json "open original schema") | + +## parentPasswordSecondHash Type + +`string` diff --git a/docs/schema/createregisterdevicetokenrequest-properties.md b/docs/schema/createregisterdevicetokenrequest-properties.md new file mode 100644 index 0000000..e5202a0 --- /dev/null +++ b/docs/schema/createregisterdevicetokenrequest-properties.md @@ -0,0 +1,16 @@ +# Untitled undefined type in CreateRegisterDeviceTokenRequest Schema + +```txt +https://timelimit.io/CreateRegisterDeviceTokenRequest#/properties +``` + + + + +| Abstract | Extensible | Status | Identifiable | Custom Properties | Additional Properties | Access Restrictions | Defined In | +| :------------------ | ---------- | -------------- | ----------------------- | :---------------- | --------------------- | ------------------- | --------------------------------------------------------------------------------------------------------------------- | +| Can be instantiated | No | Unknown status | Unknown identifiability | Forbidden | Allowed | none | [CreateRegisterDeviceTokenRequest.schema.json\*](CreateRegisterDeviceTokenRequest.schema.json "open original schema") | + +## properties Type + +unknown diff --git a/docs/schema/createregisterdevicetokenrequest.md b/docs/schema/createregisterdevicetokenrequest.md new file mode 100644 index 0000000..a808229 --- /dev/null +++ b/docs/schema/createregisterdevicetokenrequest.md @@ -0,0 +1,74 @@ +# CreateRegisterDeviceTokenRequest Schema + +```txt +https://timelimit.io/CreateRegisterDeviceTokenRequest +``` + + + + +| Abstract | Extensible | Status | Identifiable | Custom Properties | Additional Properties | Access Restrictions | Defined In | +| :------------------ | ---------- | -------------- | ------------ | :---------------- | --------------------- | ------------------- | ------------------------------------------------------------------------------------------------------------------- | +| Can be instantiated | Yes | Unknown status | No | Forbidden | Forbidden | none | [CreateRegisterDeviceTokenRequest.schema.json](CreateRegisterDeviceTokenRequest.schema.json "open original schema") | + +## CreateRegisterDeviceTokenRequest Type + +`object` ([CreateRegisterDeviceTokenRequest](createregisterdevicetokenrequest.md)) + +# CreateRegisterDeviceTokenRequest Definitions + +# CreateRegisterDeviceTokenRequest Properties + +| Property | Type | Required | Nullable | Defined by | +| :---------------------------------------------------- | -------- | -------- | -------------- | :------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ | +| [deviceAuthToken](#deviceAuthToken) | `string` | Required | cannot be null | [CreateRegisterDeviceTokenRequest](createregisterdevicetokenrequest-properties-deviceauthtoken.md "https://timelimit.io/CreateRegisterDeviceTokenRequest#/properties/deviceAuthToken") | +| [parentId](#parentId) | `string` | Required | cannot be null | [CreateRegisterDeviceTokenRequest](createregisterdevicetokenrequest-properties-parentid.md "https://timelimit.io/CreateRegisterDeviceTokenRequest#/properties/parentId") | +| [parentPasswordSecondHash](#parentPasswordSecondHash) | `string` | Required | cannot be null | [CreateRegisterDeviceTokenRequest](createregisterdevicetokenrequest-properties-parentpasswordsecondhash.md "https://timelimit.io/CreateRegisterDeviceTokenRequest#/properties/parentPasswordSecondHash") | + +## deviceAuthToken + + + + +`deviceAuthToken` + +- is required +- Type: `string` +- cannot be null +- defined in: [CreateRegisterDeviceTokenRequest](createregisterdevicetokenrequest-properties-deviceauthtoken.md "https://timelimit.io/CreateRegisterDeviceTokenRequest#/properties/deviceAuthToken") + +### deviceAuthToken Type + +`string` + +## parentId + + + + +`parentId` + +- is required +- Type: `string` +- cannot be null +- defined in: [CreateRegisterDeviceTokenRequest](createregisterdevicetokenrequest-properties-parentid.md "https://timelimit.io/CreateRegisterDeviceTokenRequest#/properties/parentId") + +### parentId Type + +`string` + +## parentPasswordSecondHash + + + + +`parentPasswordSecondHash` + +- is required +- Type: `string` +- cannot be null +- defined in: [CreateRegisterDeviceTokenRequest](createregisterdevicetokenrequest-properties-parentpasswordsecondhash.md "https://timelimit.io/CreateRegisterDeviceTokenRequest#/properties/parentPasswordSecondHash") + +### parentPasswordSecondHash Type + +`string` diff --git a/docs/schema/finishpurchasebygoogleplayrequest-definitions.md b/docs/schema/finishpurchasebygoogleplayrequest-definitions.md new file mode 100644 index 0000000..7c82031 --- /dev/null +++ b/docs/schema/finishpurchasebygoogleplayrequest-definitions.md @@ -0,0 +1,16 @@ +# Untitled undefined type in FinishPurchaseByGooglePlayRequest Schema + +```txt +https://timelimit.io/FinishPurchaseByGooglePlayRequest#/definitions +``` + + + + +| Abstract | Extensible | Status | Identifiable | Custom Properties | Additional Properties | Access Restrictions | Defined In | +| :------------------ | ---------- | -------------- | ----------------------- | :---------------- | --------------------- | ------------------- | ----------------------------------------------------------------------------------------------------------------------- | +| Can be instantiated | No | Unknown status | Unknown identifiability | Forbidden | Allowed | none | [FinishPurchaseByGooglePlayRequest.schema.json\*](FinishPurchaseByGooglePlayRequest.schema.json "open original schema") | + +## definitions Type + +unknown diff --git a/docs/schema/finishpurchasebygoogleplayrequest-properties-deviceauthtoken.md b/docs/schema/finishpurchasebygoogleplayrequest-properties-deviceauthtoken.md new file mode 100644 index 0000000..c7802d9 --- /dev/null +++ b/docs/schema/finishpurchasebygoogleplayrequest-properties-deviceauthtoken.md @@ -0,0 +1,16 @@ +# Untitled string in FinishPurchaseByGooglePlayRequest Schema + +```txt +https://timelimit.io/FinishPurchaseByGooglePlayRequest#/properties/deviceAuthToken +``` + + + + +| Abstract | Extensible | Status | Identifiable | Custom Properties | Additional Properties | Access Restrictions | Defined In | +| :------------------ | ---------- | -------------- | ----------------------- | :---------------- | --------------------- | ------------------- | ----------------------------------------------------------------------------------------------------------------------- | +| Can be instantiated | No | Unknown status | Unknown identifiability | Forbidden | Allowed | none | [FinishPurchaseByGooglePlayRequest.schema.json\*](FinishPurchaseByGooglePlayRequest.schema.json "open original schema") | + +## deviceAuthToken Type + +`string` diff --git a/docs/schema/finishpurchasebygoogleplayrequest-properties-receipt.md b/docs/schema/finishpurchasebygoogleplayrequest-properties-receipt.md new file mode 100644 index 0000000..33c8280 --- /dev/null +++ b/docs/schema/finishpurchasebygoogleplayrequest-properties-receipt.md @@ -0,0 +1,16 @@ +# Untitled string in FinishPurchaseByGooglePlayRequest Schema + +```txt +https://timelimit.io/FinishPurchaseByGooglePlayRequest#/properties/receipt +``` + + + + +| Abstract | Extensible | Status | Identifiable | Custom Properties | Additional Properties | Access Restrictions | Defined In | +| :------------------ | ---------- | -------------- | ----------------------- | :---------------- | --------------------- | ------------------- | ----------------------------------------------------------------------------------------------------------------------- | +| Can be instantiated | No | Unknown status | Unknown identifiability | Forbidden | Allowed | none | [FinishPurchaseByGooglePlayRequest.schema.json\*](FinishPurchaseByGooglePlayRequest.schema.json "open original schema") | + +## receipt Type + +`string` diff --git a/docs/schema/finishpurchasebygoogleplayrequest-properties-signature.md b/docs/schema/finishpurchasebygoogleplayrequest-properties-signature.md new file mode 100644 index 0000000..1cf4023 --- /dev/null +++ b/docs/schema/finishpurchasebygoogleplayrequest-properties-signature.md @@ -0,0 +1,16 @@ +# Untitled string in FinishPurchaseByGooglePlayRequest Schema + +```txt +https://timelimit.io/FinishPurchaseByGooglePlayRequest#/properties/signature +``` + + + + +| Abstract | Extensible | Status | Identifiable | Custom Properties | Additional Properties | Access Restrictions | Defined In | +| :------------------ | ---------- | -------------- | ----------------------- | :---------------- | --------------------- | ------------------- | ----------------------------------------------------------------------------------------------------------------------- | +| Can be instantiated | No | Unknown status | Unknown identifiability | Forbidden | Allowed | none | [FinishPurchaseByGooglePlayRequest.schema.json\*](FinishPurchaseByGooglePlayRequest.schema.json "open original schema") | + +## signature Type + +`string` diff --git a/docs/schema/finishpurchasebygoogleplayrequest-properties.md b/docs/schema/finishpurchasebygoogleplayrequest-properties.md new file mode 100644 index 0000000..35f7228 --- /dev/null +++ b/docs/schema/finishpurchasebygoogleplayrequest-properties.md @@ -0,0 +1,16 @@ +# Untitled undefined type in FinishPurchaseByGooglePlayRequest Schema + +```txt +https://timelimit.io/FinishPurchaseByGooglePlayRequest#/properties +``` + + + + +| Abstract | Extensible | Status | Identifiable | Custom Properties | Additional Properties | Access Restrictions | Defined In | +| :------------------ | ---------- | -------------- | ----------------------- | :---------------- | --------------------- | ------------------- | ----------------------------------------------------------------------------------------------------------------------- | +| Can be instantiated | No | Unknown status | Unknown identifiability | Forbidden | Allowed | none | [FinishPurchaseByGooglePlayRequest.schema.json\*](FinishPurchaseByGooglePlayRequest.schema.json "open original schema") | + +## properties Type + +unknown diff --git a/docs/schema/finishpurchasebygoogleplayrequest.md b/docs/schema/finishpurchasebygoogleplayrequest.md new file mode 100644 index 0000000..d7ac08c --- /dev/null +++ b/docs/schema/finishpurchasebygoogleplayrequest.md @@ -0,0 +1,74 @@ +# FinishPurchaseByGooglePlayRequest Schema + +```txt +https://timelimit.io/FinishPurchaseByGooglePlayRequest +``` + + + + +| Abstract | Extensible | Status | Identifiable | Custom Properties | Additional Properties | Access Restrictions | Defined In | +| :------------------ | ---------- | -------------- | ------------ | :---------------- | --------------------- | ------------------- | --------------------------------------------------------------------------------------------------------------------- | +| Can be instantiated | Yes | Unknown status | No | Forbidden | Forbidden | none | [FinishPurchaseByGooglePlayRequest.schema.json](FinishPurchaseByGooglePlayRequest.schema.json "open original schema") | + +## FinishPurchaseByGooglePlayRequest Type + +`object` ([FinishPurchaseByGooglePlayRequest](finishpurchasebygoogleplayrequest.md)) + +# FinishPurchaseByGooglePlayRequest Definitions + +# FinishPurchaseByGooglePlayRequest Properties + +| Property | Type | Required | Nullable | Defined by | +| :---------------------------------- | -------- | -------- | -------------- | :--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | +| [deviceAuthToken](#deviceAuthToken) | `string` | Required | cannot be null | [FinishPurchaseByGooglePlayRequest](finishpurchasebygoogleplayrequest-properties-deviceauthtoken.md "https://timelimit.io/FinishPurchaseByGooglePlayRequest#/properties/deviceAuthToken") | +| [receipt](#receipt) | `string` | Required | cannot be null | [FinishPurchaseByGooglePlayRequest](finishpurchasebygoogleplayrequest-properties-receipt.md "https://timelimit.io/FinishPurchaseByGooglePlayRequest#/properties/receipt") | +| [signature](#signature) | `string` | Required | cannot be null | [FinishPurchaseByGooglePlayRequest](finishpurchasebygoogleplayrequest-properties-signature.md "https://timelimit.io/FinishPurchaseByGooglePlayRequest#/properties/signature") | + +## deviceAuthToken + + + + +`deviceAuthToken` + +- is required +- Type: `string` +- cannot be null +- defined in: [FinishPurchaseByGooglePlayRequest](finishpurchasebygoogleplayrequest-properties-deviceauthtoken.md "https://timelimit.io/FinishPurchaseByGooglePlayRequest#/properties/deviceAuthToken") + +### deviceAuthToken Type + +`string` + +## receipt + + + + +`receipt` + +- is required +- Type: `string` +- cannot be null +- defined in: [FinishPurchaseByGooglePlayRequest](finishpurchasebygoogleplayrequest-properties-receipt.md "https://timelimit.io/FinishPurchaseByGooglePlayRequest#/properties/receipt") + +### receipt Type + +`string` + +## signature + + + + +`signature` + +- is required +- Type: `string` +- cannot be null +- defined in: [FinishPurchaseByGooglePlayRequest](finishpurchasebygoogleplayrequest-properties-signature.md "https://timelimit.io/FinishPurchaseByGooglePlayRequest#/properties/signature") + +### signature Type + +`string` diff --git a/docs/schema/linkparentmailaddressrequest-definitions.md b/docs/schema/linkparentmailaddressrequest-definitions.md new file mode 100644 index 0000000..c4ecfdf --- /dev/null +++ b/docs/schema/linkparentmailaddressrequest-definitions.md @@ -0,0 +1,16 @@ +# Untitled undefined type in LinkParentMailAddressRequest Schema + +```txt +https://timelimit.io/LinkParentMailAddressRequest#/definitions +``` + + + + +| Abstract | Extensible | Status | Identifiable | Custom Properties | Additional Properties | Access Restrictions | Defined In | +| :------------------ | ---------- | -------------- | ----------------------- | :---------------- | --------------------- | ------------------- | ------------------------------------------------------------------------------------------------------------- | +| Can be instantiated | No | Unknown status | Unknown identifiability | Forbidden | Allowed | none | [LinkParentMailAddressRequest.schema.json\*](LinkParentMailAddressRequest.schema.json "open original schema") | + +## definitions Type + +unknown diff --git a/docs/schema/linkparentmailaddressrequest-properties-deviceauthtoken.md b/docs/schema/linkparentmailaddressrequest-properties-deviceauthtoken.md new file mode 100644 index 0000000..24fb5a4 --- /dev/null +++ b/docs/schema/linkparentmailaddressrequest-properties-deviceauthtoken.md @@ -0,0 +1,16 @@ +# Untitled string in LinkParentMailAddressRequest Schema + +```txt +https://timelimit.io/LinkParentMailAddressRequest#/properties/deviceAuthToken +``` + + + + +| Abstract | Extensible | Status | Identifiable | Custom Properties | Additional Properties | Access Restrictions | Defined In | +| :------------------ | ---------- | -------------- | ----------------------- | :---------------- | --------------------- | ------------------- | ------------------------------------------------------------------------------------------------------------- | +| Can be instantiated | No | Unknown status | Unknown identifiability | Forbidden | Allowed | none | [LinkParentMailAddressRequest.schema.json\*](LinkParentMailAddressRequest.schema.json "open original schema") | + +## deviceAuthToken Type + +`string` diff --git a/docs/schema/linkparentmailaddressrequest-properties-mailauthtoken.md b/docs/schema/linkparentmailaddressrequest-properties-mailauthtoken.md new file mode 100644 index 0000000..4971cfa --- /dev/null +++ b/docs/schema/linkparentmailaddressrequest-properties-mailauthtoken.md @@ -0,0 +1,16 @@ +# Untitled string in LinkParentMailAddressRequest Schema + +```txt +https://timelimit.io/LinkParentMailAddressRequest#/properties/mailAuthToken +``` + + + + +| Abstract | Extensible | Status | Identifiable | Custom Properties | Additional Properties | Access Restrictions | Defined In | +| :------------------ | ---------- | -------------- | ----------------------- | :---------------- | --------------------- | ------------------- | ------------------------------------------------------------------------------------------------------------- | +| Can be instantiated | No | Unknown status | Unknown identifiability | Forbidden | Allowed | none | [LinkParentMailAddressRequest.schema.json\*](LinkParentMailAddressRequest.schema.json "open original schema") | + +## mailAuthToken Type + +`string` diff --git a/docs/schema/linkparentmailaddressrequest-properties-parentpasswordsecondhash.md b/docs/schema/linkparentmailaddressrequest-properties-parentpasswordsecondhash.md new file mode 100644 index 0000000..eb9a7df --- /dev/null +++ b/docs/schema/linkparentmailaddressrequest-properties-parentpasswordsecondhash.md @@ -0,0 +1,16 @@ +# Untitled string in LinkParentMailAddressRequest Schema + +```txt +https://timelimit.io/LinkParentMailAddressRequest#/properties/parentPasswordSecondHash +``` + + + + +| Abstract | Extensible | Status | Identifiable | Custom Properties | Additional Properties | Access Restrictions | Defined In | +| :------------------ | ---------- | -------------- | ----------------------- | :---------------- | --------------------- | ------------------- | ------------------------------------------------------------------------------------------------------------- | +| Can be instantiated | No | Unknown status | Unknown identifiability | Forbidden | Allowed | none | [LinkParentMailAddressRequest.schema.json\*](LinkParentMailAddressRequest.schema.json "open original schema") | + +## parentPasswordSecondHash Type + +`string` diff --git a/docs/schema/linkparentmailaddressrequest-properties-parentuserid.md b/docs/schema/linkparentmailaddressrequest-properties-parentuserid.md new file mode 100644 index 0000000..db0c8f6 --- /dev/null +++ b/docs/schema/linkparentmailaddressrequest-properties-parentuserid.md @@ -0,0 +1,16 @@ +# Untitled string in LinkParentMailAddressRequest Schema + +```txt +https://timelimit.io/LinkParentMailAddressRequest#/properties/parentUserId +``` + + + + +| Abstract | Extensible | Status | Identifiable | Custom Properties | Additional Properties | Access Restrictions | Defined In | +| :------------------ | ---------- | -------------- | ----------------------- | :---------------- | --------------------- | ------------------- | ------------------------------------------------------------------------------------------------------------- | +| Can be instantiated | No | Unknown status | Unknown identifiability | Forbidden | Allowed | none | [LinkParentMailAddressRequest.schema.json\*](LinkParentMailAddressRequest.schema.json "open original schema") | + +## parentUserId Type + +`string` diff --git a/docs/schema/linkparentmailaddressrequest-properties.md b/docs/schema/linkparentmailaddressrequest-properties.md new file mode 100644 index 0000000..3abe06b --- /dev/null +++ b/docs/schema/linkparentmailaddressrequest-properties.md @@ -0,0 +1,16 @@ +# Untitled undefined type in LinkParentMailAddressRequest Schema + +```txt +https://timelimit.io/LinkParentMailAddressRequest#/properties +``` + + + + +| Abstract | Extensible | Status | Identifiable | Custom Properties | Additional Properties | Access Restrictions | Defined In | +| :------------------ | ---------- | -------------- | ----------------------- | :---------------- | --------------------- | ------------------- | ------------------------------------------------------------------------------------------------------------- | +| Can be instantiated | No | Unknown status | Unknown identifiability | Forbidden | Allowed | none | [LinkParentMailAddressRequest.schema.json\*](LinkParentMailAddressRequest.schema.json "open original schema") | + +## properties Type + +unknown diff --git a/docs/schema/linkparentmailaddressrequest.md b/docs/schema/linkparentmailaddressrequest.md new file mode 100644 index 0000000..a77e98f --- /dev/null +++ b/docs/schema/linkparentmailaddressrequest.md @@ -0,0 +1,91 @@ +# LinkParentMailAddressRequest Schema + +```txt +https://timelimit.io/LinkParentMailAddressRequest +``` + + + + +| Abstract | Extensible | Status | Identifiable | Custom Properties | Additional Properties | Access Restrictions | Defined In | +| :------------------ | ---------- | -------------- | ------------ | :---------------- | --------------------- | ------------------- | ----------------------------------------------------------------------------------------------------------- | +| Can be instantiated | Yes | Unknown status | No | Forbidden | Forbidden | none | [LinkParentMailAddressRequest.schema.json](LinkParentMailAddressRequest.schema.json "open original schema") | + +## LinkParentMailAddressRequest Type + +`object` ([LinkParentMailAddressRequest](linkparentmailaddressrequest.md)) + +# LinkParentMailAddressRequest Definitions + +# LinkParentMailAddressRequest Properties + +| Property | Type | Required | Nullable | Defined by | +| :---------------------------------------------------- | -------- | -------- | -------------- | :------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ | +| [mailAuthToken](#mailAuthToken) | `string` | Required | cannot be null | [LinkParentMailAddressRequest](linkparentmailaddressrequest-properties-mailauthtoken.md "https://timelimit.io/LinkParentMailAddressRequest#/properties/mailAuthToken") | +| [deviceAuthToken](#deviceAuthToken) | `string` | Required | cannot be null | [LinkParentMailAddressRequest](linkparentmailaddressrequest-properties-deviceauthtoken.md "https://timelimit.io/LinkParentMailAddressRequest#/properties/deviceAuthToken") | +| [parentUserId](#parentUserId) | `string` | Required | cannot be null | [LinkParentMailAddressRequest](linkparentmailaddressrequest-properties-parentuserid.md "https://timelimit.io/LinkParentMailAddressRequest#/properties/parentUserId") | +| [parentPasswordSecondHash](#parentPasswordSecondHash) | `string` | Required | cannot be null | [LinkParentMailAddressRequest](linkparentmailaddressrequest-properties-parentpasswordsecondhash.md "https://timelimit.io/LinkParentMailAddressRequest#/properties/parentPasswordSecondHash") | + +## mailAuthToken + + + + +`mailAuthToken` + +- is required +- Type: `string` +- cannot be null +- defined in: [LinkParentMailAddressRequest](linkparentmailaddressrequest-properties-mailauthtoken.md "https://timelimit.io/LinkParentMailAddressRequest#/properties/mailAuthToken") + +### mailAuthToken Type + +`string` + +## deviceAuthToken + + + + +`deviceAuthToken` + +- is required +- Type: `string` +- cannot be null +- defined in: [LinkParentMailAddressRequest](linkparentmailaddressrequest-properties-deviceauthtoken.md "https://timelimit.io/LinkParentMailAddressRequest#/properties/deviceAuthToken") + +### deviceAuthToken Type + +`string` + +## parentUserId + + + + +`parentUserId` + +- is required +- Type: `string` +- cannot be null +- defined in: [LinkParentMailAddressRequest](linkparentmailaddressrequest-properties-parentuserid.md "https://timelimit.io/LinkParentMailAddressRequest#/properties/parentUserId") + +### parentUserId Type + +`string` + +## parentPasswordSecondHash + + + + +`parentPasswordSecondHash` + +- is required +- Type: `string` +- cannot be null +- defined in: [LinkParentMailAddressRequest](linkparentmailaddressrequest-properties-parentpasswordsecondhash.md "https://timelimit.io/LinkParentMailAddressRequest#/properties/parentPasswordSecondHash") + +### parentPasswordSecondHash Type + +`string` diff --git a/docs/schema/mailauthtokenrequestbody-definitions.md b/docs/schema/mailauthtokenrequestbody-definitions.md new file mode 100644 index 0000000..fc82839 --- /dev/null +++ b/docs/schema/mailauthtokenrequestbody-definitions.md @@ -0,0 +1,16 @@ +# Untitled undefined type in MailAuthTokenRequestBody Schema + +```txt +https://timelimit.io/MailAuthTokenRequestBody#/definitions +``` + + + + +| Abstract | Extensible | Status | Identifiable | Custom Properties | Additional Properties | Access Restrictions | Defined In | +| :------------------ | ---------- | -------------- | ----------------------- | :---------------- | --------------------- | ------------------- | ----------------------------------------------------------------------------------------------------- | +| Can be instantiated | No | Unknown status | Unknown identifiability | Forbidden | Allowed | none | [MailAuthTokenRequestBody.schema.json\*](MailAuthTokenRequestBody.schema.json "open original schema") | + +## definitions Type + +unknown diff --git a/docs/schema/mailauthtokenrequestbody-properties-mailauthtoken.md b/docs/schema/mailauthtokenrequestbody-properties-mailauthtoken.md new file mode 100644 index 0000000..2b0950a --- /dev/null +++ b/docs/schema/mailauthtokenrequestbody-properties-mailauthtoken.md @@ -0,0 +1,16 @@ +# Untitled string in MailAuthTokenRequestBody Schema + +```txt +https://timelimit.io/MailAuthTokenRequestBody#/properties/mailAuthToken +``` + + + + +| Abstract | Extensible | Status | Identifiable | Custom Properties | Additional Properties | Access Restrictions | Defined In | +| :------------------ | ---------- | -------------- | ----------------------- | :---------------- | --------------------- | ------------------- | ----------------------------------------------------------------------------------------------------- | +| Can be instantiated | No | Unknown status | Unknown identifiability | Forbidden | Allowed | none | [MailAuthTokenRequestBody.schema.json\*](MailAuthTokenRequestBody.schema.json "open original schema") | + +## mailAuthToken Type + +`string` diff --git a/docs/schema/mailauthtokenrequestbody-properties.md b/docs/schema/mailauthtokenrequestbody-properties.md new file mode 100644 index 0000000..3e6b545 --- /dev/null +++ b/docs/schema/mailauthtokenrequestbody-properties.md @@ -0,0 +1,16 @@ +# Untitled undefined type in MailAuthTokenRequestBody Schema + +```txt +https://timelimit.io/MailAuthTokenRequestBody#/properties +``` + + + + +| Abstract | Extensible | Status | Identifiable | Custom Properties | Additional Properties | Access Restrictions | Defined In | +| :------------------ | ---------- | -------------- | ----------------------- | :---------------- | --------------------- | ------------------- | ----------------------------------------------------------------------------------------------------- | +| Can be instantiated | No | Unknown status | Unknown identifiability | Forbidden | Allowed | none | [MailAuthTokenRequestBody.schema.json\*](MailAuthTokenRequestBody.schema.json "open original schema") | + +## properties Type + +unknown diff --git a/docs/schema/mailauthtokenrequestbody.md b/docs/schema/mailauthtokenrequestbody.md new file mode 100644 index 0000000..5033f6c --- /dev/null +++ b/docs/schema/mailauthtokenrequestbody.md @@ -0,0 +1,40 @@ +# MailAuthTokenRequestBody Schema + +```txt +https://timelimit.io/MailAuthTokenRequestBody +``` + + + + +| Abstract | Extensible | Status | Identifiable | Custom Properties | Additional Properties | Access Restrictions | Defined In | +| :------------------ | ---------- | -------------- | ------------ | :---------------- | --------------------- | ------------------- | --------------------------------------------------------------------------------------------------- | +| Can be instantiated | Yes | Unknown status | No | Forbidden | Forbidden | none | [MailAuthTokenRequestBody.schema.json](MailAuthTokenRequestBody.schema.json "open original schema") | + +## MailAuthTokenRequestBody Type + +`object` ([MailAuthTokenRequestBody](mailauthtokenrequestbody.md)) + +# MailAuthTokenRequestBody Definitions + +# MailAuthTokenRequestBody Properties + +| Property | Type | Required | Nullable | Defined by | +| :------------------------------ | -------- | -------- | -------------- | :-------------------------------------------------------------------------------------------------------------------------------------------------------------- | +| [mailAuthToken](#mailAuthToken) | `string` | Required | cannot be null | [MailAuthTokenRequestBody](mailauthtokenrequestbody-properties-mailauthtoken.md "https://timelimit.io/MailAuthTokenRequestBody#/properties/mailAuthToken") | + +## mailAuthToken + + + + +`mailAuthToken` + +- is required +- Type: `string` +- cannot be null +- defined in: [MailAuthTokenRequestBody](mailauthtokenrequestbody-properties-mailauthtoken.md "https://timelimit.io/MailAuthTokenRequestBody#/properties/mailAuthToken") + +### mailAuthToken Type + +`string` diff --git a/docs/schema/recoverparentpasswordrequest-definitions-parentpassword-properties-hash.md b/docs/schema/recoverparentpasswordrequest-definitions-parentpassword-properties-hash.md new file mode 100644 index 0000000..653ead6 --- /dev/null +++ b/docs/schema/recoverparentpasswordrequest-definitions-parentpassword-properties-hash.md @@ -0,0 +1,16 @@ +# Untitled string in RecoverParentPasswordRequest Schema + +```txt +https://timelimit.io/RecoverParentPasswordRequest#/definitions/ParentPassword/properties/hash +``` + + + + +| Abstract | Extensible | Status | Identifiable | Custom Properties | Additional Properties | Access Restrictions | Defined In | +| :------------------ | ---------- | -------------- | ----------------------- | :---------------- | --------------------- | ------------------- | ------------------------------------------------------------------------------------------------------------- | +| Can be instantiated | No | Unknown status | Unknown identifiability | Forbidden | Allowed | none | [RecoverParentPasswordRequest.schema.json\*](RecoverParentPasswordRequest.schema.json "open original schema") | + +## hash Type + +`string` diff --git a/docs/schema/recoverparentpasswordrequest-definitions-parentpassword-properties-secondhash.md b/docs/schema/recoverparentpasswordrequest-definitions-parentpassword-properties-secondhash.md new file mode 100644 index 0000000..bc8d3d9 --- /dev/null +++ b/docs/schema/recoverparentpasswordrequest-definitions-parentpassword-properties-secondhash.md @@ -0,0 +1,16 @@ +# Untitled string in RecoverParentPasswordRequest Schema + +```txt +https://timelimit.io/RecoverParentPasswordRequest#/definitions/ParentPassword/properties/secondHash +``` + + + + +| Abstract | Extensible | Status | Identifiable | Custom Properties | Additional Properties | Access Restrictions | Defined In | +| :------------------ | ---------- | -------------- | ----------------------- | :---------------- | --------------------- | ------------------- | ------------------------------------------------------------------------------------------------------------- | +| Can be instantiated | No | Unknown status | Unknown identifiability | Forbidden | Allowed | none | [RecoverParentPasswordRequest.schema.json\*](RecoverParentPasswordRequest.schema.json "open original schema") | + +## secondHash Type + +`string` diff --git a/docs/schema/recoverparentpasswordrequest-definitions-parentpassword-properties-secondsalt.md b/docs/schema/recoverparentpasswordrequest-definitions-parentpassword-properties-secondsalt.md new file mode 100644 index 0000000..f80356c --- /dev/null +++ b/docs/schema/recoverparentpasswordrequest-definitions-parentpassword-properties-secondsalt.md @@ -0,0 +1,16 @@ +# Untitled string in RecoverParentPasswordRequest Schema + +```txt +https://timelimit.io/RecoverParentPasswordRequest#/definitions/ParentPassword/properties/secondSalt +``` + + + + +| Abstract | Extensible | Status | Identifiable | Custom Properties | Additional Properties | Access Restrictions | Defined In | +| :------------------ | ---------- | -------------- | ----------------------- | :---------------- | --------------------- | ------------------- | ------------------------------------------------------------------------------------------------------------- | +| Can be instantiated | No | Unknown status | Unknown identifiability | Forbidden | Allowed | none | [RecoverParentPasswordRequest.schema.json\*](RecoverParentPasswordRequest.schema.json "open original schema") | + +## secondSalt Type + +`string` diff --git a/docs/schema/recoverparentpasswordrequest-definitions-parentpassword-properties.md b/docs/schema/recoverparentpasswordrequest-definitions-parentpassword-properties.md new file mode 100644 index 0000000..490fc40 --- /dev/null +++ b/docs/schema/recoverparentpasswordrequest-definitions-parentpassword-properties.md @@ -0,0 +1,16 @@ +# Untitled undefined type in RecoverParentPasswordRequest Schema + +```txt +https://timelimit.io/RecoverParentPasswordRequest#/definitions/ParentPassword/properties +``` + + + + +| Abstract | Extensible | Status | Identifiable | Custom Properties | Additional Properties | Access Restrictions | Defined In | +| :------------------ | ---------- | -------------- | ----------------------- | :---------------- | --------------------- | ------------------- | ------------------------------------------------------------------------------------------------------------- | +| Can be instantiated | No | Unknown status | Unknown identifiability | Forbidden | Allowed | none | [RecoverParentPasswordRequest.schema.json\*](RecoverParentPasswordRequest.schema.json "open original schema") | + +## properties Type + +unknown diff --git a/docs/schema/recoverparentpasswordrequest-definitions-parentpassword.md b/docs/schema/recoverparentpasswordrequest-definitions-parentpassword.md new file mode 100644 index 0000000..37e30ba --- /dev/null +++ b/docs/schema/recoverparentpasswordrequest-definitions-parentpassword.md @@ -0,0 +1,72 @@ +# ParentPassword Schema + +```txt +https://timelimit.io/RecoverParentPasswordRequest#/definitions/ParentPassword +``` + + + + +| Abstract | Extensible | Status | Identifiable | Custom Properties | Additional Properties | Access Restrictions | Defined In | +| :------------------ | ---------- | -------------- | ------------ | :---------------- | --------------------- | ------------------- | ------------------------------------------------------------------------------------------------------------- | +| Can be instantiated | No | Unknown status | No | Forbidden | Forbidden | none | [RecoverParentPasswordRequest.schema.json\*](RecoverParentPasswordRequest.schema.json "open original schema") | + +## ParentPassword Type + +`object` ([ParentPassword](recoverparentpasswordrequest-definitions-parentpassword.md)) + +# ParentPassword Properties + +| Property | Type | Required | Nullable | Defined by | +| :------------------------ | -------- | -------- | -------------- | :-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | +| [hash](#hash) | `string` | Required | cannot be null | [RecoverParentPasswordRequest](recoverparentpasswordrequest-definitions-parentpassword-properties-hash.md "https://timelimit.io/RecoverParentPasswordRequest#/definitions/ParentPassword/properties/hash") | +| [secondHash](#secondHash) | `string` | Required | cannot be null | [RecoverParentPasswordRequest](recoverparentpasswordrequest-definitions-parentpassword-properties-secondhash.md "https://timelimit.io/RecoverParentPasswordRequest#/definitions/ParentPassword/properties/secondHash") | +| [secondSalt](#secondSalt) | `string` | Required | cannot be null | [RecoverParentPasswordRequest](recoverparentpasswordrequest-definitions-parentpassword-properties-secondsalt.md "https://timelimit.io/RecoverParentPasswordRequest#/definitions/ParentPassword/properties/secondSalt") | + +## hash + + + + +`hash` + +- is required +- Type: `string` +- cannot be null +- defined in: [RecoverParentPasswordRequest](recoverparentpasswordrequest-definitions-parentpassword-properties-hash.md "https://timelimit.io/RecoverParentPasswordRequest#/definitions/ParentPassword/properties/hash") + +### hash Type + +`string` + +## secondHash + + + + +`secondHash` + +- is required +- Type: `string` +- cannot be null +- defined in: [RecoverParentPasswordRequest](recoverparentpasswordrequest-definitions-parentpassword-properties-secondhash.md "https://timelimit.io/RecoverParentPasswordRequest#/definitions/ParentPassword/properties/secondHash") + +### secondHash Type + +`string` + +## secondSalt + + + + +`secondSalt` + +- is required +- Type: `string` +- cannot be null +- defined in: [RecoverParentPasswordRequest](recoverparentpasswordrequest-definitions-parentpassword-properties-secondsalt.md "https://timelimit.io/RecoverParentPasswordRequest#/definitions/ParentPassword/properties/secondSalt") + +### secondSalt Type + +`string` diff --git a/docs/schema/recoverparentpasswordrequest-definitions.md b/docs/schema/recoverparentpasswordrequest-definitions.md new file mode 100644 index 0000000..183907a --- /dev/null +++ b/docs/schema/recoverparentpasswordrequest-definitions.md @@ -0,0 +1,16 @@ +# Untitled undefined type in RecoverParentPasswordRequest Schema + +```txt +https://timelimit.io/RecoverParentPasswordRequest#/definitions +``` + + + + +| Abstract | Extensible | Status | Identifiable | Custom Properties | Additional Properties | Access Restrictions | Defined In | +| :------------------ | ---------- | -------------- | ----------------------- | :---------------- | --------------------- | ------------------- | ------------------------------------------------------------------------------------------------------------- | +| Can be instantiated | No | Unknown status | Unknown identifiability | Forbidden | Allowed | none | [RecoverParentPasswordRequest.schema.json\*](RecoverParentPasswordRequest.schema.json "open original schema") | + +## definitions Type + +unknown diff --git a/docs/schema/recoverparentpasswordrequest-properties-mailauthtoken.md b/docs/schema/recoverparentpasswordrequest-properties-mailauthtoken.md new file mode 100644 index 0000000..4138027 --- /dev/null +++ b/docs/schema/recoverparentpasswordrequest-properties-mailauthtoken.md @@ -0,0 +1,16 @@ +# Untitled string in RecoverParentPasswordRequest Schema + +```txt +https://timelimit.io/RecoverParentPasswordRequest#/properties/mailAuthToken +``` + + + + +| Abstract | Extensible | Status | Identifiable | Custom Properties | Additional Properties | Access Restrictions | Defined In | +| :------------------ | ---------- | -------------- | ----------------------- | :---------------- | --------------------- | ------------------- | ------------------------------------------------------------------------------------------------------------- | +| Can be instantiated | No | Unknown status | Unknown identifiability | Forbidden | Allowed | none | [RecoverParentPasswordRequest.schema.json\*](RecoverParentPasswordRequest.schema.json "open original schema") | + +## mailAuthToken Type + +`string` diff --git a/docs/schema/recoverparentpasswordrequest-properties.md b/docs/schema/recoverparentpasswordrequest-properties.md new file mode 100644 index 0000000..23a5c9b --- /dev/null +++ b/docs/schema/recoverparentpasswordrequest-properties.md @@ -0,0 +1,16 @@ +# Untitled undefined type in RecoverParentPasswordRequest Schema + +```txt +https://timelimit.io/RecoverParentPasswordRequest#/properties +``` + + + + +| Abstract | Extensible | Status | Identifiable | Custom Properties | Additional Properties | Access Restrictions | Defined In | +| :------------------ | ---------- | -------------- | ----------------------- | :---------------- | --------------------- | ------------------- | ------------------------------------------------------------------------------------------------------------- | +| Can be instantiated | No | Unknown status | Unknown identifiability | Forbidden | Allowed | none | [RecoverParentPasswordRequest.schema.json\*](RecoverParentPasswordRequest.schema.json "open original schema") | + +## properties Type + +unknown diff --git a/docs/schema/recoverparentpasswordrequest.md b/docs/schema/recoverparentpasswordrequest.md new file mode 100644 index 0000000..d4c12eb --- /dev/null +++ b/docs/schema/recoverparentpasswordrequest.md @@ -0,0 +1,119 @@ +# RecoverParentPasswordRequest Schema + +```txt +https://timelimit.io/RecoverParentPasswordRequest +``` + + + + +| Abstract | Extensible | Status | Identifiable | Custom Properties | Additional Properties | Access Restrictions | Defined In | +| :------------------ | ---------- | -------------- | ------------ | :---------------- | --------------------- | ------------------- | ----------------------------------------------------------------------------------------------------------- | +| Can be instantiated | Yes | Unknown status | No | Forbidden | Forbidden | none | [RecoverParentPasswordRequest.schema.json](RecoverParentPasswordRequest.schema.json "open original schema") | + +## RecoverParentPasswordRequest Type + +`object` ([RecoverParentPasswordRequest](recoverparentpasswordrequest.md)) + +# RecoverParentPasswordRequest Definitions + +## Definitions group ParentPassword + +Reference this group by using + +```json +{"$ref":"https://timelimit.io/RecoverParentPasswordRequest#/definitions/ParentPassword"} +``` + +| Property | Type | Required | Nullable | Defined by | +| :------------------------ | -------- | -------- | -------------- | :-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | +| [hash](#hash) | `string` | Required | cannot be null | [RecoverParentPasswordRequest](recoverparentpasswordrequest-definitions-parentpassword-properties-hash.md "https://timelimit.io/RecoverParentPasswordRequest#/definitions/ParentPassword/properties/hash") | +| [secondHash](#secondHash) | `string` | Required | cannot be null | [RecoverParentPasswordRequest](recoverparentpasswordrequest-definitions-parentpassword-properties-secondhash.md "https://timelimit.io/RecoverParentPasswordRequest#/definitions/ParentPassword/properties/secondHash") | +| [secondSalt](#secondSalt) | `string` | Required | cannot be null | [RecoverParentPasswordRequest](recoverparentpasswordrequest-definitions-parentpassword-properties-secondsalt.md "https://timelimit.io/RecoverParentPasswordRequest#/definitions/ParentPassword/properties/secondSalt") | + +### hash + + + + +`hash` + +- is required +- Type: `string` +- cannot be null +- defined in: [RecoverParentPasswordRequest](recoverparentpasswordrequest-definitions-parentpassword-properties-hash.md "https://timelimit.io/RecoverParentPasswordRequest#/definitions/ParentPassword/properties/hash") + +#### hash Type + +`string` + +### secondHash + + + + +`secondHash` + +- is required +- Type: `string` +- cannot be null +- defined in: [RecoverParentPasswordRequest](recoverparentpasswordrequest-definitions-parentpassword-properties-secondhash.md "https://timelimit.io/RecoverParentPasswordRequest#/definitions/ParentPassword/properties/secondHash") + +#### secondHash Type + +`string` + +### secondSalt + + + + +`secondSalt` + +- is required +- Type: `string` +- cannot be null +- defined in: [RecoverParentPasswordRequest](recoverparentpasswordrequest-definitions-parentpassword-properties-secondsalt.md "https://timelimit.io/RecoverParentPasswordRequest#/definitions/ParentPassword/properties/secondSalt") + +#### secondSalt Type + +`string` + +# RecoverParentPasswordRequest Properties + +| Property | Type | Required | Nullable | Defined by | +| :------------------------------ | -------- | -------- | -------------- | :-------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | +| [mailAuthToken](#mailAuthToken) | `string` | Required | cannot be null | [RecoverParentPasswordRequest](recoverparentpasswordrequest-properties-mailauthtoken.md "https://timelimit.io/RecoverParentPasswordRequest#/properties/mailAuthToken") | +| [password](#password) | `object` | Required | cannot be null | [RecoverParentPasswordRequest](recoverparentpasswordrequest-definitions-parentpassword.md "https://timelimit.io/RecoverParentPasswordRequest#/properties/password") | + +## mailAuthToken + + + + +`mailAuthToken` + +- is required +- Type: `string` +- cannot be null +- defined in: [RecoverParentPasswordRequest](recoverparentpasswordrequest-properties-mailauthtoken.md "https://timelimit.io/RecoverParentPasswordRequest#/properties/mailAuthToken") + +### mailAuthToken Type + +`string` + +## password + + + + +`password` + +- is required +- Type: `object` ([ParentPassword](recoverparentpasswordrequest-definitions-parentpassword.md)) +- cannot be null +- defined in: [RecoverParentPasswordRequest](recoverparentpasswordrequest-definitions-parentpassword.md "https://timelimit.io/RecoverParentPasswordRequest#/properties/password") + +### password Type + +`object` ([ParentPassword](recoverparentpasswordrequest-definitions-parentpassword.md)) diff --git a/docs/schema/registerchilddevicerequest-definitions-newdeviceinfo-properties-model.md b/docs/schema/registerchilddevicerequest-definitions-newdeviceinfo-properties-model.md new file mode 100644 index 0000000..21a9ed3 --- /dev/null +++ b/docs/schema/registerchilddevicerequest-definitions-newdeviceinfo-properties-model.md @@ -0,0 +1,16 @@ +# Untitled string in RegisterChildDeviceRequest Schema + +```txt +https://timelimit.io/RegisterChildDeviceRequest#/definitions/NewDeviceInfo/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 | [RegisterChildDeviceRequest.schema.json\*](RegisterChildDeviceRequest.schema.json "open original schema") | + +## model Type + +`string` diff --git a/docs/schema/registerchilddevicerequest-definitions-newdeviceinfo-properties.md b/docs/schema/registerchilddevicerequest-definitions-newdeviceinfo-properties.md new file mode 100644 index 0000000..85ed7f6 --- /dev/null +++ b/docs/schema/registerchilddevicerequest-definitions-newdeviceinfo-properties.md @@ -0,0 +1,16 @@ +# Untitled undefined type in RegisterChildDeviceRequest Schema + +```txt +https://timelimit.io/RegisterChildDeviceRequest#/definitions/NewDeviceInfo/properties +``` + + + + +| Abstract | Extensible | Status | Identifiable | Custom Properties | Additional Properties | Access Restrictions | Defined In | +| :------------------ | ---------- | -------------- | ----------------------- | :---------------- | --------------------- | ------------------- | --------------------------------------------------------------------------------------------------------- | +| Can be instantiated | No | Unknown status | Unknown identifiability | Forbidden | Allowed | none | [RegisterChildDeviceRequest.schema.json\*](RegisterChildDeviceRequest.schema.json "open original schema") | + +## properties Type + +unknown diff --git a/docs/schema/registerchilddevicerequest-definitions-newdeviceinfo.md b/docs/schema/registerchilddevicerequest-definitions-newdeviceinfo.md new file mode 100644 index 0000000..4648862 --- /dev/null +++ b/docs/schema/registerchilddevicerequest-definitions-newdeviceinfo.md @@ -0,0 +1,38 @@ +# NewDeviceInfo Schema + +```txt +https://timelimit.io/RegisterChildDeviceRequest#/definitions/NewDeviceInfo +``` + + + + +| Abstract | Extensible | Status | Identifiable | Custom Properties | Additional Properties | Access Restrictions | Defined In | +| :------------------ | ---------- | -------------- | ------------ | :---------------- | --------------------- | ------------------- | --------------------------------------------------------------------------------------------------------- | +| Can be instantiated | No | Unknown status | No | Forbidden | Forbidden | none | [RegisterChildDeviceRequest.schema.json\*](RegisterChildDeviceRequest.schema.json "open original schema") | + +## NewDeviceInfo Type + +`object` ([NewDeviceInfo](registerchilddevicerequest-definitions-newdeviceinfo.md)) + +# NewDeviceInfo Properties + +| Property | Type | Required | Nullable | Defined by | +| :-------------- | -------- | -------- | -------------- | :-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | +| [model](#model) | `string` | Required | cannot be null | [RegisterChildDeviceRequest](registerchilddevicerequest-definitions-newdeviceinfo-properties-model.md "https://timelimit.io/RegisterChildDeviceRequest#/definitions/NewDeviceInfo/properties/model") | + +## model + + + + +`model` + +- is required +- Type: `string` +- cannot be null +- defined in: [RegisterChildDeviceRequest](registerchilddevicerequest-definitions-newdeviceinfo-properties-model.md "https://timelimit.io/RegisterChildDeviceRequest#/definitions/NewDeviceInfo/properties/model") + +### model Type + +`string` diff --git a/docs/schema/registerchilddevicerequest-definitions.md b/docs/schema/registerchilddevicerequest-definitions.md new file mode 100644 index 0000000..a5d0b19 --- /dev/null +++ b/docs/schema/registerchilddevicerequest-definitions.md @@ -0,0 +1,16 @@ +# Untitled undefined type in RegisterChildDeviceRequest Schema + +```txt +https://timelimit.io/RegisterChildDeviceRequest#/definitions +``` + + + + +| Abstract | Extensible | Status | Identifiable | Custom Properties | Additional Properties | Access Restrictions | Defined In | +| :------------------ | ---------- | -------------- | ----------------------- | :---------------- | --------------------- | ------------------- | --------------------------------------------------------------------------------------------------------- | +| Can be instantiated | No | Unknown status | Unknown identifiability | Forbidden | Allowed | none | [RegisterChildDeviceRequest.schema.json\*](RegisterChildDeviceRequest.schema.json "open original schema") | + +## definitions Type + +unknown diff --git a/docs/schema/registerchilddevicerequest-properties-devicename.md b/docs/schema/registerchilddevicerequest-properties-devicename.md new file mode 100644 index 0000000..821cebc --- /dev/null +++ b/docs/schema/registerchilddevicerequest-properties-devicename.md @@ -0,0 +1,16 @@ +# Untitled string in RegisterChildDeviceRequest Schema + +```txt +https://timelimit.io/RegisterChildDeviceRequest#/properties/deviceName +``` + + + + +| Abstract | Extensible | Status | Identifiable | Custom Properties | Additional Properties | Access Restrictions | Defined In | +| :------------------ | ---------- | -------------- | ----------------------- | :---------------- | --------------------- | ------------------- | --------------------------------------------------------------------------------------------------------- | +| Can be instantiated | No | Unknown status | Unknown identifiability | Forbidden | Allowed | none | [RegisterChildDeviceRequest.schema.json\*](RegisterChildDeviceRequest.schema.json "open original schema") | + +## deviceName Type + +`string` diff --git a/docs/schema/registerchilddevicerequest-properties-registertoken.md b/docs/schema/registerchilddevicerequest-properties-registertoken.md new file mode 100644 index 0000000..ab96454 --- /dev/null +++ b/docs/schema/registerchilddevicerequest-properties-registertoken.md @@ -0,0 +1,16 @@ +# Untitled string in RegisterChildDeviceRequest Schema + +```txt +https://timelimit.io/RegisterChildDeviceRequest#/properties/registerToken +``` + + + + +| Abstract | Extensible | Status | Identifiable | Custom Properties | Additional Properties | Access Restrictions | Defined In | +| :------------------ | ---------- | -------------- | ----------------------- | :---------------- | --------------------- | ------------------- | --------------------------------------------------------------------------------------------------------- | +| Can be instantiated | No | Unknown status | Unknown identifiability | Forbidden | Allowed | none | [RegisterChildDeviceRequest.schema.json\*](RegisterChildDeviceRequest.schema.json "open original schema") | + +## registerToken Type + +`string` diff --git a/docs/schema/registerchilddevicerequest-properties.md b/docs/schema/registerchilddevicerequest-properties.md new file mode 100644 index 0000000..53d481c --- /dev/null +++ b/docs/schema/registerchilddevicerequest-properties.md @@ -0,0 +1,16 @@ +# Untitled undefined type in RegisterChildDeviceRequest Schema + +```txt +https://timelimit.io/RegisterChildDeviceRequest#/properties +``` + + + + +| Abstract | Extensible | Status | Identifiable | Custom Properties | Additional Properties | Access Restrictions | Defined In | +| :------------------ | ---------- | -------------- | ----------------------- | :---------------- | --------------------- | ------------------- | --------------------------------------------------------------------------------------------------------- | +| Can be instantiated | No | Unknown status | Unknown identifiability | Forbidden | Allowed | none | [RegisterChildDeviceRequest.schema.json\*](RegisterChildDeviceRequest.schema.json "open original schema") | + +## properties Type + +unknown diff --git a/docs/schema/registerchilddevicerequest.md b/docs/schema/registerchilddevicerequest.md new file mode 100644 index 0000000..6e2d892 --- /dev/null +++ b/docs/schema/registerchilddevicerequest.md @@ -0,0 +1,102 @@ +# RegisterChildDeviceRequest Schema + +```txt +https://timelimit.io/RegisterChildDeviceRequest +``` + + + + +| Abstract | Extensible | Status | Identifiable | Custom Properties | Additional Properties | Access Restrictions | Defined In | +| :------------------ | ---------- | -------------- | ------------ | :---------------- | --------------------- | ------------------- | ------------------------------------------------------------------------------------------------------- | +| Can be instantiated | Yes | Unknown status | No | Forbidden | Forbidden | none | [RegisterChildDeviceRequest.schema.json](RegisterChildDeviceRequest.schema.json "open original schema") | + +## RegisterChildDeviceRequest Type + +`object` ([RegisterChildDeviceRequest](registerchilddevicerequest.md)) + +# RegisterChildDeviceRequest Definitions + +## Definitions group NewDeviceInfo + +Reference this group by using + +```json +{"$ref":"https://timelimit.io/RegisterChildDeviceRequest#/definitions/NewDeviceInfo"} +``` + +| Property | Type | Required | Nullable | Defined by | +| :-------------- | -------- | -------- | -------------- | :-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | +| [model](#model) | `string` | Required | cannot be null | [RegisterChildDeviceRequest](registerchilddevicerequest-definitions-newdeviceinfo-properties-model.md "https://timelimit.io/RegisterChildDeviceRequest#/definitions/NewDeviceInfo/properties/model") | + +### model + + + + +`model` + +- is required +- Type: `string` +- cannot be null +- defined in: [RegisterChildDeviceRequest](registerchilddevicerequest-definitions-newdeviceinfo-properties-model.md "https://timelimit.io/RegisterChildDeviceRequest#/definitions/NewDeviceInfo/properties/model") + +#### model Type + +`string` + +# RegisterChildDeviceRequest Properties + +| Property | Type | Required | Nullable | Defined by | +| :------------------------------ | -------- | -------- | -------------- | :-------------------------------------------------------------------------------------------------------------------------------------------------------------------- | +| [registerToken](#registerToken) | `string` | Required | cannot be null | [RegisterChildDeviceRequest](registerchilddevicerequest-properties-registertoken.md "https://timelimit.io/RegisterChildDeviceRequest#/properties/registerToken") | +| [childDevice](#childDevice) | `object` | Required | cannot be null | [RegisterChildDeviceRequest](registerchilddevicerequest-definitions-newdeviceinfo.md "https://timelimit.io/RegisterChildDeviceRequest#/properties/childDevice") | +| [deviceName](#deviceName) | `string` | Required | cannot be null | [RegisterChildDeviceRequest](registerchilddevicerequest-properties-devicename.md "https://timelimit.io/RegisterChildDeviceRequest#/properties/deviceName") | + +## registerToken + + + + +`registerToken` + +- is required +- Type: `string` +- cannot be null +- defined in: [RegisterChildDeviceRequest](registerchilddevicerequest-properties-registertoken.md "https://timelimit.io/RegisterChildDeviceRequest#/properties/registerToken") + +### registerToken Type + +`string` + +## childDevice + + + + +`childDevice` + +- is required +- Type: `object` ([NewDeviceInfo](registerchilddevicerequest-definitions-newdeviceinfo.md)) +- cannot be null +- defined in: [RegisterChildDeviceRequest](registerchilddevicerequest-definitions-newdeviceinfo.md "https://timelimit.io/RegisterChildDeviceRequest#/properties/childDevice") + +### childDevice Type + +`object` ([NewDeviceInfo](registerchilddevicerequest-definitions-newdeviceinfo.md)) + +## deviceName + + + + +`deviceName` + +- is required +- Type: `string` +- cannot be null +- defined in: [RegisterChildDeviceRequest](registerchilddevicerequest-properties-devicename.md "https://timelimit.io/RegisterChildDeviceRequest#/properties/deviceName") + +### deviceName Type + +`string` diff --git a/docs/schema/removedevicerequest-definitions.md b/docs/schema/removedevicerequest-definitions.md new file mode 100644 index 0000000..3496729 --- /dev/null +++ b/docs/schema/removedevicerequest-definitions.md @@ -0,0 +1,16 @@ +# Untitled undefined type in RemoveDeviceRequest Schema + +```txt +https://timelimit.io/RemoveDeviceRequest#/definitions +``` + + + + +| Abstract | Extensible | Status | Identifiable | Custom Properties | Additional Properties | Access Restrictions | Defined In | +| :------------------ | ---------- | -------------- | ----------------------- | :---------------- | --------------------- | ------------------- | ------------------------------------------------------------------------------------------- | +| Can be instantiated | No | Unknown status | Unknown identifiability | Forbidden | Allowed | none | [RemoveDeviceRequest.schema.json\*](RemoveDeviceRequest.schema.json "open original schema") | + +## definitions Type + +unknown diff --git a/docs/schema/removedevicerequest-properties-deviceauthtoken.md b/docs/schema/removedevicerequest-properties-deviceauthtoken.md new file mode 100644 index 0000000..2e9e12c --- /dev/null +++ b/docs/schema/removedevicerequest-properties-deviceauthtoken.md @@ -0,0 +1,16 @@ +# Untitled string in RemoveDeviceRequest Schema + +```txt +https://timelimit.io/RemoveDeviceRequest#/properties/deviceAuthToken +``` + + + + +| Abstract | Extensible | Status | Identifiable | Custom Properties | Additional Properties | Access Restrictions | Defined In | +| :------------------ | ---------- | -------------- | ----------------------- | :---------------- | --------------------- | ------------------- | ------------------------------------------------------------------------------------------- | +| Can be instantiated | No | Unknown status | Unknown identifiability | Forbidden | Allowed | none | [RemoveDeviceRequest.schema.json\*](RemoveDeviceRequest.schema.json "open original schema") | + +## deviceAuthToken Type + +`string` diff --git a/docs/schema/removedevicerequest-properties-deviceid.md b/docs/schema/removedevicerequest-properties-deviceid.md new file mode 100644 index 0000000..c729561 --- /dev/null +++ b/docs/schema/removedevicerequest-properties-deviceid.md @@ -0,0 +1,16 @@ +# Untitled string in RemoveDeviceRequest Schema + +```txt +https://timelimit.io/RemoveDeviceRequest#/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 | [RemoveDeviceRequest.schema.json\*](RemoveDeviceRequest.schema.json "open original schema") | + +## deviceId Type + +`string` diff --git a/docs/schema/removedevicerequest-properties-parentpasswordsecondhash.md b/docs/schema/removedevicerequest-properties-parentpasswordsecondhash.md new file mode 100644 index 0000000..64d3a46 --- /dev/null +++ b/docs/schema/removedevicerequest-properties-parentpasswordsecondhash.md @@ -0,0 +1,16 @@ +# Untitled string in RemoveDeviceRequest Schema + +```txt +https://timelimit.io/RemoveDeviceRequest#/properties/parentPasswordSecondHash +``` + + + + +| Abstract | Extensible | Status | Identifiable | Custom Properties | Additional Properties | Access Restrictions | Defined In | +| :------------------ | ---------- | -------------- | ----------------------- | :---------------- | --------------------- | ------------------- | ------------------------------------------------------------------------------------------- | +| Can be instantiated | No | Unknown status | Unknown identifiability | Forbidden | Allowed | none | [RemoveDeviceRequest.schema.json\*](RemoveDeviceRequest.schema.json "open original schema") | + +## parentPasswordSecondHash Type + +`string` diff --git a/docs/schema/removedevicerequest-properties-parentuserid.md b/docs/schema/removedevicerequest-properties-parentuserid.md new file mode 100644 index 0000000..9e07c53 --- /dev/null +++ b/docs/schema/removedevicerequest-properties-parentuserid.md @@ -0,0 +1,16 @@ +# Untitled string in RemoveDeviceRequest Schema + +```txt +https://timelimit.io/RemoveDeviceRequest#/properties/parentUserId +``` + + + + +| Abstract | Extensible | Status | Identifiable | Custom Properties | Additional Properties | Access Restrictions | Defined In | +| :------------------ | ---------- | -------------- | ----------------------- | :---------------- | --------------------- | ------------------- | ------------------------------------------------------------------------------------------- | +| Can be instantiated | No | Unknown status | Unknown identifiability | Forbidden | Allowed | none | [RemoveDeviceRequest.schema.json\*](RemoveDeviceRequest.schema.json "open original schema") | + +## parentUserId Type + +`string` diff --git a/docs/schema/removedevicerequest-properties.md b/docs/schema/removedevicerequest-properties.md new file mode 100644 index 0000000..ba11ecb --- /dev/null +++ b/docs/schema/removedevicerequest-properties.md @@ -0,0 +1,16 @@ +# Untitled undefined type in RemoveDeviceRequest Schema + +```txt +https://timelimit.io/RemoveDeviceRequest#/properties +``` + + + + +| Abstract | Extensible | Status | Identifiable | Custom Properties | Additional Properties | Access Restrictions | Defined In | +| :------------------ | ---------- | -------------- | ----------------------- | :---------------- | --------------------- | ------------------- | ------------------------------------------------------------------------------------------- | +| Can be instantiated | No | Unknown status | Unknown identifiability | Forbidden | Allowed | none | [RemoveDeviceRequest.schema.json\*](RemoveDeviceRequest.schema.json "open original schema") | + +## properties Type + +unknown diff --git a/docs/schema/removedevicerequest.md b/docs/schema/removedevicerequest.md new file mode 100644 index 0000000..85bc497 --- /dev/null +++ b/docs/schema/removedevicerequest.md @@ -0,0 +1,91 @@ +# RemoveDeviceRequest Schema + +```txt +https://timelimit.io/RemoveDeviceRequest +``` + + + + +| Abstract | Extensible | Status | Identifiable | Custom Properties | Additional Properties | Access Restrictions | Defined In | +| :------------------ | ---------- | -------------- | ------------ | :---------------- | --------------------- | ------------------- | ----------------------------------------------------------------------------------------- | +| Can be instantiated | Yes | Unknown status | No | Forbidden | Forbidden | none | [RemoveDeviceRequest.schema.json](RemoveDeviceRequest.schema.json "open original schema") | + +## RemoveDeviceRequest Type + +`object` ([RemoveDeviceRequest](removedevicerequest.md)) + +# RemoveDeviceRequest Definitions + +# RemoveDeviceRequest Properties + +| Property | Type | Required | Nullable | Defined by | +| :---------------------------------------------------- | -------- | -------- | -------------- | :--------------------------------------------------------------------------------------------------------------------------------------------------------------------- | +| [deviceAuthToken](#deviceAuthToken) | `string` | Required | cannot be null | [RemoveDeviceRequest](removedevicerequest-properties-deviceauthtoken.md "https://timelimit.io/RemoveDeviceRequest#/properties/deviceAuthToken") | +| [parentUserId](#parentUserId) | `string` | Required | cannot be null | [RemoveDeviceRequest](removedevicerequest-properties-parentuserid.md "https://timelimit.io/RemoveDeviceRequest#/properties/parentUserId") | +| [parentPasswordSecondHash](#parentPasswordSecondHash) | `string` | Required | cannot be null | [RemoveDeviceRequest](removedevicerequest-properties-parentpasswordsecondhash.md "https://timelimit.io/RemoveDeviceRequest#/properties/parentPasswordSecondHash") | +| [deviceId](#deviceId) | `string` | Required | cannot be null | [RemoveDeviceRequest](removedevicerequest-properties-deviceid.md "https://timelimit.io/RemoveDeviceRequest#/properties/deviceId") | + +## deviceAuthToken + + + + +`deviceAuthToken` + +- is required +- Type: `string` +- cannot be null +- defined in: [RemoveDeviceRequest](removedevicerequest-properties-deviceauthtoken.md "https://timelimit.io/RemoveDeviceRequest#/properties/deviceAuthToken") + +### deviceAuthToken Type + +`string` + +## parentUserId + + + + +`parentUserId` + +- is required +- Type: `string` +- cannot be null +- defined in: [RemoveDeviceRequest](removedevicerequest-properties-parentuserid.md "https://timelimit.io/RemoveDeviceRequest#/properties/parentUserId") + +### parentUserId Type + +`string` + +## parentPasswordSecondHash + + + + +`parentPasswordSecondHash` + +- is required +- Type: `string` +- cannot be null +- defined in: [RemoveDeviceRequest](removedevicerequest-properties-parentpasswordsecondhash.md "https://timelimit.io/RemoveDeviceRequest#/properties/parentPasswordSecondHash") + +### parentPasswordSecondHash Type + +`string` + +## deviceId + + + + +`deviceId` + +- is required +- Type: `string` +- cannot be null +- defined in: [RemoveDeviceRequest](removedevicerequest-properties-deviceid.md "https://timelimit.io/RemoveDeviceRequest#/properties/deviceId") + +### deviceId Type + +`string` diff --git a/docs/schema/requestwithauthtoken-definitions.md b/docs/schema/requestwithauthtoken-definitions.md new file mode 100644 index 0000000..0b56dd4 --- /dev/null +++ b/docs/schema/requestwithauthtoken-definitions.md @@ -0,0 +1,16 @@ +# Untitled undefined type in RequestWithAuthToken Schema + +```txt +https://timelimit.io/RequestWithAuthToken#/definitions +``` + + + + +| Abstract | Extensible | Status | Identifiable | Custom Properties | Additional Properties | Access Restrictions | Defined In | +| :------------------ | ---------- | -------------- | ----------------------- | :---------------- | --------------------- | ------------------- | --------------------------------------------------------------------------------------------- | +| Can be instantiated | No | Unknown status | Unknown identifiability | Forbidden | Allowed | none | [RequestWithAuthToken.schema.json\*](RequestWithAuthToken.schema.json "open original schema") | + +## definitions Type + +unknown diff --git a/docs/schema/requestwithauthtoken-properties-deviceauthtoken.md b/docs/schema/requestwithauthtoken-properties-deviceauthtoken.md new file mode 100644 index 0000000..f3a5a6d --- /dev/null +++ b/docs/schema/requestwithauthtoken-properties-deviceauthtoken.md @@ -0,0 +1,16 @@ +# Untitled string in RequestWithAuthToken Schema + +```txt +https://timelimit.io/RequestWithAuthToken#/properties/deviceAuthToken +``` + + + + +| Abstract | Extensible | Status | Identifiable | Custom Properties | Additional Properties | Access Restrictions | Defined In | +| :------------------ | ---------- | -------------- | ----------------------- | :---------------- | --------------------- | ------------------- | --------------------------------------------------------------------------------------------- | +| Can be instantiated | No | Unknown status | Unknown identifiability | Forbidden | Allowed | none | [RequestWithAuthToken.schema.json\*](RequestWithAuthToken.schema.json "open original schema") | + +## deviceAuthToken Type + +`string` diff --git a/docs/schema/requestwithauthtoken-properties.md b/docs/schema/requestwithauthtoken-properties.md new file mode 100644 index 0000000..056df84 --- /dev/null +++ b/docs/schema/requestwithauthtoken-properties.md @@ -0,0 +1,16 @@ +# Untitled undefined type in RequestWithAuthToken Schema + +```txt +https://timelimit.io/RequestWithAuthToken#/properties +``` + + + + +| Abstract | Extensible | Status | Identifiable | Custom Properties | Additional Properties | Access Restrictions | Defined In | +| :------------------ | ---------- | -------------- | ----------------------- | :---------------- | --------------------- | ------------------- | --------------------------------------------------------------------------------------------- | +| Can be instantiated | No | Unknown status | Unknown identifiability | Forbidden | Allowed | none | [RequestWithAuthToken.schema.json\*](RequestWithAuthToken.schema.json "open original schema") | + +## properties Type + +unknown diff --git a/docs/schema/requestwithauthtoken.md b/docs/schema/requestwithauthtoken.md new file mode 100644 index 0000000..cae25be --- /dev/null +++ b/docs/schema/requestwithauthtoken.md @@ -0,0 +1,40 @@ +# RequestWithAuthToken Schema + +```txt +https://timelimit.io/RequestWithAuthToken +``` + + + + +| Abstract | Extensible | Status | Identifiable | Custom Properties | Additional Properties | Access Restrictions | Defined In | +| :------------------ | ---------- | -------------- | ------------ | :---------------- | --------------------- | ------------------- | ------------------------------------------------------------------------------------------- | +| Can be instantiated | Yes | Unknown status | No | Forbidden | Forbidden | none | [RequestWithAuthToken.schema.json](RequestWithAuthToken.schema.json "open original schema") | + +## RequestWithAuthToken Type + +`object` ([RequestWithAuthToken](requestwithauthtoken.md)) + +# RequestWithAuthToken Definitions + +# RequestWithAuthToken Properties + +| Property | Type | Required | Nullable | Defined by | +| :---------------------------------- | -------- | -------- | -------------- | :------------------------------------------------------------------------------------------------------------------------------------------------------ | +| [deviceAuthToken](#deviceAuthToken) | `string` | Required | cannot be null | [RequestWithAuthToken](requestwithauthtoken-properties-deviceauthtoken.md "https://timelimit.io/RequestWithAuthToken#/properties/deviceAuthToken") | + +## deviceAuthToken + + + + +`deviceAuthToken` + +- is required +- Type: `string` +- cannot be null +- defined in: [RequestWithAuthToken](requestwithauthtoken-properties-deviceauthtoken.md "https://timelimit.io/RequestWithAuthToken#/properties/deviceAuthToken") + +### deviceAuthToken Type + +`string` diff --git a/docs/schema/sendmaillogincoderequest-definitions.md b/docs/schema/sendmaillogincoderequest-definitions.md new file mode 100644 index 0000000..0a47c09 --- /dev/null +++ b/docs/schema/sendmaillogincoderequest-definitions.md @@ -0,0 +1,16 @@ +# Untitled undefined type in SendMailLoginCodeRequest Schema + +```txt +https://timelimit.io/SendMailLoginCodeRequest#/definitions +``` + + + + +| Abstract | Extensible | Status | Identifiable | Custom Properties | Additional Properties | Access Restrictions | Defined In | +| :------------------ | ---------- | -------------- | ----------------------- | :---------------- | --------------------- | ------------------- | ----------------------------------------------------------------------------------------------------- | +| Can be instantiated | No | Unknown status | Unknown identifiability | Forbidden | Allowed | none | [SendMailLoginCodeRequest.schema.json\*](SendMailLoginCodeRequest.schema.json "open original schema") | + +## definitions Type + +unknown diff --git a/docs/schema/sendmaillogincoderequest-properties-locale.md b/docs/schema/sendmaillogincoderequest-properties-locale.md new file mode 100644 index 0000000..7757adb --- /dev/null +++ b/docs/schema/sendmaillogincoderequest-properties-locale.md @@ -0,0 +1,16 @@ +# Untitled string in SendMailLoginCodeRequest Schema + +```txt +https://timelimit.io/SendMailLoginCodeRequest#/properties/locale +``` + + + + +| Abstract | Extensible | Status | Identifiable | Custom Properties | Additional Properties | Access Restrictions | Defined In | +| :------------------ | ---------- | -------------- | ----------------------- | :---------------- | --------------------- | ------------------- | ----------------------------------------------------------------------------------------------------- | +| Can be instantiated | No | Unknown status | Unknown identifiability | Forbidden | Allowed | none | [SendMailLoginCodeRequest.schema.json\*](SendMailLoginCodeRequest.schema.json "open original schema") | + +## locale Type + +`string` diff --git a/docs/schema/sendmaillogincoderequest-properties-mail.md b/docs/schema/sendmaillogincoderequest-properties-mail.md new file mode 100644 index 0000000..5550a9e --- /dev/null +++ b/docs/schema/sendmaillogincoderequest-properties-mail.md @@ -0,0 +1,16 @@ +# Untitled string in SendMailLoginCodeRequest Schema + +```txt +https://timelimit.io/SendMailLoginCodeRequest#/properties/mail +``` + + + + +| Abstract | Extensible | Status | Identifiable | Custom Properties | Additional Properties | Access Restrictions | Defined In | +| :------------------ | ---------- | -------------- | ----------------------- | :---------------- | --------------------- | ------------------- | ----------------------------------------------------------------------------------------------------- | +| Can be instantiated | No | Unknown status | Unknown identifiability | Forbidden | Allowed | none | [SendMailLoginCodeRequest.schema.json\*](SendMailLoginCodeRequest.schema.json "open original schema") | + +## mail Type + +`string` diff --git a/docs/schema/sendmaillogincoderequest-properties.md b/docs/schema/sendmaillogincoderequest-properties.md new file mode 100644 index 0000000..fc5a692 --- /dev/null +++ b/docs/schema/sendmaillogincoderequest-properties.md @@ -0,0 +1,16 @@ +# Untitled undefined type in SendMailLoginCodeRequest Schema + +```txt +https://timelimit.io/SendMailLoginCodeRequest#/properties +``` + + + + +| Abstract | Extensible | Status | Identifiable | Custom Properties | Additional Properties | Access Restrictions | Defined In | +| :------------------ | ---------- | -------------- | ----------------------- | :---------------- | --------------------- | ------------------- | ----------------------------------------------------------------------------------------------------- | +| Can be instantiated | No | Unknown status | Unknown identifiability | Forbidden | Allowed | none | [SendMailLoginCodeRequest.schema.json\*](SendMailLoginCodeRequest.schema.json "open original schema") | + +## properties Type + +unknown diff --git a/docs/schema/sendmaillogincoderequest.md b/docs/schema/sendmaillogincoderequest.md new file mode 100644 index 0000000..33f55b5 --- /dev/null +++ b/docs/schema/sendmaillogincoderequest.md @@ -0,0 +1,57 @@ +# SendMailLoginCodeRequest Schema + +```txt +https://timelimit.io/SendMailLoginCodeRequest +``` + + + + +| Abstract | Extensible | Status | Identifiable | Custom Properties | Additional Properties | Access Restrictions | Defined In | +| :------------------ | ---------- | -------------- | ------------ | :---------------- | --------------------- | ------------------- | --------------------------------------------------------------------------------------------------- | +| Can be instantiated | Yes | Unknown status | No | Forbidden | Forbidden | none | [SendMailLoginCodeRequest.schema.json](SendMailLoginCodeRequest.schema.json "open original schema") | + +## SendMailLoginCodeRequest Type + +`object` ([SendMailLoginCodeRequest](sendmaillogincoderequest.md)) + +# SendMailLoginCodeRequest Definitions + +# SendMailLoginCodeRequest Properties + +| Property | Type | Required | Nullable | Defined by | +| :---------------- | -------- | -------- | -------------- | :------------------------------------------------------------------------------------------------------------------------------------------------ | +| [mail](#mail) | `string` | Required | cannot be null | [SendMailLoginCodeRequest](sendmaillogincoderequest-properties-mail.md "https://timelimit.io/SendMailLoginCodeRequest#/properties/mail") | +| [locale](#locale) | `string` | Required | cannot be null | [SendMailLoginCodeRequest](sendmaillogincoderequest-properties-locale.md "https://timelimit.io/SendMailLoginCodeRequest#/properties/locale") | + +## mail + + + + +`mail` + +- is required +- Type: `string` +- cannot be null +- defined in: [SendMailLoginCodeRequest](sendmaillogincoderequest-properties-mail.md "https://timelimit.io/SendMailLoginCodeRequest#/properties/mail") + +### mail Type + +`string` + +## locale + + + + +`locale` + +- is required +- Type: `string` +- cannot be null +- defined in: [SendMailLoginCodeRequest](sendmaillogincoderequest-properties-locale.md "https://timelimit.io/SendMailLoginCodeRequest#/properties/locale") + +### locale Type + +`string` diff --git a/docs/schema/serializedapplogicaction-definitions-apprecommendation.md b/docs/schema/serializedapplogicaction-definitions-apprecommendation.md new file mode 100644 index 0000000..56893fb --- /dev/null +++ b/docs/schema/serializedapplogicaction-definitions-apprecommendation.md @@ -0,0 +1,26 @@ +# AppRecommendation Schema + +```txt +https://timelimit.io/SerializedAppLogicAction#/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 | [SerializedAppLogicAction.schema.json\*](SerializedAppLogicAction.schema.json "open original schema") | + +## AppRecommendation Type + +`string` ([AppRecommendation](serializedapplogicaction-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"` | | diff --git a/docs/schema/serializedapplogicaction-definitions-serialiezdtrieddisablingdeviceadminaction-properties-type.md b/docs/schema/serializedapplogicaction-definitions-serialiezdtrieddisablingdeviceadminaction-properties-type.md new file mode 100644 index 0000000..4054064 --- /dev/null +++ b/docs/schema/serializedapplogicaction-definitions-serialiezdtrieddisablingdeviceadminaction-properties-type.md @@ -0,0 +1,24 @@ +# Untitled string in SerializedAppLogicAction Schema + +```txt +https://timelimit.io/SerializedAppLogicAction#/definitions/SerialiezdTriedDisablingDeviceAdminAction/properties/type +``` + + + + +| Abstract | Extensible | Status | Identifiable | Custom Properties | Additional Properties | Access Restrictions | Defined In | +| :------------------ | ---------- | -------------- | ----------------------- | :---------------- | --------------------- | ------------------- | ----------------------------------------------------------------------------------------------------- | +| Can be instantiated | No | Unknown status | Unknown identifiability | Forbidden | Allowed | none | [SerializedAppLogicAction.schema.json\*](SerializedAppLogicAction.schema.json "open original schema") | + +## type Type + +`string` + +## type Constraints + +**enum**: the value of this property must be equal to one of the following values: + +| Value | Explanation | +| :------------------------------- | ----------- | +| `"TRIED_DISABLING_DEVICE_ADMIN"` | | diff --git a/docs/schema/serializedapplogicaction-definitions-serialiezdtrieddisablingdeviceadminaction-properties.md b/docs/schema/serializedapplogicaction-definitions-serialiezdtrieddisablingdeviceadminaction-properties.md new file mode 100644 index 0000000..a9ea65a --- /dev/null +++ b/docs/schema/serializedapplogicaction-definitions-serialiezdtrieddisablingdeviceadminaction-properties.md @@ -0,0 +1,16 @@ +# Untitled undefined type in SerializedAppLogicAction Schema + +```txt +https://timelimit.io/SerializedAppLogicAction#/definitions/SerialiezdTriedDisablingDeviceAdminAction/properties +``` + + + + +| Abstract | Extensible | Status | Identifiable | Custom Properties | Additional Properties | Access Restrictions | Defined In | +| :------------------ | ---------- | -------------- | ----------------------- | :---------------- | --------------------- | ------------------- | ----------------------------------------------------------------------------------------------------- | +| Can be instantiated | No | Unknown status | Unknown identifiability | Forbidden | Allowed | none | [SerializedAppLogicAction.schema.json\*](SerializedAppLogicAction.schema.json "open original schema") | + +## properties Type + +unknown diff --git a/docs/schema/serializedapplogicaction-definitions-serialiezdtrieddisablingdeviceadminaction.md b/docs/schema/serializedapplogicaction-definitions-serialiezdtrieddisablingdeviceadminaction.md new file mode 100644 index 0000000..e58030c --- /dev/null +++ b/docs/schema/serializedapplogicaction-definitions-serialiezdtrieddisablingdeviceadminaction.md @@ -0,0 +1,46 @@ +# SerialiezdTriedDisablingDeviceAdminAction Schema + +```txt +https://timelimit.io/SerializedAppLogicAction#/definitions/SerialiezdTriedDisablingDeviceAdminAction +``` + + + + +| Abstract | Extensible | Status | Identifiable | Custom Properties | Additional Properties | Access Restrictions | Defined In | +| :------------------ | ---------- | -------------- | ------------ | :---------------- | --------------------- | ------------------- | ----------------------------------------------------------------------------------------------------- | +| Can be instantiated | No | Unknown status | No | Forbidden | Forbidden | none | [SerializedAppLogicAction.schema.json\*](SerializedAppLogicAction.schema.json "open original schema") | + +## SerialiezdTriedDisablingDeviceAdminAction Type + +`object` ([SerialiezdTriedDisablingDeviceAdminAction](serializedapplogicaction-definitions-serialiezdtrieddisablingdeviceadminaction.md)) + +# SerialiezdTriedDisablingDeviceAdminAction Properties + +| Property | Type | Required | Nullable | Defined by | +| :------------ | -------- | -------- | -------------- | :-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | +| [type](#type) | `string` | Required | cannot be null | [SerializedAppLogicAction](serializedapplogicaction-definitions-serialiezdtrieddisablingdeviceadminaction-properties-type.md "https://timelimit.io/SerializedAppLogicAction#/definitions/SerialiezdTriedDisablingDeviceAdminAction/properties/type") | + +## type + + + + +`type` + +- is required +- Type: `string` +- cannot be null +- defined in: [SerializedAppLogicAction](serializedapplogicaction-definitions-serialiezdtrieddisablingdeviceadminaction-properties-type.md "https://timelimit.io/SerializedAppLogicAction#/definitions/SerialiezdTriedDisablingDeviceAdminAction/properties/type") + +### type Type + +`string` + +### type Constraints + +**enum**: the value of this property must be equal to one of the following values: + +| Value | Explanation | +| :------------------------------- | ----------- | +| `"TRIED_DISABLING_DEVICE_ADMIN"` | | diff --git a/docs/schema/serializedapplogicaction-definitions-serializedaddinstalledappsaction-properties-apps.md b/docs/schema/serializedapplogicaction-definitions-serializedaddinstalledappsaction-properties-apps.md new file mode 100644 index 0000000..dd7de04 --- /dev/null +++ b/docs/schema/serializedapplogicaction-definitions-serializedaddinstalledappsaction-properties-apps.md @@ -0,0 +1,16 @@ +# Untitled array in SerializedAppLogicAction Schema + +```txt +https://timelimit.io/SerializedAppLogicAction#/definitions/SerializedAddInstalledAppsAction/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 | [SerializedAppLogicAction.schema.json\*](SerializedAppLogicAction.schema.json "open original schema") | + +## apps Type + +`object[]` ([SerializedInstalledApp](serializedapplogicaction-definitions-serializedinstalledapp.md)) diff --git a/docs/schema/serializedapplogicaction-definitions-serializedaddinstalledappsaction-properties-type.md b/docs/schema/serializedapplogicaction-definitions-serializedaddinstalledappsaction-properties-type.md new file mode 100644 index 0000000..e3fcea4 --- /dev/null +++ b/docs/schema/serializedapplogicaction-definitions-serializedaddinstalledappsaction-properties-type.md @@ -0,0 +1,24 @@ +# Untitled string in SerializedAppLogicAction Schema + +```txt +https://timelimit.io/SerializedAppLogicAction#/definitions/SerializedAddInstalledAppsAction/properties/type +``` + + + + +| Abstract | Extensible | Status | Identifiable | Custom Properties | Additional Properties | Access Restrictions | Defined In | +| :------------------ | ---------- | -------------- | ----------------------- | :---------------- | --------------------- | ------------------- | ----------------------------------------------------------------------------------------------------- | +| Can be instantiated | No | Unknown status | Unknown identifiability | Forbidden | Allowed | none | [SerializedAppLogicAction.schema.json\*](SerializedAppLogicAction.schema.json "open original schema") | + +## type Type + +`string` + +## type Constraints + +**enum**: the value of this property must be equal to one of the following values: + +| Value | Explanation | +| :--------------------- | ----------- | +| `"ADD_INSTALLED_APPS"` | | diff --git a/docs/schema/serializedapplogicaction-definitions-serializedaddinstalledappsaction-properties.md b/docs/schema/serializedapplogicaction-definitions-serializedaddinstalledappsaction-properties.md new file mode 100644 index 0000000..6db081b --- /dev/null +++ b/docs/schema/serializedapplogicaction-definitions-serializedaddinstalledappsaction-properties.md @@ -0,0 +1,16 @@ +# Untitled undefined type in SerializedAppLogicAction Schema + +```txt +https://timelimit.io/SerializedAppLogicAction#/definitions/SerializedAddInstalledAppsAction/properties +``` + + + + +| Abstract | Extensible | Status | Identifiable | Custom Properties | Additional Properties | Access Restrictions | Defined In | +| :------------------ | ---------- | -------------- | ----------------------- | :---------------- | --------------------- | ------------------- | ----------------------------------------------------------------------------------------------------- | +| Can be instantiated | No | Unknown status | Unknown identifiability | Forbidden | Allowed | none | [SerializedAppLogicAction.schema.json\*](SerializedAppLogicAction.schema.json "open original schema") | + +## properties Type + +unknown diff --git a/docs/schema/serializedapplogicaction-definitions-serializedaddinstalledappsaction.md b/docs/schema/serializedapplogicaction-definitions-serializedaddinstalledappsaction.md new file mode 100644 index 0000000..beee521 --- /dev/null +++ b/docs/schema/serializedapplogicaction-definitions-serializedaddinstalledappsaction.md @@ -0,0 +1,63 @@ +# SerializedAddInstalledAppsAction Schema + +```txt +https://timelimit.io/SerializedAppLogicAction#/definitions/SerializedAddInstalledAppsAction +``` + + + + +| Abstract | Extensible | Status | Identifiable | Custom Properties | Additional Properties | Access Restrictions | Defined In | +| :------------------ | ---------- | -------------- | ------------ | :---------------- | --------------------- | ------------------- | ----------------------------------------------------------------------------------------------------- | +| Can be instantiated | No | Unknown status | No | Forbidden | Forbidden | none | [SerializedAppLogicAction.schema.json\*](SerializedAppLogicAction.schema.json "open original schema") | + +## SerializedAddInstalledAppsAction Type + +`object` ([SerializedAddInstalledAppsAction](serializedapplogicaction-definitions-serializedaddinstalledappsaction.md)) + +# SerializedAddInstalledAppsAction Properties + +| Property | Type | Required | Nullable | Defined by | +| :------------ | -------- | -------- | -------------- | :-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | +| [type](#type) | `string` | Required | cannot be null | [SerializedAppLogicAction](serializedapplogicaction-definitions-serializedaddinstalledappsaction-properties-type.md "https://timelimit.io/SerializedAppLogicAction#/definitions/SerializedAddInstalledAppsAction/properties/type") | +| [apps](#apps) | `array` | Required | cannot be null | [SerializedAppLogicAction](serializedapplogicaction-definitions-serializedaddinstalledappsaction-properties-apps.md "https://timelimit.io/SerializedAppLogicAction#/definitions/SerializedAddInstalledAppsAction/properties/apps") | + +## type + + + + +`type` + +- is required +- Type: `string` +- cannot be null +- defined in: [SerializedAppLogicAction](serializedapplogicaction-definitions-serializedaddinstalledappsaction-properties-type.md "https://timelimit.io/SerializedAppLogicAction#/definitions/SerializedAddInstalledAppsAction/properties/type") + +### type Type + +`string` + +### type Constraints + +**enum**: the value of this property must be equal to one of the following values: + +| Value | Explanation | +| :--------------------- | ----------- | +| `"ADD_INSTALLED_APPS"` | | + +## apps + + + + +`apps` + +- is required +- Type: `object[]` ([SerializedInstalledApp](serializedapplogicaction-definitions-serializedinstalledapp.md)) +- cannot be null +- defined in: [SerializedAppLogicAction](serializedapplogicaction-definitions-serializedaddinstalledappsaction-properties-apps.md "https://timelimit.io/SerializedAppLogicAction#/definitions/SerializedAddInstalledAppsAction/properties/apps") + +### apps Type + +`object[]` ([SerializedInstalledApp](serializedapplogicaction-definitions-serializedinstalledapp.md)) diff --git a/docs/schema/serializedapplogicaction-definitions-serializedaddusedtimeaction-properties-categoryid.md b/docs/schema/serializedapplogicaction-definitions-serializedaddusedtimeaction-properties-categoryid.md new file mode 100644 index 0000000..e128890 --- /dev/null +++ b/docs/schema/serializedapplogicaction-definitions-serializedaddusedtimeaction-properties-categoryid.md @@ -0,0 +1,16 @@ +# Untitled string in SerializedAppLogicAction Schema + +```txt +https://timelimit.io/SerializedAppLogicAction#/definitions/SerializedAddUsedTimeAction/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 | [SerializedAppLogicAction.schema.json\*](SerializedAppLogicAction.schema.json "open original schema") | + +## categoryId Type + +`string` diff --git a/docs/schema/serializedapplogicaction-definitions-serializedaddusedtimeaction-properties-day.md b/docs/schema/serializedapplogicaction-definitions-serializedaddusedtimeaction-properties-day.md new file mode 100644 index 0000000..9a94457 --- /dev/null +++ b/docs/schema/serializedapplogicaction-definitions-serializedaddusedtimeaction-properties-day.md @@ -0,0 +1,16 @@ +# Untitled number in SerializedAppLogicAction Schema + +```txt +https://timelimit.io/SerializedAppLogicAction#/definitions/SerializedAddUsedTimeAction/properties/day +``` + + + + +| Abstract | Extensible | Status | Identifiable | Custom Properties | Additional Properties | Access Restrictions | Defined In | +| :------------------ | ---------- | -------------- | ----------------------- | :---------------- | --------------------- | ------------------- | ----------------------------------------------------------------------------------------------------- | +| Can be instantiated | No | Unknown status | Unknown identifiability | Forbidden | Allowed | none | [SerializedAppLogicAction.schema.json\*](SerializedAppLogicAction.schema.json "open original schema") | + +## day Type + +`number` diff --git a/docs/schema/serializedapplogicaction-definitions-serializedaddusedtimeaction-properties-extratimetosubtract.md b/docs/schema/serializedapplogicaction-definitions-serializedaddusedtimeaction-properties-extratimetosubtract.md new file mode 100644 index 0000000..9a2006a --- /dev/null +++ b/docs/schema/serializedapplogicaction-definitions-serializedaddusedtimeaction-properties-extratimetosubtract.md @@ -0,0 +1,16 @@ +# Untitled number in SerializedAppLogicAction Schema + +```txt +https://timelimit.io/SerializedAppLogicAction#/definitions/SerializedAddUsedTimeAction/properties/extraTimeToSubtract +``` + + + + +| Abstract | Extensible | Status | Identifiable | Custom Properties | Additional Properties | Access Restrictions | Defined In | +| :------------------ | ---------- | -------------- | ----------------------- | :---------------- | --------------------- | ------------------- | ----------------------------------------------------------------------------------------------------- | +| Can be instantiated | No | Unknown status | Unknown identifiability | Forbidden | Allowed | none | [SerializedAppLogicAction.schema.json\*](SerializedAppLogicAction.schema.json "open original schema") | + +## extraTimeToSubtract Type + +`number` diff --git a/docs/schema/serializedapplogicaction-definitions-serializedaddusedtimeaction-properties-timetoadd.md b/docs/schema/serializedapplogicaction-definitions-serializedaddusedtimeaction-properties-timetoadd.md new file mode 100644 index 0000000..e10448e --- /dev/null +++ b/docs/schema/serializedapplogicaction-definitions-serializedaddusedtimeaction-properties-timetoadd.md @@ -0,0 +1,16 @@ +# Untitled number in SerializedAppLogicAction Schema + +```txt +https://timelimit.io/SerializedAppLogicAction#/definitions/SerializedAddUsedTimeAction/properties/timeToAdd +``` + + + + +| Abstract | Extensible | Status | Identifiable | Custom Properties | Additional Properties | Access Restrictions | Defined In | +| :------------------ | ---------- | -------------- | ----------------------- | :---------------- | --------------------- | ------------------- | ----------------------------------------------------------------------------------------------------- | +| Can be instantiated | No | Unknown status | Unknown identifiability | Forbidden | Allowed | none | [SerializedAppLogicAction.schema.json\*](SerializedAppLogicAction.schema.json "open original schema") | + +## timeToAdd Type + +`number` diff --git a/docs/schema/serializedapplogicaction-definitions-serializedaddusedtimeaction-properties-type.md b/docs/schema/serializedapplogicaction-definitions-serializedaddusedtimeaction-properties-type.md new file mode 100644 index 0000000..26882e8 --- /dev/null +++ b/docs/schema/serializedapplogicaction-definitions-serializedaddusedtimeaction-properties-type.md @@ -0,0 +1,24 @@ +# Untitled string in SerializedAppLogicAction Schema + +```txt +https://timelimit.io/SerializedAppLogicAction#/definitions/SerializedAddUsedTimeAction/properties/type +``` + + + + +| Abstract | Extensible | Status | Identifiable | Custom Properties | Additional Properties | Access Restrictions | Defined In | +| :------------------ | ---------- | -------------- | ----------------------- | :---------------- | --------------------- | ------------------- | ----------------------------------------------------------------------------------------------------- | +| Can be instantiated | No | Unknown status | Unknown identifiability | Forbidden | Allowed | none | [SerializedAppLogicAction.schema.json\*](SerializedAppLogicAction.schema.json "open original schema") | + +## type Type + +`string` + +## type Constraints + +**enum**: the value of this property must be equal to one of the following values: + +| Value | Explanation | +| :---------------- | ----------- | +| `"ADD_USED_TIME"` | | diff --git a/docs/schema/serializedapplogicaction-definitions-serializedaddusedtimeaction-properties.md b/docs/schema/serializedapplogicaction-definitions-serializedaddusedtimeaction-properties.md new file mode 100644 index 0000000..991c788 --- /dev/null +++ b/docs/schema/serializedapplogicaction-definitions-serializedaddusedtimeaction-properties.md @@ -0,0 +1,16 @@ +# Untitled undefined type in SerializedAppLogicAction Schema + +```txt +https://timelimit.io/SerializedAppLogicAction#/definitions/SerializedAddUsedTimeAction/properties +``` + + + + +| Abstract | Extensible | Status | Identifiable | Custom Properties | Additional Properties | Access Restrictions | Defined In | +| :------------------ | ---------- | -------------- | ----------------------- | :---------------- | --------------------- | ------------------- | ----------------------------------------------------------------------------------------------------- | +| Can be instantiated | No | Unknown status | Unknown identifiability | Forbidden | Allowed | none | [SerializedAppLogicAction.schema.json\*](SerializedAppLogicAction.schema.json "open original schema") | + +## properties Type + +unknown diff --git a/docs/schema/serializedapplogicaction-definitions-serializedaddusedtimeaction.md b/docs/schema/serializedapplogicaction-definitions-serializedaddusedtimeaction.md new file mode 100644 index 0000000..00dc186 --- /dev/null +++ b/docs/schema/serializedapplogicaction-definitions-serializedaddusedtimeaction.md @@ -0,0 +1,114 @@ +# SerializedAddUsedTimeAction Schema + +```txt +https://timelimit.io/SerializedAppLogicAction#/definitions/SerializedAddUsedTimeAction +``` + + + + +| Abstract | Extensible | Status | Identifiable | Custom Properties | Additional Properties | Access Restrictions | Defined In | +| :------------------ | ---------- | -------------- | ------------ | :---------------- | --------------------- | ------------------- | ----------------------------------------------------------------------------------------------------- | +| Can be instantiated | No | Unknown status | No | Forbidden | Forbidden | none | [SerializedAppLogicAction.schema.json\*](SerializedAppLogicAction.schema.json "open original schema") | + +## SerializedAddUsedTimeAction Type + +`object` ([SerializedAddUsedTimeAction](serializedapplogicaction-definitions-serializedaddusedtimeaction.md)) + +# SerializedAddUsedTimeAction Properties + +| Property | Type | Required | Nullable | Defined by | +| :------------------------------------------ | -------- | -------- | -------------- | :---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | +| [type](#type) | `string` | Required | cannot be null | [SerializedAppLogicAction](serializedapplogicaction-definitions-serializedaddusedtimeaction-properties-type.md "https://timelimit.io/SerializedAppLogicAction#/definitions/SerializedAddUsedTimeAction/properties/type") | +| [categoryId](#categoryId) | `string` | Required | cannot be null | [SerializedAppLogicAction](serializedapplogicaction-definitions-serializedaddusedtimeaction-properties-categoryid.md "https://timelimit.io/SerializedAppLogicAction#/definitions/SerializedAddUsedTimeAction/properties/categoryId") | +| [day](#day) | `number` | Required | cannot be null | [SerializedAppLogicAction](serializedapplogicaction-definitions-serializedaddusedtimeaction-properties-day.md "https://timelimit.io/SerializedAppLogicAction#/definitions/SerializedAddUsedTimeAction/properties/day") | +| [timeToAdd](#timeToAdd) | `number` | Required | cannot be null | [SerializedAppLogicAction](serializedapplogicaction-definitions-serializedaddusedtimeaction-properties-timetoadd.md "https://timelimit.io/SerializedAppLogicAction#/definitions/SerializedAddUsedTimeAction/properties/timeToAdd") | +| [extraTimeToSubtract](#extraTimeToSubtract) | `number` | Required | cannot be null | [SerializedAppLogicAction](serializedapplogicaction-definitions-serializedaddusedtimeaction-properties-extratimetosubtract.md "https://timelimit.io/SerializedAppLogicAction#/definitions/SerializedAddUsedTimeAction/properties/extraTimeToSubtract") | + +## type + + + + +`type` + +- is required +- Type: `string` +- cannot be null +- defined in: [SerializedAppLogicAction](serializedapplogicaction-definitions-serializedaddusedtimeaction-properties-type.md "https://timelimit.io/SerializedAppLogicAction#/definitions/SerializedAddUsedTimeAction/properties/type") + +### type Type + +`string` + +### type Constraints + +**enum**: the value of this property must be equal to one of the following values: + +| Value | Explanation | +| :---------------- | ----------- | +| `"ADD_USED_TIME"` | | + +## categoryId + + + + +`categoryId` + +- is required +- Type: `string` +- cannot be null +- defined in: [SerializedAppLogicAction](serializedapplogicaction-definitions-serializedaddusedtimeaction-properties-categoryid.md "https://timelimit.io/SerializedAppLogicAction#/definitions/SerializedAddUsedTimeAction/properties/categoryId") + +### categoryId Type + +`string` + +## day + + + + +`day` + +- is required +- Type: `number` +- cannot be null +- defined in: [SerializedAppLogicAction](serializedapplogicaction-definitions-serializedaddusedtimeaction-properties-day.md "https://timelimit.io/SerializedAppLogicAction#/definitions/SerializedAddUsedTimeAction/properties/day") + +### day Type + +`number` + +## timeToAdd + + + + +`timeToAdd` + +- is required +- Type: `number` +- cannot be null +- defined in: [SerializedAppLogicAction](serializedapplogicaction-definitions-serializedaddusedtimeaction-properties-timetoadd.md "https://timelimit.io/SerializedAppLogicAction#/definitions/SerializedAddUsedTimeAction/properties/timeToAdd") + +### timeToAdd Type + +`number` + +## extraTimeToSubtract + + + + +`extraTimeToSubtract` + +- is required +- Type: `number` +- cannot be null +- defined in: [SerializedAppLogicAction](serializedapplogicaction-definitions-serializedaddusedtimeaction-properties-extratimetosubtract.md "https://timelimit.io/SerializedAppLogicAction#/definitions/SerializedAddUsedTimeAction/properties/extraTimeToSubtract") + +### extraTimeToSubtract Type + +`number` diff --git a/docs/schema/serializedapplogicaction-definitions-serializedaddusedtimeactionversion2-properties-d.md b/docs/schema/serializedapplogicaction-definitions-serializedaddusedtimeactionversion2-properties-d.md new file mode 100644 index 0000000..b238c1c --- /dev/null +++ b/docs/schema/serializedapplogicaction-definitions-serializedaddusedtimeactionversion2-properties-d.md @@ -0,0 +1,16 @@ +# Untitled number in SerializedAppLogicAction Schema + +```txt +https://timelimit.io/SerializedAppLogicAction#/definitions/SerializedAddUsedTimeActionVersion2/properties/d +``` + + + + +| Abstract | Extensible | Status | Identifiable | Custom Properties | Additional Properties | Access Restrictions | Defined In | +| :------------------ | ---------- | -------------- | ----------------------- | :---------------- | --------------------- | ------------------- | ----------------------------------------------------------------------------------------------------- | +| Can be instantiated | No | Unknown status | Unknown identifiability | Forbidden | Allowed | none | [SerializedAppLogicAction.schema.json\*](SerializedAppLogicAction.schema.json "open original schema") | + +## d Type + +`number` diff --git a/docs/schema/serializedapplogicaction-definitions-serializedaddusedtimeactionversion2-properties-i-items-properties-categoryid.md b/docs/schema/serializedapplogicaction-definitions-serializedaddusedtimeactionversion2-properties-i-items-properties-categoryid.md new file mode 100644 index 0000000..3db8873 --- /dev/null +++ b/docs/schema/serializedapplogicaction-definitions-serializedaddusedtimeactionversion2-properties-i-items-properties-categoryid.md @@ -0,0 +1,16 @@ +# Untitled string in SerializedAppLogicAction Schema + +```txt +https://timelimit.io/SerializedAppLogicAction#/definitions/SerializedAddUsedTimeActionVersion2/properties/i/items/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 | [SerializedAppLogicAction.schema.json\*](SerializedAppLogicAction.schema.json "open original schema") | + +## categoryId Type + +`string` diff --git a/docs/schema/serializedapplogicaction-definitions-serializedaddusedtimeactionversion2-properties-i-items-properties-etts.md b/docs/schema/serializedapplogicaction-definitions-serializedaddusedtimeactionversion2-properties-i-items-properties-etts.md new file mode 100644 index 0000000..3d30d3e --- /dev/null +++ b/docs/schema/serializedapplogicaction-definitions-serializedaddusedtimeactionversion2-properties-i-items-properties-etts.md @@ -0,0 +1,16 @@ +# Untitled number in SerializedAppLogicAction Schema + +```txt +https://timelimit.io/SerializedAppLogicAction#/definitions/SerializedAddUsedTimeActionVersion2/properties/i/items/properties/etts +``` + + + + +| Abstract | Extensible | Status | Identifiable | Custom Properties | Additional Properties | Access Restrictions | Defined In | +| :------------------ | ---------- | -------------- | ----------------------- | :---------------- | --------------------- | ------------------- | ----------------------------------------------------------------------------------------------------- | +| Can be instantiated | No | Unknown status | Unknown identifiability | Forbidden | Allowed | none | [SerializedAppLogicAction.schema.json\*](SerializedAppLogicAction.schema.json "open original schema") | + +## etts Type + +`number` diff --git a/docs/schema/serializedapplogicaction-definitions-serializedaddusedtimeactionversion2-properties-i-items-properties-tta.md b/docs/schema/serializedapplogicaction-definitions-serializedaddusedtimeactionversion2-properties-i-items-properties-tta.md new file mode 100644 index 0000000..e6ffbb0 --- /dev/null +++ b/docs/schema/serializedapplogicaction-definitions-serializedaddusedtimeactionversion2-properties-i-items-properties-tta.md @@ -0,0 +1,16 @@ +# Untitled number in SerializedAppLogicAction Schema + +```txt +https://timelimit.io/SerializedAppLogicAction#/definitions/SerializedAddUsedTimeActionVersion2/properties/i/items/properties/tta +``` + + + + +| Abstract | Extensible | Status | Identifiable | Custom Properties | Additional Properties | Access Restrictions | Defined In | +| :------------------ | ---------- | -------------- | ----------------------- | :---------------- | --------------------- | ------------------- | ----------------------------------------------------------------------------------------------------- | +| Can be instantiated | No | Unknown status | Unknown identifiability | Forbidden | Allowed | none | [SerializedAppLogicAction.schema.json\*](SerializedAppLogicAction.schema.json "open original schema") | + +## tta Type + +`number` diff --git a/docs/schema/serializedapplogicaction-definitions-serializedaddusedtimeactionversion2-properties-i-items-properties.md b/docs/schema/serializedapplogicaction-definitions-serializedaddusedtimeactionversion2-properties-i-items-properties.md new file mode 100644 index 0000000..25ab9bc --- /dev/null +++ b/docs/schema/serializedapplogicaction-definitions-serializedaddusedtimeactionversion2-properties-i-items-properties.md @@ -0,0 +1,16 @@ +# Untitled undefined type in SerializedAppLogicAction Schema + +```txt +https://timelimit.io/SerializedAppLogicAction#/definitions/SerializedAddUsedTimeActionVersion2/properties/i/items/properties +``` + + + + +| Abstract | Extensible | Status | Identifiable | Custom Properties | Additional Properties | Access Restrictions | Defined In | +| :------------------ | ---------- | -------------- | ----------------------- | :---------------- | --------------------- | ------------------- | ----------------------------------------------------------------------------------------------------- | +| Can be instantiated | No | Unknown status | Unknown identifiability | Forbidden | Allowed | none | [SerializedAppLogicAction.schema.json\*](SerializedAppLogicAction.schema.json "open original schema") | + +## properties Type + +unknown diff --git a/docs/schema/serializedapplogicaction-definitions-serializedaddusedtimeactionversion2-properties-i-items.md b/docs/schema/serializedapplogicaction-definitions-serializedaddusedtimeactionversion2-properties-i-items.md new file mode 100644 index 0000000..d0e5776 --- /dev/null +++ b/docs/schema/serializedapplogicaction-definitions-serializedaddusedtimeactionversion2-properties-i-items.md @@ -0,0 +1,72 @@ +# Untitled object in SerializedAppLogicAction Schema + +```txt +https://timelimit.io/SerializedAppLogicAction#/definitions/SerializedAddUsedTimeActionVersion2/properties/i/items +``` + + + + +| Abstract | Extensible | Status | Identifiable | Custom Properties | Additional Properties | Access Restrictions | Defined In | +| :------------------ | ---------- | -------------- | ------------ | :---------------- | --------------------- | ------------------- | ----------------------------------------------------------------------------------------------------- | +| Can be instantiated | No | Unknown status | No | Forbidden | Forbidden | none | [SerializedAppLogicAction.schema.json\*](SerializedAppLogicAction.schema.json "open original schema") | + +## items Type + +`object` ([Details](serializedapplogicaction-definitions-serializedaddusedtimeactionversion2-properties-i-items.md)) + +# undefined Properties + +| Property | Type | Required | Nullable | Defined by | +| :------------------------ | -------- | -------- | -------------- | :---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | +| [categoryId](#categoryId) | `string` | Required | cannot be null | [SerializedAppLogicAction](serializedapplogicaction-definitions-serializedaddusedtimeactionversion2-properties-i-items-properties-categoryid.md "https://timelimit.io/SerializedAppLogicAction#/definitions/SerializedAddUsedTimeActionVersion2/properties/i/items/properties/categoryId") | +| [tta](#tta) | `number` | Required | cannot be null | [SerializedAppLogicAction](serializedapplogicaction-definitions-serializedaddusedtimeactionversion2-properties-i-items-properties-tta.md "https://timelimit.io/SerializedAppLogicAction#/definitions/SerializedAddUsedTimeActionVersion2/properties/i/items/properties/tta") | +| [etts](#etts) | `number` | Required | cannot be null | [SerializedAppLogicAction](serializedapplogicaction-definitions-serializedaddusedtimeactionversion2-properties-i-items-properties-etts.md "https://timelimit.io/SerializedAppLogicAction#/definitions/SerializedAddUsedTimeActionVersion2/properties/i/items/properties/etts") | + +## categoryId + + + + +`categoryId` + +- is required +- Type: `string` +- cannot be null +- defined in: [SerializedAppLogicAction](serializedapplogicaction-definitions-serializedaddusedtimeactionversion2-properties-i-items-properties-categoryid.md "https://timelimit.io/SerializedAppLogicAction#/definitions/SerializedAddUsedTimeActionVersion2/properties/i/items/properties/categoryId") + +### categoryId Type + +`string` + +## tta + + + + +`tta` + +- is required +- Type: `number` +- cannot be null +- defined in: [SerializedAppLogicAction](serializedapplogicaction-definitions-serializedaddusedtimeactionversion2-properties-i-items-properties-tta.md "https://timelimit.io/SerializedAppLogicAction#/definitions/SerializedAddUsedTimeActionVersion2/properties/i/items/properties/tta") + +### tta Type + +`number` + +## etts + + + + +`etts` + +- is required +- Type: `number` +- cannot be null +- defined in: [SerializedAppLogicAction](serializedapplogicaction-definitions-serializedaddusedtimeactionversion2-properties-i-items-properties-etts.md "https://timelimit.io/SerializedAppLogicAction#/definitions/SerializedAddUsedTimeActionVersion2/properties/i/items/properties/etts") + +### etts Type + +`number` diff --git a/docs/schema/serializedapplogicaction-definitions-serializedaddusedtimeactionversion2-properties-i.md b/docs/schema/serializedapplogicaction-definitions-serializedaddusedtimeactionversion2-properties-i.md new file mode 100644 index 0000000..3eac063 --- /dev/null +++ b/docs/schema/serializedapplogicaction-definitions-serializedaddusedtimeactionversion2-properties-i.md @@ -0,0 +1,16 @@ +# Untitled array in SerializedAppLogicAction Schema + +```txt +https://timelimit.io/SerializedAppLogicAction#/definitions/SerializedAddUsedTimeActionVersion2/properties/i +``` + + + + +| Abstract | Extensible | Status | Identifiable | Custom Properties | Additional Properties | Access Restrictions | Defined In | +| :------------------ | ---------- | -------------- | ----------------------- | :---------------- | --------------------- | ------------------- | ----------------------------------------------------------------------------------------------------- | +| Can be instantiated | No | Unknown status | Unknown identifiability | Forbidden | Allowed | none | [SerializedAppLogicAction.schema.json\*](SerializedAppLogicAction.schema.json "open original schema") | + +## i Type + +`object[]` ([Details](serializedapplogicaction-definitions-serializedaddusedtimeactionversion2-properties-i-items.md)) diff --git a/docs/schema/serializedapplogicaction-definitions-serializedaddusedtimeactionversion2-properties-type.md b/docs/schema/serializedapplogicaction-definitions-serializedaddusedtimeactionversion2-properties-type.md new file mode 100644 index 0000000..4a845ba --- /dev/null +++ b/docs/schema/serializedapplogicaction-definitions-serializedaddusedtimeactionversion2-properties-type.md @@ -0,0 +1,24 @@ +# Untitled string in SerializedAppLogicAction Schema + +```txt +https://timelimit.io/SerializedAppLogicAction#/definitions/SerializedAddUsedTimeActionVersion2/properties/type +``` + + + + +| Abstract | Extensible | Status | Identifiable | Custom Properties | Additional Properties | Access Restrictions | Defined In | +| :------------------ | ---------- | -------------- | ----------------------- | :---------------- | --------------------- | ------------------- | ----------------------------------------------------------------------------------------------------- | +| Can be instantiated | No | Unknown status | Unknown identifiability | Forbidden | Allowed | none | [SerializedAppLogicAction.schema.json\*](SerializedAppLogicAction.schema.json "open original schema") | + +## type Type + +`string` + +## type Constraints + +**enum**: the value of this property must be equal to one of the following values: + +| Value | Explanation | +| :------------------- | ----------- | +| `"ADD_USED_TIME_V2"` | | diff --git a/docs/schema/serializedapplogicaction-definitions-serializedaddusedtimeactionversion2-properties.md b/docs/schema/serializedapplogicaction-definitions-serializedaddusedtimeactionversion2-properties.md new file mode 100644 index 0000000..bd1b21a --- /dev/null +++ b/docs/schema/serializedapplogicaction-definitions-serializedaddusedtimeactionversion2-properties.md @@ -0,0 +1,16 @@ +# Untitled undefined type in SerializedAppLogicAction Schema + +```txt +https://timelimit.io/SerializedAppLogicAction#/definitions/SerializedAddUsedTimeActionVersion2/properties +``` + + + + +| Abstract | Extensible | Status | Identifiable | Custom Properties | Additional Properties | Access Restrictions | Defined In | +| :------------------ | ---------- | -------------- | ----------------------- | :---------------- | --------------------- | ------------------- | ----------------------------------------------------------------------------------------------------- | +| Can be instantiated | No | Unknown status | Unknown identifiability | Forbidden | Allowed | none | [SerializedAppLogicAction.schema.json\*](SerializedAppLogicAction.schema.json "open original schema") | + +## properties Type + +unknown diff --git a/docs/schema/serializedapplogicaction-definitions-serializedaddusedtimeactionversion2.md b/docs/schema/serializedapplogicaction-definitions-serializedaddusedtimeactionversion2.md new file mode 100644 index 0000000..2b62fb1 --- /dev/null +++ b/docs/schema/serializedapplogicaction-definitions-serializedaddusedtimeactionversion2.md @@ -0,0 +1,80 @@ +# SerializedAddUsedTimeActionVersion2 Schema + +```txt +https://timelimit.io/SerializedAppLogicAction#/definitions/SerializedAddUsedTimeActionVersion2 +``` + + + + +| Abstract | Extensible | Status | Identifiable | Custom Properties | Additional Properties | Access Restrictions | Defined In | +| :------------------ | ---------- | -------------- | ------------ | :---------------- | --------------------- | ------------------- | ----------------------------------------------------------------------------------------------------- | +| Can be instantiated | No | Unknown status | No | Forbidden | Forbidden | none | [SerializedAppLogicAction.schema.json\*](SerializedAppLogicAction.schema.json "open original schema") | + +## SerializedAddUsedTimeActionVersion2 Type + +`object` ([SerializedAddUsedTimeActionVersion2](serializedapplogicaction-definitions-serializedaddusedtimeactionversion2.md)) + +# SerializedAddUsedTimeActionVersion2 Properties + +| Property | Type | Required | Nullable | Defined by | +| :------------ | -------- | -------- | -------------- | :-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | +| [type](#type) | `string` | Required | cannot be null | [SerializedAppLogicAction](serializedapplogicaction-definitions-serializedaddusedtimeactionversion2-properties-type.md "https://timelimit.io/SerializedAppLogicAction#/definitions/SerializedAddUsedTimeActionVersion2/properties/type") | +| [d](#d) | `number` | Required | cannot be null | [SerializedAppLogicAction](serializedapplogicaction-definitions-serializedaddusedtimeactionversion2-properties-d.md "https://timelimit.io/SerializedAppLogicAction#/definitions/SerializedAddUsedTimeActionVersion2/properties/d") | +| [i](#i) | `array` | Required | cannot be null | [SerializedAppLogicAction](serializedapplogicaction-definitions-serializedaddusedtimeactionversion2-properties-i.md "https://timelimit.io/SerializedAppLogicAction#/definitions/SerializedAddUsedTimeActionVersion2/properties/i") | + +## type + + + + +`type` + +- is required +- Type: `string` +- cannot be null +- defined in: [SerializedAppLogicAction](serializedapplogicaction-definitions-serializedaddusedtimeactionversion2-properties-type.md "https://timelimit.io/SerializedAppLogicAction#/definitions/SerializedAddUsedTimeActionVersion2/properties/type") + +### type Type + +`string` + +### type Constraints + +**enum**: the value of this property must be equal to one of the following values: + +| Value | Explanation | +| :------------------- | ----------- | +| `"ADD_USED_TIME_V2"` | | + +## d + + + + +`d` + +- is required +- Type: `number` +- cannot be null +- defined in: [SerializedAppLogicAction](serializedapplogicaction-definitions-serializedaddusedtimeactionversion2-properties-d.md "https://timelimit.io/SerializedAppLogicAction#/definitions/SerializedAddUsedTimeActionVersion2/properties/d") + +### d Type + +`number` + +## i + + + + +`i` + +- is required +- Type: `object[]` ([Details](serializedapplogicaction-definitions-serializedaddusedtimeactionversion2-properties-i-items.md)) +- cannot be null +- defined in: [SerializedAppLogicAction](serializedapplogicaction-definitions-serializedaddusedtimeactionversion2-properties-i.md "https://timelimit.io/SerializedAppLogicAction#/definitions/SerializedAddUsedTimeActionVersion2/properties/i") + +### i Type + +`object[]` ([Details](serializedapplogicaction-definitions-serializedaddusedtimeactionversion2-properties-i-items.md)) diff --git a/docs/schema/serializedapplogicaction-definitions-serializedappactivityitem-properties-c.md b/docs/schema/serializedapplogicaction-definitions-serializedappactivityitem-properties-c.md new file mode 100644 index 0000000..113c460 --- /dev/null +++ b/docs/schema/serializedapplogicaction-definitions-serializedappactivityitem-properties-c.md @@ -0,0 +1,16 @@ +# Untitled string in SerializedAppLogicAction Schema + +```txt +https://timelimit.io/SerializedAppLogicAction#/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 | [SerializedAppLogicAction.schema.json\*](SerializedAppLogicAction.schema.json "open original schema") | + +## c Type + +`string` diff --git a/docs/schema/serializedapplogicaction-definitions-serializedappactivityitem-properties-p.md b/docs/schema/serializedapplogicaction-definitions-serializedappactivityitem-properties-p.md new file mode 100644 index 0000000..bcfbba4 --- /dev/null +++ b/docs/schema/serializedapplogicaction-definitions-serializedappactivityitem-properties-p.md @@ -0,0 +1,16 @@ +# Untitled string in SerializedAppLogicAction Schema + +```txt +https://timelimit.io/SerializedAppLogicAction#/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 | [SerializedAppLogicAction.schema.json\*](SerializedAppLogicAction.schema.json "open original schema") | + +## p Type + +`string` diff --git a/docs/schema/serializedapplogicaction-definitions-serializedappactivityitem-properties-t.md b/docs/schema/serializedapplogicaction-definitions-serializedappactivityitem-properties-t.md new file mode 100644 index 0000000..89197ba --- /dev/null +++ b/docs/schema/serializedapplogicaction-definitions-serializedappactivityitem-properties-t.md @@ -0,0 +1,16 @@ +# Untitled string in SerializedAppLogicAction Schema + +```txt +https://timelimit.io/SerializedAppLogicAction#/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 | [SerializedAppLogicAction.schema.json\*](SerializedAppLogicAction.schema.json "open original schema") | + +## t Type + +`string` diff --git a/docs/schema/serializedapplogicaction-definitions-serializedappactivityitem-properties.md b/docs/schema/serializedapplogicaction-definitions-serializedappactivityitem-properties.md new file mode 100644 index 0000000..84f0960 --- /dev/null +++ b/docs/schema/serializedapplogicaction-definitions-serializedappactivityitem-properties.md @@ -0,0 +1,16 @@ +# Untitled undefined type in SerializedAppLogicAction Schema + +```txt +https://timelimit.io/SerializedAppLogicAction#/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 | [SerializedAppLogicAction.schema.json\*](SerializedAppLogicAction.schema.json "open original schema") | + +## properties Type + +unknown diff --git a/docs/schema/serializedapplogicaction-definitions-serializedappactivityitem.md b/docs/schema/serializedapplogicaction-definitions-serializedappactivityitem.md new file mode 100644 index 0000000..3f48f10 --- /dev/null +++ b/docs/schema/serializedapplogicaction-definitions-serializedappactivityitem.md @@ -0,0 +1,72 @@ +# SerializedAppActivityItem Schema + +```txt +https://timelimit.io/SerializedAppLogicAction#/definitions/SerializedAppActivityItem +``` + + + + +| Abstract | Extensible | Status | Identifiable | Custom Properties | Additional Properties | Access Restrictions | Defined In | +| :------------------ | ---------- | -------------- | ------------ | :---------------- | --------------------- | ------------------- | ----------------------------------------------------------------------------------------------------- | +| Can be instantiated | No | Unknown status | No | Forbidden | Forbidden | none | [SerializedAppLogicAction.schema.json\*](SerializedAppLogicAction.schema.json "open original schema") | + +## SerializedAppActivityItem Type + +`object` ([SerializedAppActivityItem](serializedapplogicaction-definitions-serializedappactivityitem.md)) + +# SerializedAppActivityItem Properties + +| Property | Type | Required | Nullable | Defined by | +| :------- | -------- | -------- | -------------- | :------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ | +| [p](#p) | `string` | Required | cannot be null | [SerializedAppLogicAction](serializedapplogicaction-definitions-serializedappactivityitem-properties-p.md "https://timelimit.io/SerializedAppLogicAction#/definitions/SerializedAppActivityItem/properties/p") | +| [c](#c) | `string` | Required | cannot be null | [SerializedAppLogicAction](serializedapplogicaction-definitions-serializedappactivityitem-properties-c.md "https://timelimit.io/SerializedAppLogicAction#/definitions/SerializedAppActivityItem/properties/c") | +| [t](#t) | `string` | Required | cannot be null | [SerializedAppLogicAction](serializedapplogicaction-definitions-serializedappactivityitem-properties-t.md "https://timelimit.io/SerializedAppLogicAction#/definitions/SerializedAppActivityItem/properties/t") | + +## p + + + + +`p` + +- is required +- Type: `string` +- cannot be null +- defined in: [SerializedAppLogicAction](serializedapplogicaction-definitions-serializedappactivityitem-properties-p.md "https://timelimit.io/SerializedAppLogicAction#/definitions/SerializedAppActivityItem/properties/p") + +### p Type + +`string` + +## c + + + + +`c` + +- is required +- Type: `string` +- cannot be null +- defined in: [SerializedAppLogicAction](serializedapplogicaction-definitions-serializedappactivityitem-properties-c.md "https://timelimit.io/SerializedAppLogicAction#/definitions/SerializedAppActivityItem/properties/c") + +### c Type + +`string` + +## t + + + + +`t` + +- is required +- Type: `string` +- cannot be null +- defined in: [SerializedAppLogicAction](serializedapplogicaction-definitions-serializedappactivityitem-properties-t.md "https://timelimit.io/SerializedAppLogicAction#/definitions/SerializedAppActivityItem/properties/t") + +### t Type + +`string` diff --git a/docs/schema/serializedapplogicaction-definitions-serializedinstalledapp-properties-apprecommendation.md b/docs/schema/serializedapplogicaction-definitions-serializedinstalledapp-properties-apprecommendation.md new file mode 100644 index 0000000..90b38e0 --- /dev/null +++ b/docs/schema/serializedapplogicaction-definitions-serializedinstalledapp-properties-apprecommendation.md @@ -0,0 +1,26 @@ +# AppRecommendation Schema + +```txt +https://timelimit.io/SerializedAppLogicAction#/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 | [SerializedAppLogicAction.schema.json\*](SerializedAppLogicAction.schema.json "open original schema") | + +## recommendation Type + +`string` ([AppRecommendation](serializedapplogicaction-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"` | | diff --git a/docs/schema/serializedapplogicaction-definitions-serializedinstalledapp-properties-islaunchable.md b/docs/schema/serializedapplogicaction-definitions-serializedinstalledapp-properties-islaunchable.md new file mode 100644 index 0000000..fba47c7 --- /dev/null +++ b/docs/schema/serializedapplogicaction-definitions-serializedinstalledapp-properties-islaunchable.md @@ -0,0 +1,16 @@ +# Untitled boolean in SerializedAppLogicAction Schema + +```txt +https://timelimit.io/SerializedAppLogicAction#/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 | [SerializedAppLogicAction.schema.json\*](SerializedAppLogicAction.schema.json "open original schema") | + +## isLaunchable Type + +`boolean` diff --git a/docs/schema/serializedapplogicaction-definitions-serializedinstalledapp-properties-packagename.md b/docs/schema/serializedapplogicaction-definitions-serializedinstalledapp-properties-packagename.md new file mode 100644 index 0000000..6098025 --- /dev/null +++ b/docs/schema/serializedapplogicaction-definitions-serializedinstalledapp-properties-packagename.md @@ -0,0 +1,16 @@ +# Untitled string in SerializedAppLogicAction Schema + +```txt +https://timelimit.io/SerializedAppLogicAction#/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 | [SerializedAppLogicAction.schema.json\*](SerializedAppLogicAction.schema.json "open original schema") | + +## packageName Type + +`string` diff --git a/docs/schema/serializedapplogicaction-definitions-serializedinstalledapp-properties-title.md b/docs/schema/serializedapplogicaction-definitions-serializedinstalledapp-properties-title.md new file mode 100644 index 0000000..f86761a --- /dev/null +++ b/docs/schema/serializedapplogicaction-definitions-serializedinstalledapp-properties-title.md @@ -0,0 +1,16 @@ +# Untitled string in SerializedAppLogicAction Schema + +```txt +https://timelimit.io/SerializedAppLogicAction#/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 | [SerializedAppLogicAction.schema.json\*](SerializedAppLogicAction.schema.json "open original schema") | + +## title Type + +`string` diff --git a/docs/schema/serializedapplogicaction-definitions-serializedinstalledapp-properties.md b/docs/schema/serializedapplogicaction-definitions-serializedinstalledapp-properties.md new file mode 100644 index 0000000..2d630ac --- /dev/null +++ b/docs/schema/serializedapplogicaction-definitions-serializedinstalledapp-properties.md @@ -0,0 +1,16 @@ +# \[object Object] Schema + +```txt +https://timelimit.io/SerializedAppLogicAction#/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 | [SerializedAppLogicAction.schema.json\*](SerializedAppLogicAction.schema.json "open original schema") | + +## properties Type + +unknown diff --git a/docs/schema/serializedapplogicaction-definitions-serializedinstalledapp.md b/docs/schema/serializedapplogicaction-definitions-serializedinstalledapp.md new file mode 100644 index 0000000..2fa124a --- /dev/null +++ b/docs/schema/serializedapplogicaction-definitions-serializedinstalledapp.md @@ -0,0 +1,99 @@ +# SerializedInstalledApp Schema + +```txt +https://timelimit.io/SerializedAppLogicAction#/definitions/SerializedInstalledApp +``` + + + + +| Abstract | Extensible | Status | Identifiable | Custom Properties | Additional Properties | Access Restrictions | Defined In | +| :------------------ | ---------- | -------------- | ------------ | :---------------- | --------------------- | ------------------- | ----------------------------------------------------------------------------------------------------- | +| Can be instantiated | No | Unknown status | No | Forbidden | Forbidden | none | [SerializedAppLogicAction.schema.json\*](SerializedAppLogicAction.schema.json "open original schema") | + +## SerializedInstalledApp Type + +`object` ([SerializedInstalledApp](serializedapplogicaction-definitions-serializedinstalledapp.md)) + +# SerializedInstalledApp Properties + +| Property | Type | Required | Nullable | Defined by | +| :-------------------------------- | --------- | -------- | -------------- | :----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | +| [packageName](#packageName) | `string` | Required | cannot be null | [SerializedAppLogicAction](serializedapplogicaction-definitions-serializedinstalledapp-properties-packagename.md "https://timelimit.io/SerializedAppLogicAction#/definitions/SerializedInstalledApp/properties/packageName") | +| [title](#title) | `string` | Required | cannot be null | [SerializedAppLogicAction](serializedapplogicaction-definitions-serializedinstalledapp-properties-title.md "https://timelimit.io/SerializedAppLogicAction#/definitions/SerializedInstalledApp/properties/title") | +| [isLaunchable](#isLaunchable) | `boolean` | Required | cannot be null | [SerializedAppLogicAction](serializedapplogicaction-definitions-serializedinstalledapp-properties-islaunchable.md "https://timelimit.io/SerializedAppLogicAction#/definitions/SerializedInstalledApp/properties/isLaunchable") | +| [recommendation](#recommendation) | `string` | Required | cannot be null | [SerializedAppLogicAction](serializedapplogicaction-definitions-serializedinstalledapp-properties-apprecommendation.md "https://timelimit.io/SerializedAppLogicAction#/definitions/SerializedInstalledApp/properties/recommendation") | + +## packageName + + + + +`packageName` + +- is required +- Type: `string` +- cannot be null +- defined in: [SerializedAppLogicAction](serializedapplogicaction-definitions-serializedinstalledapp-properties-packagename.md "https://timelimit.io/SerializedAppLogicAction#/definitions/SerializedInstalledApp/properties/packageName") + +### packageName Type + +`string` + +## title + + + + +`title` + +- is required +- Type: `string` +- cannot be null +- defined in: [SerializedAppLogicAction](serializedapplogicaction-definitions-serializedinstalledapp-properties-title.md "https://timelimit.io/SerializedAppLogicAction#/definitions/SerializedInstalledApp/properties/title") + +### title Type + +`string` + +## isLaunchable + + + + +`isLaunchable` + +- is required +- Type: `boolean` +- cannot be null +- defined in: [SerializedAppLogicAction](serializedapplogicaction-definitions-serializedinstalledapp-properties-islaunchable.md "https://timelimit.io/SerializedAppLogicAction#/definitions/SerializedInstalledApp/properties/isLaunchable") + +### isLaunchable Type + +`boolean` + +## recommendation + + + + +`recommendation` + +- is required +- Type: `string` ([AppRecommendation](serializedapplogicaction-definitions-serializedinstalledapp-properties-apprecommendation.md)) +- cannot be null +- defined in: [SerializedAppLogicAction](serializedapplogicaction-definitions-serializedinstalledapp-properties-apprecommendation.md "https://timelimit.io/SerializedAppLogicAction#/definitions/SerializedInstalledApp/properties/recommendation") + +### recommendation Type + +`string` ([AppRecommendation](serializedapplogicaction-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"` | | diff --git a/docs/schema/serializedapplogicaction-definitions-serializedremoveinstalledappsaction-properties-packagenames-items.md b/docs/schema/serializedapplogicaction-definitions-serializedremoveinstalledappsaction-properties-packagenames-items.md new file mode 100644 index 0000000..5e14dcc --- /dev/null +++ b/docs/schema/serializedapplogicaction-definitions-serializedremoveinstalledappsaction-properties-packagenames-items.md @@ -0,0 +1,16 @@ +# Untitled string in SerializedAppLogicAction Schema + +```txt +https://timelimit.io/SerializedAppLogicAction#/definitions/SerializedRemoveInstalledAppsAction/properties/packageNames/items +``` + + + + +| Abstract | Extensible | Status | Identifiable | Custom Properties | Additional Properties | Access Restrictions | Defined In | +| :------------------ | ---------- | -------------- | ----------------------- | :---------------- | --------------------- | ------------------- | ----------------------------------------------------------------------------------------------------- | +| Can be instantiated | No | Unknown status | Unknown identifiability | Forbidden | Allowed | none | [SerializedAppLogicAction.schema.json\*](SerializedAppLogicAction.schema.json "open original schema") | + +## items Type + +`string` diff --git a/docs/schema/serializedapplogicaction-definitions-serializedremoveinstalledappsaction-properties-packagenames.md b/docs/schema/serializedapplogicaction-definitions-serializedremoveinstalledappsaction-properties-packagenames.md new file mode 100644 index 0000000..84a50d5 --- /dev/null +++ b/docs/schema/serializedapplogicaction-definitions-serializedremoveinstalledappsaction-properties-packagenames.md @@ -0,0 +1,16 @@ +# Untitled array in SerializedAppLogicAction Schema + +```txt +https://timelimit.io/SerializedAppLogicAction#/definitions/SerializedRemoveInstalledAppsAction/properties/packageNames +``` + + + + +| Abstract | Extensible | Status | Identifiable | Custom Properties | Additional Properties | Access Restrictions | Defined In | +| :------------------ | ---------- | -------------- | ----------------------- | :---------------- | --------------------- | ------------------- | ----------------------------------------------------------------------------------------------------- | +| Can be instantiated | No | Unknown status | Unknown identifiability | Forbidden | Allowed | none | [SerializedAppLogicAction.schema.json\*](SerializedAppLogicAction.schema.json "open original schema") | + +## packageNames Type + +`string[]` diff --git a/docs/schema/serializedapplogicaction-definitions-serializedremoveinstalledappsaction-properties-type.md b/docs/schema/serializedapplogicaction-definitions-serializedremoveinstalledappsaction-properties-type.md new file mode 100644 index 0000000..7b649b5 --- /dev/null +++ b/docs/schema/serializedapplogicaction-definitions-serializedremoveinstalledappsaction-properties-type.md @@ -0,0 +1,24 @@ +# Untitled string in SerializedAppLogicAction Schema + +```txt +https://timelimit.io/SerializedAppLogicAction#/definitions/SerializedRemoveInstalledAppsAction/properties/type +``` + + + + +| Abstract | Extensible | Status | Identifiable | Custom Properties | Additional Properties | Access Restrictions | Defined In | +| :------------------ | ---------- | -------------- | ----------------------- | :---------------- | --------------------- | ------------------- | ----------------------------------------------------------------------------------------------------- | +| Can be instantiated | No | Unknown status | Unknown identifiability | Forbidden | Allowed | none | [SerializedAppLogicAction.schema.json\*](SerializedAppLogicAction.schema.json "open original schema") | + +## type Type + +`string` + +## type Constraints + +**enum**: the value of this property must be equal to one of the following values: + +| Value | Explanation | +| :------------------------ | ----------- | +| `"REMOVE_INSTALLED_APPS"` | | diff --git a/docs/schema/serializedapplogicaction-definitions-serializedremoveinstalledappsaction-properties.md b/docs/schema/serializedapplogicaction-definitions-serializedremoveinstalledappsaction-properties.md new file mode 100644 index 0000000..7b28457 --- /dev/null +++ b/docs/schema/serializedapplogicaction-definitions-serializedremoveinstalledappsaction-properties.md @@ -0,0 +1,16 @@ +# Untitled undefined type in SerializedAppLogicAction Schema + +```txt +https://timelimit.io/SerializedAppLogicAction#/definitions/SerializedRemoveInstalledAppsAction/properties +``` + + + + +| Abstract | Extensible | Status | Identifiable | Custom Properties | Additional Properties | Access Restrictions | Defined In | +| :------------------ | ---------- | -------------- | ----------------------- | :---------------- | --------------------- | ------------------- | ----------------------------------------------------------------------------------------------------- | +| Can be instantiated | No | Unknown status | Unknown identifiability | Forbidden | Allowed | none | [SerializedAppLogicAction.schema.json\*](SerializedAppLogicAction.schema.json "open original schema") | + +## properties Type + +unknown diff --git a/docs/schema/serializedapplogicaction-definitions-serializedremoveinstalledappsaction.md b/docs/schema/serializedapplogicaction-definitions-serializedremoveinstalledappsaction.md new file mode 100644 index 0000000..1f19a85 --- /dev/null +++ b/docs/schema/serializedapplogicaction-definitions-serializedremoveinstalledappsaction.md @@ -0,0 +1,63 @@ +# SerializedRemoveInstalledAppsAction Schema + +```txt +https://timelimit.io/SerializedAppLogicAction#/definitions/SerializedRemoveInstalledAppsAction +``` + + + + +| Abstract | Extensible | Status | Identifiable | Custom Properties | Additional Properties | Access Restrictions | Defined In | +| :------------------ | ---------- | -------------- | ------------ | :---------------- | --------------------- | ------------------- | ----------------------------------------------------------------------------------------------------- | +| Can be instantiated | No | Unknown status | No | Forbidden | Forbidden | none | [SerializedAppLogicAction.schema.json\*](SerializedAppLogicAction.schema.json "open original schema") | + +## SerializedRemoveInstalledAppsAction Type + +`object` ([SerializedRemoveInstalledAppsAction](serializedapplogicaction-definitions-serializedremoveinstalledappsaction.md)) + +# SerializedRemoveInstalledAppsAction Properties + +| Property | Type | Required | Nullable | Defined by | +| :---------------------------- | -------- | -------- | -------------- | :------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ | +| [type](#type) | `string` | Required | cannot be null | [SerializedAppLogicAction](serializedapplogicaction-definitions-serializedremoveinstalledappsaction-properties-type.md "https://timelimit.io/SerializedAppLogicAction#/definitions/SerializedRemoveInstalledAppsAction/properties/type") | +| [packageNames](#packageNames) | `array` | Required | cannot be null | [SerializedAppLogicAction](serializedapplogicaction-definitions-serializedremoveinstalledappsaction-properties-packagenames.md "https://timelimit.io/SerializedAppLogicAction#/definitions/SerializedRemoveInstalledAppsAction/properties/packageNames") | + +## type + + + + +`type` + +- is required +- Type: `string` +- cannot be null +- defined in: [SerializedAppLogicAction](serializedapplogicaction-definitions-serializedremoveinstalledappsaction-properties-type.md "https://timelimit.io/SerializedAppLogicAction#/definitions/SerializedRemoveInstalledAppsAction/properties/type") + +### type Type + +`string` + +### type Constraints + +**enum**: the value of this property must be equal to one of the following values: + +| Value | Explanation | +| :------------------------ | ----------- | +| `"REMOVE_INSTALLED_APPS"` | | + +## packageNames + + + + +`packageNames` + +- is required +- Type: `string[]` +- cannot be null +- defined in: [SerializedAppLogicAction](serializedapplogicaction-definitions-serializedremoveinstalledappsaction-properties-packagenames.md "https://timelimit.io/SerializedAppLogicAction#/definitions/SerializedRemoveInstalledAppsAction/properties/packageNames") + +### packageNames Type + +`string[]` diff --git a/docs/schema/serializedapplogicaction-definitions-serializedsignoutatdeviceaction-properties-type.md b/docs/schema/serializedapplogicaction-definitions-serializedsignoutatdeviceaction-properties-type.md new file mode 100644 index 0000000..eed4c3e --- /dev/null +++ b/docs/schema/serializedapplogicaction-definitions-serializedsignoutatdeviceaction-properties-type.md @@ -0,0 +1,24 @@ +# Untitled string in SerializedAppLogicAction Schema + +```txt +https://timelimit.io/SerializedAppLogicAction#/definitions/SerializedSignOutAtDeviceAction/properties/type +``` + + + + +| Abstract | Extensible | Status | Identifiable | Custom Properties | Additional Properties | Access Restrictions | Defined In | +| :------------------ | ---------- | -------------- | ----------------------- | :---------------- | --------------------- | ------------------- | ----------------------------------------------------------------------------------------------------- | +| Can be instantiated | No | Unknown status | Unknown identifiability | Forbidden | Allowed | none | [SerializedAppLogicAction.schema.json\*](SerializedAppLogicAction.schema.json "open original schema") | + +## type Type + +`string` + +## type Constraints + +**enum**: the value of this property must be equal to one of the following values: + +| Value | Explanation | +| :--------------------- | ----------- | +| `"SIGN_OUT_AT_DEVICE"` | | diff --git a/docs/schema/serializedapplogicaction-definitions-serializedsignoutatdeviceaction-properties.md b/docs/schema/serializedapplogicaction-definitions-serializedsignoutatdeviceaction-properties.md new file mode 100644 index 0000000..29b7b39 --- /dev/null +++ b/docs/schema/serializedapplogicaction-definitions-serializedsignoutatdeviceaction-properties.md @@ -0,0 +1,16 @@ +# Untitled undefined type in SerializedAppLogicAction Schema + +```txt +https://timelimit.io/SerializedAppLogicAction#/definitions/SerializedSignOutAtDeviceAction/properties +``` + + + + +| Abstract | Extensible | Status | Identifiable | Custom Properties | Additional Properties | Access Restrictions | Defined In | +| :------------------ | ---------- | -------------- | ----------------------- | :---------------- | --------------------- | ------------------- | ----------------------------------------------------------------------------------------------------- | +| Can be instantiated | No | Unknown status | Unknown identifiability | Forbidden | Allowed | none | [SerializedAppLogicAction.schema.json\*](SerializedAppLogicAction.schema.json "open original schema") | + +## properties Type + +unknown diff --git a/docs/schema/serializedapplogicaction-definitions-serializedsignoutatdeviceaction.md b/docs/schema/serializedapplogicaction-definitions-serializedsignoutatdeviceaction.md new file mode 100644 index 0000000..3f36fdf --- /dev/null +++ b/docs/schema/serializedapplogicaction-definitions-serializedsignoutatdeviceaction.md @@ -0,0 +1,46 @@ +# SerializedSignOutAtDeviceAction Schema + +```txt +https://timelimit.io/SerializedAppLogicAction#/definitions/SerializedSignOutAtDeviceAction +``` + + + + +| Abstract | Extensible | Status | Identifiable | Custom Properties | Additional Properties | Access Restrictions | Defined In | +| :------------------ | ---------- | -------------- | ------------ | :---------------- | --------------------- | ------------------- | ----------------------------------------------------------------------------------------------------- | +| Can be instantiated | No | Unknown status | No | Forbidden | Forbidden | none | [SerializedAppLogicAction.schema.json\*](SerializedAppLogicAction.schema.json "open original schema") | + +## SerializedSignOutAtDeviceAction Type + +`object` ([SerializedSignOutAtDeviceAction](serializedapplogicaction-definitions-serializedsignoutatdeviceaction.md)) + +# SerializedSignOutAtDeviceAction Properties + +| Property | Type | Required | Nullable | Defined by | +| :------------ | -------- | -------- | -------------- | :------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ | +| [type](#type) | `string` | Required | cannot be null | [SerializedAppLogicAction](serializedapplogicaction-definitions-serializedsignoutatdeviceaction-properties-type.md "https://timelimit.io/SerializedAppLogicAction#/definitions/SerializedSignOutAtDeviceAction/properties/type") | + +## type + + + + +`type` + +- is required +- Type: `string` +- cannot be null +- defined in: [SerializedAppLogicAction](serializedapplogicaction-definitions-serializedsignoutatdeviceaction-properties-type.md "https://timelimit.io/SerializedAppLogicAction#/definitions/SerializedSignOutAtDeviceAction/properties/type") + +### type Type + +`string` + +### type Constraints + +**enum**: the value of this property must be equal to one of the following values: + +| Value | Explanation | +| :--------------------- | ----------- | +| `"SIGN_OUT_AT_DEVICE"` | | diff --git a/docs/schema/serializedapplogicaction-definitions-serializedupdateappactivitiesaction-properties-removed-items-additionalitems-anyof-0.md b/docs/schema/serializedapplogicaction-definitions-serializedupdateappactivitiesaction-properties-removed-items-additionalitems-anyof-0.md new file mode 100644 index 0000000..d0620dd --- /dev/null +++ b/docs/schema/serializedapplogicaction-definitions-serializedupdateappactivitiesaction-properties-removed-items-additionalitems-anyof-0.md @@ -0,0 +1,16 @@ +# Untitled string in SerializedAppLogicAction Schema + +```txt +https://timelimit.io/SerializedAppLogicAction#/definitions/SerializedUpdateAppActivitiesAction/properties/removed/items/additionalItems/anyOf/0 +``` + + + + +| Abstract | Extensible | Status | Identifiable | Custom Properties | Additional Properties | Access Restrictions | Defined In | +| :------------------ | ---------- | -------------- | ----------------------- | :---------------- | --------------------- | ------------------- | ----------------------------------------------------------------------------------------------------- | +| Can be instantiated | No | Unknown status | Unknown identifiability | Forbidden | Allowed | none | [SerializedAppLogicAction.schema.json\*](SerializedAppLogicAction.schema.json "open original schema") | + +## 0 Type + +`string` diff --git a/docs/schema/serializedapplogicaction-definitions-serializedupdateappactivitiesaction-properties-removed-items-additionalitems-anyof-1.md b/docs/schema/serializedapplogicaction-definitions-serializedupdateappactivitiesaction-properties-removed-items-additionalitems-anyof-1.md new file mode 100644 index 0000000..1d3035e --- /dev/null +++ b/docs/schema/serializedapplogicaction-definitions-serializedupdateappactivitiesaction-properties-removed-items-additionalitems-anyof-1.md @@ -0,0 +1,16 @@ +# Untitled string in SerializedAppLogicAction Schema + +```txt +https://timelimit.io/SerializedAppLogicAction#/definitions/SerializedUpdateAppActivitiesAction/properties/removed/items/additionalItems/anyOf/1 +``` + + + + +| Abstract | Extensible | Status | Identifiable | Custom Properties | Additional Properties | Access Restrictions | Defined In | +| :------------------ | ---------- | -------------- | ----------------------- | :---------------- | --------------------- | ------------------- | ----------------------------------------------------------------------------------------------------- | +| Can be instantiated | No | Unknown status | Unknown identifiability | Forbidden | Allowed | none | [SerializedAppLogicAction.schema.json\*](SerializedAppLogicAction.schema.json "open original schema") | + +## 1 Type + +`string` diff --git a/docs/schema/serializedapplogicaction-definitions-serializedupdateappactivitiesaction-properties-removed-items-additionalitems.md b/docs/schema/serializedapplogicaction-definitions-serializedupdateappactivitiesaction-properties-removed-items-additionalitems.md new file mode 100644 index 0000000..831b21f --- /dev/null +++ b/docs/schema/serializedapplogicaction-definitions-serializedupdateappactivitiesaction-properties-removed-items-additionalitems.md @@ -0,0 +1,21 @@ +# Untitled undefined type in SerializedAppLogicAction Schema + +```txt +https://timelimit.io/SerializedAppLogicAction#/definitions/SerializedUpdateAppActivitiesAction/properties/removed/items/additionalItems +``` + + + + +| Abstract | Extensible | Status | Identifiable | Custom Properties | Additional Properties | Access Restrictions | Defined In | +| :------------------ | ---------- | -------------- | ----------------------- | :---------------- | --------------------- | ------------------- | ----------------------------------------------------------------------------------------------------- | +| Can be instantiated | No | Unknown status | Unknown identifiability | Forbidden | Allowed | none | [SerializedAppLogicAction.schema.json\*](SerializedAppLogicAction.schema.json "open original schema") | + +## additionalItems Type + +merged type ([Details](serializedapplogicaction-definitions-serializedupdateappactivitiesaction-properties-removed-items-additionalitems.md)) + +any of + +- [Untitled string in SerializedAppLogicAction](serializedapplogicaction-definitions-serializedupdateappactivitiesaction-properties-removed-items-additionalitems-anyof-0.md "check type definition") +- [Untitled string in SerializedAppLogicAction](serializedapplogicaction-definitions-serializedupdateappactivitiesaction-properties-removed-items-additionalitems-anyof-1.md "check type definition") diff --git a/docs/schema/serializedapplogicaction-definitions-serializedupdateappactivitiesaction-properties-removed-items-items-0.md b/docs/schema/serializedapplogicaction-definitions-serializedupdateappactivitiesaction-properties-removed-items-items-0.md new file mode 100644 index 0000000..61cfd71 --- /dev/null +++ b/docs/schema/serializedapplogicaction-definitions-serializedupdateappactivitiesaction-properties-removed-items-items-0.md @@ -0,0 +1,16 @@ +# Untitled string in SerializedAppLogicAction Schema + +```txt +https://timelimit.io/SerializedAppLogicAction#/definitions/SerializedUpdateAppActivitiesAction/properties/removed/items/items/0 +``` + + + + +| Abstract | Extensible | Status | Identifiable | Custom Properties | Additional Properties | Access Restrictions | Defined In | +| :------------------ | ---------- | -------------- | ----------------------- | :---------------- | --------------------- | ------------------- | ----------------------------------------------------------------------------------------------------- | +| Can be instantiated | No | Unknown status | Unknown identifiability | Forbidden | Allowed | none | [SerializedAppLogicAction.schema.json\*](SerializedAppLogicAction.schema.json "open original schema") | + +## 0 Type + +`string` diff --git a/docs/schema/serializedapplogicaction-definitions-serializedupdateappactivitiesaction-properties-removed-items-items-1.md b/docs/schema/serializedapplogicaction-definitions-serializedupdateappactivitiesaction-properties-removed-items-items-1.md new file mode 100644 index 0000000..d65cb47 --- /dev/null +++ b/docs/schema/serializedapplogicaction-definitions-serializedupdateappactivitiesaction-properties-removed-items-items-1.md @@ -0,0 +1,16 @@ +# Untitled string in SerializedAppLogicAction Schema + +```txt +https://timelimit.io/SerializedAppLogicAction#/definitions/SerializedUpdateAppActivitiesAction/properties/removed/items/items/1 +``` + + + + +| Abstract | Extensible | Status | Identifiable | Custom Properties | Additional Properties | Access Restrictions | Defined In | +| :------------------ | ---------- | -------------- | ----------------------- | :---------------- | --------------------- | ------------------- | ----------------------------------------------------------------------------------------------------- | +| Can be instantiated | No | Unknown status | Unknown identifiability | Forbidden | Allowed | none | [SerializedAppLogicAction.schema.json\*](SerializedAppLogicAction.schema.json "open original schema") | + +## 1 Type + +`string` diff --git a/docs/schema/serializedapplogicaction-definitions-serializedupdateappactivitiesaction-properties-removed-items.md b/docs/schema/serializedapplogicaction-definitions-serializedupdateappactivitiesaction-properties-removed-items.md new file mode 100644 index 0000000..6bec207 --- /dev/null +++ b/docs/schema/serializedapplogicaction-definitions-serializedupdateappactivitiesaction-properties-removed-items.md @@ -0,0 +1,24 @@ +# Untitled array in SerializedAppLogicAction Schema + +```txt +https://timelimit.io/SerializedAppLogicAction#/definitions/SerializedUpdateAppActivitiesAction/properties/removed/items +``` + + + + +| Abstract | Extensible | Status | Identifiable | Custom Properties | Additional Properties | Access Restrictions | Defined In | +| :------------------ | ---------- | -------------- | ----------------------- | :---------------- | --------------------- | ------------------- | ----------------------------------------------------------------------------------------------------- | +| Can be instantiated | No | Unknown status | Unknown identifiability | Forbidden | Allowed | none | [SerializedAppLogicAction.schema.json\*](SerializedAppLogicAction.schema.json "open original schema") | + +## items Type + +an array where each item follows the corresponding schema in the following list: + +1. [Untitled string in SerializedAppLogicAction](serializedapplogicaction-definitions-serializedupdateappactivitiesaction-properties-removed-items-items-0.md "check type definition") +2. [Untitled string in SerializedAppLogicAction](serializedapplogicaction-definitions-serializedupdateappactivitiesaction-properties-removed-items-items-1.md "check type definition") +3. and all following items must follow the schema: [Untitled undefined type in SerializedAppLogicAction](serializedapplogicaction-definitions-serializedupdateappactivitiesaction-properties-removed-items-additionalitems.md "check type definition") + +## items Constraints + +**minimum number of items**: the minimum number of items for this array is: `2` diff --git a/docs/schema/serializedapplogicaction-definitions-serializedupdateappactivitiesaction-properties-removed.md b/docs/schema/serializedapplogicaction-definitions-serializedupdateappactivitiesaction-properties-removed.md new file mode 100644 index 0000000..811f86f --- /dev/null +++ b/docs/schema/serializedapplogicaction-definitions-serializedupdateappactivitiesaction-properties-removed.md @@ -0,0 +1,20 @@ +# Untitled array in SerializedAppLogicAction Schema + +```txt +https://timelimit.io/SerializedAppLogicAction#/definitions/SerializedUpdateAppActivitiesAction/properties/removed +``` + + + + +| Abstract | Extensible | Status | Identifiable | Custom Properties | Additional Properties | Access Restrictions | Defined In | +| :------------------ | ---------- | -------------- | ----------------------- | :---------------- | --------------------- | ------------------- | ----------------------------------------------------------------------------------------------------- | +| Can be instantiated | No | Unknown status | Unknown identifiability | Forbidden | Allowed | none | [SerializedAppLogicAction.schema.json\*](SerializedAppLogicAction.schema.json "open original schema") | + +## removed Type + +an array where each item follows the corresponding schema in the following list: + +1. [Untitled string in SerializedAppLogicAction](serializedapplogicaction-definitions-serializedupdateappactivitiesaction-properties-removed-items-items-0.md "check type definition") +2. [Untitled string in SerializedAppLogicAction](serializedapplogicaction-definitions-serializedupdateappactivitiesaction-properties-removed-items-items-1.md "check type definition") +3. and all following items must follow the schema: [Untitled undefined type in SerializedAppLogicAction](serializedapplogicaction-definitions-serializedupdateappactivitiesaction-properties-removed-items-additionalitems.md "check type definition") diff --git a/docs/schema/serializedapplogicaction-definitions-serializedupdateappactivitiesaction-properties-type.md b/docs/schema/serializedapplogicaction-definitions-serializedupdateappactivitiesaction-properties-type.md new file mode 100644 index 0000000..92b925f --- /dev/null +++ b/docs/schema/serializedapplogicaction-definitions-serializedupdateappactivitiesaction-properties-type.md @@ -0,0 +1,24 @@ +# Untitled string in SerializedAppLogicAction Schema + +```txt +https://timelimit.io/SerializedAppLogicAction#/definitions/SerializedUpdateAppActivitiesAction/properties/type +``` + + + + +| Abstract | Extensible | Status | Identifiable | Custom Properties | Additional Properties | Access Restrictions | Defined In | +| :------------------ | ---------- | -------------- | ----------------------- | :---------------- | --------------------- | ------------------- | ----------------------------------------------------------------------------------------------------- | +| Can be instantiated | No | Unknown status | Unknown identifiability | Forbidden | Allowed | none | [SerializedAppLogicAction.schema.json\*](SerializedAppLogicAction.schema.json "open original schema") | + +## type Type + +`string` + +## type Constraints + +**enum**: the value of this property must be equal to one of the following values: + +| Value | Explanation | +| :------------------------ | ----------- | +| `"UPDATE_APP_ACTIVITIES"` | | diff --git a/docs/schema/serializedapplogicaction-definitions-serializedupdateappactivitiesaction-properties-updatedoradded.md b/docs/schema/serializedapplogicaction-definitions-serializedupdateappactivitiesaction-properties-updatedoradded.md new file mode 100644 index 0000000..e02a0e4 --- /dev/null +++ b/docs/schema/serializedapplogicaction-definitions-serializedupdateappactivitiesaction-properties-updatedoradded.md @@ -0,0 +1,16 @@ +# Untitled array in SerializedAppLogicAction Schema + +```txt +https://timelimit.io/SerializedAppLogicAction#/definitions/SerializedUpdateAppActivitiesAction/properties/updatedOrAdded +``` + + + + +| Abstract | Extensible | Status | Identifiable | Custom Properties | Additional Properties | Access Restrictions | Defined In | +| :------------------ | ---------- | -------------- | ----------------------- | :---------------- | --------------------- | ------------------- | ----------------------------------------------------------------------------------------------------- | +| Can be instantiated | No | Unknown status | Unknown identifiability | Forbidden | Allowed | none | [SerializedAppLogicAction.schema.json\*](SerializedAppLogicAction.schema.json "open original schema") | + +## updatedOrAdded Type + +`object[]` ([SerializedAppActivityItem](serializedapplogicaction-definitions-serializedappactivityitem.md)) diff --git a/docs/schema/serializedapplogicaction-definitions-serializedupdateappactivitiesaction-properties.md b/docs/schema/serializedapplogicaction-definitions-serializedupdateappactivitiesaction-properties.md new file mode 100644 index 0000000..b055a29 --- /dev/null +++ b/docs/schema/serializedapplogicaction-definitions-serializedupdateappactivitiesaction-properties.md @@ -0,0 +1,16 @@ +# Untitled undefined type in SerializedAppLogicAction Schema + +```txt +https://timelimit.io/SerializedAppLogicAction#/definitions/SerializedUpdateAppActivitiesAction/properties +``` + + + + +| Abstract | Extensible | Status | Identifiable | Custom Properties | Additional Properties | Access Restrictions | Defined In | +| :------------------ | ---------- | -------------- | ----------------------- | :---------------- | --------------------- | ------------------- | ----------------------------------------------------------------------------------------------------- | +| Can be instantiated | No | Unknown status | Unknown identifiability | Forbidden | Allowed | none | [SerializedAppLogicAction.schema.json\*](SerializedAppLogicAction.schema.json "open original schema") | + +## properties Type + +unknown diff --git a/docs/schema/serializedapplogicaction-definitions-serializedupdateappactivitiesaction.md b/docs/schema/serializedapplogicaction-definitions-serializedupdateappactivitiesaction.md new file mode 100644 index 0000000..a55ec4e --- /dev/null +++ b/docs/schema/serializedapplogicaction-definitions-serializedupdateappactivitiesaction.md @@ -0,0 +1,88 @@ +# SerializedUpdateAppActivitiesAction Schema + +```txt +https://timelimit.io/SerializedAppLogicAction#/definitions/SerializedUpdateAppActivitiesAction +``` + + + + +| Abstract | Extensible | Status | Identifiable | Custom Properties | Additional Properties | Access Restrictions | Defined In | +| :------------------ | ---------- | -------------- | ------------ | :---------------- | --------------------- | ------------------- | ----------------------------------------------------------------------------------------------------- | +| Can be instantiated | No | Unknown status | No | Forbidden | Forbidden | none | [SerializedAppLogicAction.schema.json\*](SerializedAppLogicAction.schema.json "open original schema") | + +## SerializedUpdateAppActivitiesAction Type + +`object` ([SerializedUpdateAppActivitiesAction](serializedapplogicaction-definitions-serializedupdateappactivitiesaction.md)) + +# SerializedUpdateAppActivitiesAction Properties + +| Property | Type | Required | Nullable | Defined by | +| :-------------------------------- | -------- | -------- | -------------- | :---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | +| [type](#type) | `string` | Required | cannot be null | [SerializedAppLogicAction](serializedapplogicaction-definitions-serializedupdateappactivitiesaction-properties-type.md "https://timelimit.io/SerializedAppLogicAction#/definitions/SerializedUpdateAppActivitiesAction/properties/type") | +| [removed](#removed) | `array` | Required | cannot be null | [SerializedAppLogicAction](serializedapplogicaction-definitions-serializedupdateappactivitiesaction-properties-removed.md "https://timelimit.io/SerializedAppLogicAction#/definitions/SerializedUpdateAppActivitiesAction/properties/removed") | +| [updatedOrAdded](#updatedOrAdded) | `array` | Required | cannot be null | [SerializedAppLogicAction](serializedapplogicaction-definitions-serializedupdateappactivitiesaction-properties-updatedoradded.md "https://timelimit.io/SerializedAppLogicAction#/definitions/SerializedUpdateAppActivitiesAction/properties/updatedOrAdded") | + +## type + + + + +`type` + +- is required +- Type: `string` +- cannot be null +- defined in: [SerializedAppLogicAction](serializedapplogicaction-definitions-serializedupdateappactivitiesaction-properties-type.md "https://timelimit.io/SerializedAppLogicAction#/definitions/SerializedUpdateAppActivitiesAction/properties/type") + +### type Type + +`string` + +### type Constraints + +**enum**: the value of this property must be equal to one of the following values: + +| Value | Explanation | +| :------------------------ | ----------- | +| `"UPDATE_APP_ACTIVITIES"` | | + +## removed + + + + +`removed` + +- is required +- Type: an array where each item follows the corresponding schema in the following list: + + 1. [Untitled string in SerializedAppLogicAction](serializedapplogicaction-definitions-serializedupdateappactivitiesaction-properties-removed-items-items-0.md "check type definition") + 2. [Untitled string in SerializedAppLogicAction](serializedapplogicaction-definitions-serializedupdateappactivitiesaction-properties-removed-items-items-1.md "check type definition") + 3. and all following items must follow the schema: [Untitled undefined type in SerializedAppLogicAction](serializedapplogicaction-definitions-serializedupdateappactivitiesaction-properties-removed-items-additionalitems.md "check type definition") +- cannot be null +- defined in: [SerializedAppLogicAction](serializedapplogicaction-definitions-serializedupdateappactivitiesaction-properties-removed.md "https://timelimit.io/SerializedAppLogicAction#/definitions/SerializedUpdateAppActivitiesAction/properties/removed") + +### removed Type + +an array where each item follows the corresponding schema in the following list: + +1. [Untitled string in SerializedAppLogicAction](serializedapplogicaction-definitions-serializedupdateappactivitiesaction-properties-removed-items-items-0.md "check type definition") +2. [Untitled string in SerializedAppLogicAction](serializedapplogicaction-definitions-serializedupdateappactivitiesaction-properties-removed-items-items-1.md "check type definition") +3. and all following items must follow the schema: [Untitled undefined type in SerializedAppLogicAction](serializedapplogicaction-definitions-serializedupdateappactivitiesaction-properties-removed-items-additionalitems.md "check type definition") + +## updatedOrAdded + + + + +`updatedOrAdded` + +- is required +- Type: `object[]` ([SerializedAppActivityItem](serializedapplogicaction-definitions-serializedappactivityitem.md)) +- cannot be null +- defined in: [SerializedAppLogicAction](serializedapplogicaction-definitions-serializedupdateappactivitiesaction-properties-updatedoradded.md "https://timelimit.io/SerializedAppLogicAction#/definitions/SerializedUpdateAppActivitiesAction/properties/updatedOrAdded") + +### updatedOrAdded Type + +`object[]` ([SerializedAppActivityItem](serializedapplogicaction-definitions-serializedappactivityitem.md)) diff --git a/docs/schema/serializedapplogicaction-definitions-serializedupdatedevicestatusaction-properties-accessibilityserviceenabled.md b/docs/schema/serializedapplogicaction-definitions-serializedupdatedevicestatusaction-properties-accessibilityserviceenabled.md new file mode 100644 index 0000000..1996a4a --- /dev/null +++ b/docs/schema/serializedapplogicaction-definitions-serializedupdatedevicestatusaction-properties-accessibilityserviceenabled.md @@ -0,0 +1,16 @@ +# Untitled boolean in SerializedAppLogicAction Schema + +```txt +https://timelimit.io/SerializedAppLogicAction#/definitions/SerializedUpdateDeviceStatusAction/properties/accessibilityServiceEnabled +``` + + + + +| Abstract | Extensible | Status | Identifiable | Custom Properties | Additional Properties | Access Restrictions | Defined In | +| :------------------ | ---------- | -------------- | ----------------------- | :---------------- | --------------------- | ------------------- | ----------------------------------------------------------------------------------------------------- | +| Can be instantiated | No | Unknown status | Unknown identifiability | Forbidden | Allowed | none | [SerializedAppLogicAction.schema.json\*](SerializedAppLogicAction.schema.json "open original schema") | + +## accessibilityServiceEnabled Type + +`boolean` diff --git a/docs/schema/serializedapplogicaction-definitions-serializedupdatedevicestatusaction-properties-appversion.md b/docs/schema/serializedapplogicaction-definitions-serializedupdatedevicestatusaction-properties-appversion.md new file mode 100644 index 0000000..f2e47cb --- /dev/null +++ b/docs/schema/serializedapplogicaction-definitions-serializedupdatedevicestatusaction-properties-appversion.md @@ -0,0 +1,16 @@ +# Untitled number in SerializedAppLogicAction Schema + +```txt +https://timelimit.io/SerializedAppLogicAction#/definitions/SerializedUpdateDeviceStatusAction/properties/appVersion +``` + + + + +| Abstract | Extensible | Status | Identifiable | Custom Properties | Additional Properties | Access Restrictions | Defined In | +| :------------------ | ---------- | -------------- | ----------------------- | :---------------- | --------------------- | ------------------- | ----------------------------------------------------------------------------------------------------- | +| Can be instantiated | No | Unknown status | Unknown identifiability | Forbidden | Allowed | none | [SerializedAppLogicAction.schema.json\*](SerializedAppLogicAction.schema.json "open original schema") | + +## appVersion Type + +`number` diff --git a/docs/schema/serializedapplogicaction-definitions-serializedupdatedevicestatusaction-properties-didreboot.md b/docs/schema/serializedapplogicaction-definitions-serializedupdatedevicestatusaction-properties-didreboot.md new file mode 100644 index 0000000..37a1d94 --- /dev/null +++ b/docs/schema/serializedapplogicaction-definitions-serializedupdatedevicestatusaction-properties-didreboot.md @@ -0,0 +1,16 @@ +# Untitled boolean in SerializedAppLogicAction Schema + +```txt +https://timelimit.io/SerializedAppLogicAction#/definitions/SerializedUpdateDeviceStatusAction/properties/didReboot +``` + + + + +| Abstract | Extensible | Status | Identifiable | Custom Properties | Additional Properties | Access Restrictions | Defined In | +| :------------------ | ---------- | -------------- | ----------------------- | :---------------- | --------------------- | ------------------- | ----------------------------------------------------------------------------------------------------- | +| Can be instantiated | No | Unknown status | Unknown identifiability | Forbidden | Allowed | none | [SerializedAppLogicAction.schema.json\*](SerializedAppLogicAction.schema.json "open original schema") | + +## didReboot Type + +`boolean` diff --git a/docs/schema/serializedapplogicaction-definitions-serializedupdatedevicestatusaction-properties-isqorlaternow.md b/docs/schema/serializedapplogicaction-definitions-serializedupdatedevicestatusaction-properties-isqorlaternow.md new file mode 100644 index 0000000..b50f9e5 --- /dev/null +++ b/docs/schema/serializedapplogicaction-definitions-serializedupdatedevicestatusaction-properties-isqorlaternow.md @@ -0,0 +1,16 @@ +# Untitled boolean in SerializedAppLogicAction Schema + +```txt +https://timelimit.io/SerializedAppLogicAction#/definitions/SerializedUpdateDeviceStatusAction/properties/isQOrLaterNow +``` + + + + +| Abstract | Extensible | Status | Identifiable | Custom Properties | Additional Properties | Access Restrictions | Defined In | +| :------------------ | ---------- | -------------- | ----------------------- | :---------------- | --------------------- | ------------------- | ----------------------------------------------------------------------------------------------------- | +| Can be instantiated | No | Unknown status | Unknown identifiability | Forbidden | Allowed | none | [SerializedAppLogicAction.schema.json\*](SerializedAppLogicAction.schema.json "open original schema") | + +## isQOrLaterNow Type + +`boolean` diff --git a/docs/schema/serializedapplogicaction-definitions-serializedupdatedevicestatusaction-properties-notificationaccess.md b/docs/schema/serializedapplogicaction-definitions-serializedupdatedevicestatusaction-properties-notificationaccess.md new file mode 100644 index 0000000..683c726 --- /dev/null +++ b/docs/schema/serializedapplogicaction-definitions-serializedupdatedevicestatusaction-properties-notificationaccess.md @@ -0,0 +1,26 @@ +# Untitled string in SerializedAppLogicAction Schema + +```txt +https://timelimit.io/SerializedAppLogicAction#/definitions/SerializedUpdateDeviceStatusAction/properties/notificationAccess +``` + + + + +| Abstract | Extensible | Status | Identifiable | Custom Properties | Additional Properties | Access Restrictions | Defined In | +| :------------------ | ---------- | -------------- | ----------------------- | :---------------- | --------------------- | ------------------- | ----------------------------------------------------------------------------------------------------- | +| Can be instantiated | No | Unknown status | Unknown identifiability | Forbidden | Allowed | none | [SerializedAppLogicAction.schema.json\*](SerializedAppLogicAction.schema.json "open original schema") | + +## notificationAccess Type + +`string` + +## notificationAccess Constraints + +**enum**: the value of this property must be equal to one of the following values: + +| Value | Explanation | +| :---------------- | ----------- | +| `"granted"` | | +| `"not granted"` | | +| `"not supported"` | | diff --git a/docs/schema/serializedapplogicaction-definitions-serializedupdatedevicestatusaction-properties-overlaypermission.md b/docs/schema/serializedapplogicaction-definitions-serializedupdatedevicestatusaction-properties-overlaypermission.md new file mode 100644 index 0000000..082f9a2 --- /dev/null +++ b/docs/schema/serializedapplogicaction-definitions-serializedupdatedevicestatusaction-properties-overlaypermission.md @@ -0,0 +1,26 @@ +# Untitled string in SerializedAppLogicAction Schema + +```txt +https://timelimit.io/SerializedAppLogicAction#/definitions/SerializedUpdateDeviceStatusAction/properties/overlayPermission +``` + + + + +| Abstract | Extensible | Status | Identifiable | Custom Properties | Additional Properties | Access Restrictions | Defined In | +| :------------------ | ---------- | -------------- | ----------------------- | :---------------- | --------------------- | ------------------- | ----------------------------------------------------------------------------------------------------- | +| Can be instantiated | No | Unknown status | Unknown identifiability | Forbidden | Allowed | none | [SerializedAppLogicAction.schema.json\*](SerializedAppLogicAction.schema.json "open original schema") | + +## overlayPermission Type + +`string` + +## overlayPermission Constraints + +**enum**: the value of this property must be equal to one of the following values: + +| Value | Explanation | +| :--------------- | ----------- | +| `"granted"` | | +| `"not granted"` | | +| `"not required"` | | diff --git a/docs/schema/serializedapplogicaction-definitions-serializedupdatedevicestatusaction-properties-protectionlevel.md b/docs/schema/serializedapplogicaction-definitions-serializedupdatedevicestatusaction-properties-protectionlevel.md new file mode 100644 index 0000000..3e6cc3d --- /dev/null +++ b/docs/schema/serializedapplogicaction-definitions-serializedupdatedevicestatusaction-properties-protectionlevel.md @@ -0,0 +1,27 @@ +# Untitled string in SerializedAppLogicAction Schema + +```txt +https://timelimit.io/SerializedAppLogicAction#/definitions/SerializedUpdateDeviceStatusAction/properties/protectionLevel +``` + + + + +| Abstract | Extensible | Status | Identifiable | Custom Properties | Additional Properties | Access Restrictions | Defined In | +| :------------------ | ---------- | -------------- | ----------------------- | :---------------- | --------------------- | ------------------- | ----------------------------------------------------------------------------------------------------- | +| Can be instantiated | No | Unknown status | Unknown identifiability | Forbidden | Allowed | none | [SerializedAppLogicAction.schema.json\*](SerializedAppLogicAction.schema.json "open original schema") | + +## protectionLevel Type + +`string` + +## 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"` | | diff --git a/docs/schema/serializedapplogicaction-definitions-serializedupdatedevicestatusaction-properties-type.md b/docs/schema/serializedapplogicaction-definitions-serializedupdatedevicestatusaction-properties-type.md new file mode 100644 index 0000000..ab82e03 --- /dev/null +++ b/docs/schema/serializedapplogicaction-definitions-serializedupdatedevicestatusaction-properties-type.md @@ -0,0 +1,24 @@ +# Untitled string in SerializedAppLogicAction Schema + +```txt +https://timelimit.io/SerializedAppLogicAction#/definitions/SerializedUpdateDeviceStatusAction/properties/type +``` + + + + +| Abstract | Extensible | Status | Identifiable | Custom Properties | Additional Properties | Access Restrictions | Defined In | +| :------------------ | ---------- | -------------- | ----------------------- | :---------------- | --------------------- | ------------------- | ----------------------------------------------------------------------------------------------------- | +| Can be instantiated | No | Unknown status | Unknown identifiability | Forbidden | Allowed | none | [SerializedAppLogicAction.schema.json\*](SerializedAppLogicAction.schema.json "open original schema") | + +## type Type + +`string` + +## type Constraints + +**enum**: the value of this property must be equal to one of the following values: + +| Value | Explanation | +| :----------------------- | ----------- | +| `"UPDATE_DEVICE_STATUS"` | | diff --git a/docs/schema/serializedapplogicaction-definitions-serializedupdatedevicestatusaction-properties-usagestats.md b/docs/schema/serializedapplogicaction-definitions-serializedupdatedevicestatusaction-properties-usagestats.md new file mode 100644 index 0000000..a9f13ff --- /dev/null +++ b/docs/schema/serializedapplogicaction-definitions-serializedupdatedevicestatusaction-properties-usagestats.md @@ -0,0 +1,26 @@ +# Untitled string in SerializedAppLogicAction Schema + +```txt +https://timelimit.io/SerializedAppLogicAction#/definitions/SerializedUpdateDeviceStatusAction/properties/usageStats +``` + + + + +| Abstract | Extensible | Status | Identifiable | Custom Properties | Additional Properties | Access Restrictions | Defined In | +| :------------------ | ---------- | -------------- | ----------------------- | :---------------- | --------------------- | ------------------- | ----------------------------------------------------------------------------------------------------- | +| Can be instantiated | No | Unknown status | Unknown identifiability | Forbidden | Allowed | none | [SerializedAppLogicAction.schema.json\*](SerializedAppLogicAction.schema.json "open original schema") | + +## usageStats Type + +`string` + +## usageStats Constraints + +**enum**: the value of this property must be equal to one of the following values: + +| Value | Explanation | +| :--------------- | ----------- | +| `"granted"` | | +| `"not granted"` | | +| `"not required"` | | diff --git a/docs/schema/serializedapplogicaction-definitions-serializedupdatedevicestatusaction-properties.md b/docs/schema/serializedapplogicaction-definitions-serializedupdatedevicestatusaction-properties.md new file mode 100644 index 0000000..18fb4ae --- /dev/null +++ b/docs/schema/serializedapplogicaction-definitions-serializedupdatedevicestatusaction-properties.md @@ -0,0 +1,16 @@ +# Untitled undefined type in SerializedAppLogicAction Schema + +```txt +https://timelimit.io/SerializedAppLogicAction#/definitions/SerializedUpdateDeviceStatusAction/properties +``` + + + + +| Abstract | Extensible | Status | Identifiable | Custom Properties | Additional Properties | Access Restrictions | Defined In | +| :------------------ | ---------- | -------------- | ----------------------- | :---------------- | --------------------- | ------------------- | ----------------------------------------------------------------------------------------------------- | +| Can be instantiated | No | Unknown status | Unknown identifiability | Forbidden | Allowed | none | [SerializedAppLogicAction.schema.json\*](SerializedAppLogicAction.schema.json "open original schema") | + +## properties Type + +unknown diff --git a/docs/schema/serializedapplogicaction-definitions-serializedupdatedevicestatusaction.md b/docs/schema/serializedapplogicaction-definitions-serializedupdatedevicestatusaction.md new file mode 100644 index 0000000..1c24cb3 --- /dev/null +++ b/docs/schema/serializedapplogicaction-definitions-serializedupdatedevicestatusaction.md @@ -0,0 +1,223 @@ +# SerializedUpdateDeviceStatusAction Schema + +```txt +https://timelimit.io/SerializedAppLogicAction#/definitions/SerializedUpdateDeviceStatusAction +``` + + + + +| Abstract | Extensible | Status | Identifiable | Custom Properties | Additional Properties | Access Restrictions | Defined In | +| :------------------ | ---------- | -------------- | ------------ | :---------------- | --------------------- | ------------------- | ----------------------------------------------------------------------------------------------------- | +| Can be instantiated | No | Unknown status | No | Forbidden | Forbidden | none | [SerializedAppLogicAction.schema.json\*](SerializedAppLogicAction.schema.json "open original schema") | + +## SerializedUpdateDeviceStatusAction Type + +`object` ([SerializedUpdateDeviceStatusAction](serializedapplogicaction-definitions-serializedupdatedevicestatusaction.md)) + +# SerializedUpdateDeviceStatusAction Properties + +| Property | Type | Required | Nullable | Defined by | +| :---------------------------------------------------------- | --------- | -------- | -------------- | :---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | +| [type](#type) | `string` | Required | cannot be null | [SerializedAppLogicAction](serializedapplogicaction-definitions-serializedupdatedevicestatusaction-properties-type.md "https://timelimit.io/SerializedAppLogicAction#/definitions/SerializedUpdateDeviceStatusAction/properties/type") | +| [protectionLevel](#protectionLevel) | `string` | Optional | cannot be null | [SerializedAppLogicAction](serializedapplogicaction-definitions-serializedupdatedevicestatusaction-properties-protectionlevel.md "https://timelimit.io/SerializedAppLogicAction#/definitions/SerializedUpdateDeviceStatusAction/properties/protectionLevel") | +| [usageStats](#usageStats) | `string` | Optional | cannot be null | [SerializedAppLogicAction](serializedapplogicaction-definitions-serializedupdatedevicestatusaction-properties-usagestats.md "https://timelimit.io/SerializedAppLogicAction#/definitions/SerializedUpdateDeviceStatusAction/properties/usageStats") | +| [notificationAccess](#notificationAccess) | `string` | Optional | cannot be null | [SerializedAppLogicAction](serializedapplogicaction-definitions-serializedupdatedevicestatusaction-properties-notificationaccess.md "https://timelimit.io/SerializedAppLogicAction#/definitions/SerializedUpdateDeviceStatusAction/properties/notificationAccess") | +| [overlayPermission](#overlayPermission) | `string` | Optional | cannot be null | [SerializedAppLogicAction](serializedapplogicaction-definitions-serializedupdatedevicestatusaction-properties-overlaypermission.md "https://timelimit.io/SerializedAppLogicAction#/definitions/SerializedUpdateDeviceStatusAction/properties/overlayPermission") | +| [accessibilityServiceEnabled](#accessibilityServiceEnabled) | `boolean` | Optional | cannot be null | [SerializedAppLogicAction](serializedapplogicaction-definitions-serializedupdatedevicestatusaction-properties-accessibilityserviceenabled.md "https://timelimit.io/SerializedAppLogicAction#/definitions/SerializedUpdateDeviceStatusAction/properties/accessibilityServiceEnabled") | +| [appVersion](#appVersion) | `number` | Optional | cannot be null | [SerializedAppLogicAction](serializedapplogicaction-definitions-serializedupdatedevicestatusaction-properties-appversion.md "https://timelimit.io/SerializedAppLogicAction#/definitions/SerializedUpdateDeviceStatusAction/properties/appVersion") | +| [didReboot](#didReboot) | `boolean` | Optional | cannot be null | [SerializedAppLogicAction](serializedapplogicaction-definitions-serializedupdatedevicestatusaction-properties-didreboot.md "https://timelimit.io/SerializedAppLogicAction#/definitions/SerializedUpdateDeviceStatusAction/properties/didReboot") | +| [isQOrLaterNow](#isQOrLaterNow) | `boolean` | Optional | cannot be null | [SerializedAppLogicAction](serializedapplogicaction-definitions-serializedupdatedevicestatusaction-properties-isqorlaternow.md "https://timelimit.io/SerializedAppLogicAction#/definitions/SerializedUpdateDeviceStatusAction/properties/isQOrLaterNow") | + +## type + + + + +`type` + +- is required +- Type: `string` +- cannot be null +- defined in: [SerializedAppLogicAction](serializedapplogicaction-definitions-serializedupdatedevicestatusaction-properties-type.md "https://timelimit.io/SerializedAppLogicAction#/definitions/SerializedUpdateDeviceStatusAction/properties/type") + +### type Type + +`string` + +### type Constraints + +**enum**: the value of this property must be equal to one of the following values: + +| Value | Explanation | +| :----------------------- | ----------- | +| `"UPDATE_DEVICE_STATUS"` | | + +## protectionLevel + + + + +`protectionLevel` + +- is optional +- Type: `string` +- cannot be null +- defined in: [SerializedAppLogicAction](serializedapplogicaction-definitions-serializedupdatedevicestatusaction-properties-protectionlevel.md "https://timelimit.io/SerializedAppLogicAction#/definitions/SerializedUpdateDeviceStatusAction/properties/protectionLevel") + +### protectionLevel Type + +`string` + +### 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"` | | + +## usageStats + + + + +`usageStats` + +- is optional +- Type: `string` +- cannot be null +- defined in: [SerializedAppLogicAction](serializedapplogicaction-definitions-serializedupdatedevicestatusaction-properties-usagestats.md "https://timelimit.io/SerializedAppLogicAction#/definitions/SerializedUpdateDeviceStatusAction/properties/usageStats") + +### usageStats Type + +`string` + +### usageStats Constraints + +**enum**: the value of this property must be equal to one of the following values: + +| Value | Explanation | +| :--------------- | ----------- | +| `"granted"` | | +| `"not granted"` | | +| `"not required"` | | + +## notificationAccess + + + + +`notificationAccess` + +- is optional +- Type: `string` +- cannot be null +- defined in: [SerializedAppLogicAction](serializedapplogicaction-definitions-serializedupdatedevicestatusaction-properties-notificationaccess.md "https://timelimit.io/SerializedAppLogicAction#/definitions/SerializedUpdateDeviceStatusAction/properties/notificationAccess") + +### notificationAccess Type + +`string` + +### notificationAccess Constraints + +**enum**: the value of this property must be equal to one of the following values: + +| Value | Explanation | +| :---------------- | ----------- | +| `"granted"` | | +| `"not granted"` | | +| `"not supported"` | | + +## overlayPermission + + + + +`overlayPermission` + +- is optional +- Type: `string` +- cannot be null +- defined in: [SerializedAppLogicAction](serializedapplogicaction-definitions-serializedupdatedevicestatusaction-properties-overlaypermission.md "https://timelimit.io/SerializedAppLogicAction#/definitions/SerializedUpdateDeviceStatusAction/properties/overlayPermission") + +### overlayPermission Type + +`string` + +### overlayPermission Constraints + +**enum**: the value of this property must be equal to one of the following values: + +| Value | Explanation | +| :--------------- | ----------- | +| `"granted"` | | +| `"not granted"` | | +| `"not required"` | | + +## accessibilityServiceEnabled + + + + +`accessibilityServiceEnabled` + +- is optional +- Type: `boolean` +- cannot be null +- defined in: [SerializedAppLogicAction](serializedapplogicaction-definitions-serializedupdatedevicestatusaction-properties-accessibilityserviceenabled.md "https://timelimit.io/SerializedAppLogicAction#/definitions/SerializedUpdateDeviceStatusAction/properties/accessibilityServiceEnabled") + +### accessibilityServiceEnabled Type + +`boolean` + +## appVersion + + + + +`appVersion` + +- is optional +- Type: `number` +- cannot be null +- defined in: [SerializedAppLogicAction](serializedapplogicaction-definitions-serializedupdatedevicestatusaction-properties-appversion.md "https://timelimit.io/SerializedAppLogicAction#/definitions/SerializedUpdateDeviceStatusAction/properties/appVersion") + +### appVersion Type + +`number` + +## didReboot + + + + +`didReboot` + +- is optional +- Type: `boolean` +- cannot be null +- defined in: [SerializedAppLogicAction](serializedapplogicaction-definitions-serializedupdatedevicestatusaction-properties-didreboot.md "https://timelimit.io/SerializedAppLogicAction#/definitions/SerializedUpdateDeviceStatusAction/properties/didReboot") + +### didReboot Type + +`boolean` + +## isQOrLaterNow + + + + +`isQOrLaterNow` + +- is optional +- Type: `boolean` +- cannot be null +- defined in: [SerializedAppLogicAction](serializedapplogicaction-definitions-serializedupdatedevicestatusaction-properties-isqorlaternow.md "https://timelimit.io/SerializedAppLogicAction#/definitions/SerializedUpdateDeviceStatusAction/properties/isQOrLaterNow") + +### isQOrLaterNow Type + +`boolean` diff --git a/docs/schema/serializedapplogicaction-definitions.md b/docs/schema/serializedapplogicaction-definitions.md new file mode 100644 index 0000000..0dd2d5a --- /dev/null +++ b/docs/schema/serializedapplogicaction-definitions.md @@ -0,0 +1,16 @@ +# Untitled undefined type in SerializedAppLogicAction Schema + +```txt +https://timelimit.io/SerializedAppLogicAction#/definitions +``` + + + + +| Abstract | Extensible | Status | Identifiable | Custom Properties | Additional Properties | Access Restrictions | Defined In | +| :------------------ | ---------- | -------------- | ----------------------- | :---------------- | --------------------- | ------------------- | ----------------------------------------------------------------------------------------------------- | +| Can be instantiated | No | Unknown status | Unknown identifiability | Forbidden | Allowed | none | [SerializedAppLogicAction.schema.json\*](SerializedAppLogicAction.schema.json "open original schema") | + +## definitions Type + +unknown diff --git a/docs/schema/serializedapplogicaction.md b/docs/schema/serializedapplogicaction.md new file mode 100644 index 0000000..8507256 --- /dev/null +++ b/docs/schema/serializedapplogicaction.md @@ -0,0 +1,834 @@ +# SerializedAppLogicAction Schema + +```txt +https://timelimit.io/SerializedAppLogicAction +``` + + + + +| Abstract | Extensible | Status | Identifiable | Custom Properties | Additional Properties | Access Restrictions | Defined In | +| :--------------------- | ---------- | -------------- | ----------------------- | :---------------- | --------------------- | ------------------- | --------------------------------------------------------------------------------------------------- | +| Cannot be instantiated | Yes | Unknown status | Unknown identifiability | Forbidden | Allowed | none | [SerializedAppLogicAction.schema.json](SerializedAppLogicAction.schema.json "open original schema") | + +## SerializedAppLogicAction Type + +merged type ([SerializedAppLogicAction](serializedapplogicaction.md)) + +any of + +- [SerializedAddInstalledAppsAction](serializedapplogicaction-definitions-serializedaddinstalledappsaction.md "check type definition") +- [SerializedAddUsedTimeAction](serializedapplogicaction-definitions-serializedaddusedtimeaction.md "check type definition") +- [SerializedAddUsedTimeActionVersion2](serializedapplogicaction-definitions-serializedaddusedtimeactionversion2.md "check type definition") +- [SerializedRemoveInstalledAppsAction](serializedapplogicaction-definitions-serializedremoveinstalledappsaction.md "check type definition") +- [SerializedSignOutAtDeviceAction](serializedapplogicaction-definitions-serializedsignoutatdeviceaction.md "check type definition") +- [SerialiezdTriedDisablingDeviceAdminAction](serializedapplogicaction-definitions-serialiezdtrieddisablingdeviceadminaction.md "check type definition") +- [SerializedUpdateAppActivitiesAction](serializedapplogicaction-definitions-serializedupdateappactivitiesaction.md "check type definition") +- [SerializedUpdateDeviceStatusAction](serializedapplogicaction-definitions-serializedupdatedevicestatusaction.md "check type definition") + +# SerializedAppLogicAction Definitions + +## Definitions group SerializedAddInstalledAppsAction + +Reference this group by using + +```json +{"$ref":"https://timelimit.io/SerializedAppLogicAction#/definitions/SerializedAddInstalledAppsAction"} +``` + +| Property | Type | Required | Nullable | Defined by | +| :------------ | -------- | -------- | -------------- | :-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | +| [type](#type) | `string` | Required | cannot be null | [SerializedAppLogicAction](serializedapplogicaction-definitions-serializedaddinstalledappsaction-properties-type.md "https://timelimit.io/SerializedAppLogicAction#/definitions/SerializedAddInstalledAppsAction/properties/type") | +| [apps](#apps) | `array` | Required | cannot be null | [SerializedAppLogicAction](serializedapplogicaction-definitions-serializedaddinstalledappsaction-properties-apps.md "https://timelimit.io/SerializedAppLogicAction#/definitions/SerializedAddInstalledAppsAction/properties/apps") | + +### type + + + + +`type` + +- is required +- Type: `string` +- cannot be null +- defined in: [SerializedAppLogicAction](serializedapplogicaction-definitions-serializedaddinstalledappsaction-properties-type.md "https://timelimit.io/SerializedAppLogicAction#/definitions/SerializedAddInstalledAppsAction/properties/type") + +#### type Type + +`string` + +#### type Constraints + +**enum**: the value of this property must be equal to one of the following values: + +| Value | Explanation | +| :--------------------- | ----------- | +| `"ADD_INSTALLED_APPS"` | | + +### apps + + + + +`apps` + +- is required +- Type: `object[]` ([SerializedInstalledApp](serializedapplogicaction-definitions-serializedinstalledapp.md)) +- cannot be null +- defined in: [SerializedAppLogicAction](serializedapplogicaction-definitions-serializedaddinstalledappsaction-properties-apps.md "https://timelimit.io/SerializedAppLogicAction#/definitions/SerializedAddInstalledAppsAction/properties/apps") + +#### apps Type + +`object[]` ([SerializedInstalledApp](serializedapplogicaction-definitions-serializedinstalledapp.md)) + +## Definitions group SerializedInstalledApp + +Reference this group by using + +```json +{"$ref":"https://timelimit.io/SerializedAppLogicAction#/definitions/SerializedInstalledApp"} +``` + +| Property | Type | Required | Nullable | Defined by | +| :-------------------------------- | --------- | -------- | -------------- | :----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | +| [packageName](#packageName) | `string` | Required | cannot be null | [SerializedAppLogicAction](serializedapplogicaction-definitions-serializedinstalledapp-properties-packagename.md "https://timelimit.io/SerializedAppLogicAction#/definitions/SerializedInstalledApp/properties/packageName") | +| [title](#title) | `string` | Required | cannot be null | [SerializedAppLogicAction](serializedapplogicaction-definitions-serializedinstalledapp-properties-title.md "https://timelimit.io/SerializedAppLogicAction#/definitions/SerializedInstalledApp/properties/title") | +| [isLaunchable](#isLaunchable) | `boolean` | Required | cannot be null | [SerializedAppLogicAction](serializedapplogicaction-definitions-serializedinstalledapp-properties-islaunchable.md "https://timelimit.io/SerializedAppLogicAction#/definitions/SerializedInstalledApp/properties/isLaunchable") | +| [recommendation](#recommendation) | `string` | Required | cannot be null | [SerializedAppLogicAction](serializedapplogicaction-definitions-serializedinstalledapp-properties-apprecommendation.md "https://timelimit.io/SerializedAppLogicAction#/definitions/SerializedInstalledApp/properties/recommendation") | + +### packageName + + + + +`packageName` + +- is required +- Type: `string` +- cannot be null +- defined in: [SerializedAppLogicAction](serializedapplogicaction-definitions-serializedinstalledapp-properties-packagename.md "https://timelimit.io/SerializedAppLogicAction#/definitions/SerializedInstalledApp/properties/packageName") + +#### packageName Type + +`string` + +### title + + + + +`title` + +- is required +- Type: `string` +- cannot be null +- defined in: [SerializedAppLogicAction](serializedapplogicaction-definitions-serializedinstalledapp-properties-title.md "https://timelimit.io/SerializedAppLogicAction#/definitions/SerializedInstalledApp/properties/title") + +#### title Type + +`string` + +### isLaunchable + + + + +`isLaunchable` + +- is required +- Type: `boolean` +- cannot be null +- defined in: [SerializedAppLogicAction](serializedapplogicaction-definitions-serializedinstalledapp-properties-islaunchable.md "https://timelimit.io/SerializedAppLogicAction#/definitions/SerializedInstalledApp/properties/isLaunchable") + +#### isLaunchable Type + +`boolean` + +### recommendation + + + + +`recommendation` + +- is required +- Type: `string` ([AppRecommendation](serializedapplogicaction-definitions-serializedinstalledapp-properties-apprecommendation.md)) +- cannot be null +- defined in: [SerializedAppLogicAction](serializedapplogicaction-definitions-serializedinstalledapp-properties-apprecommendation.md "https://timelimit.io/SerializedAppLogicAction#/definitions/SerializedInstalledApp/properties/recommendation") + +#### recommendation Type + +`string` ([AppRecommendation](serializedapplogicaction-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"` | | + +## Definitions group AppRecommendation + +Reference this group by using + +```json +{"$ref":"https://timelimit.io/SerializedAppLogicAction#/definitions/AppRecommendation"} +``` + +| Property | Type | Required | Nullable | Defined by | +| :------- | ---- | -------- | -------- | :--------- | + +## Definitions group SerializedAddUsedTimeAction + +Reference this group by using + +```json +{"$ref":"https://timelimit.io/SerializedAppLogicAction#/definitions/SerializedAddUsedTimeAction"} +``` + +| Property | Type | Required | Nullable | Defined by | +| :------------------------------------------ | -------- | -------- | -------------- | :---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | +| [type](#type) | `string` | Required | cannot be null | [SerializedAppLogicAction](serializedapplogicaction-definitions-serializedaddusedtimeaction-properties-type.md "https://timelimit.io/SerializedAppLogicAction#/definitions/SerializedAddUsedTimeAction/properties/type") | +| [categoryId](#categoryId) | `string` | Required | cannot be null | [SerializedAppLogicAction](serializedapplogicaction-definitions-serializedaddusedtimeaction-properties-categoryid.md "https://timelimit.io/SerializedAppLogicAction#/definitions/SerializedAddUsedTimeAction/properties/categoryId") | +| [day](#day) | `number` | Required | cannot be null | [SerializedAppLogicAction](serializedapplogicaction-definitions-serializedaddusedtimeaction-properties-day.md "https://timelimit.io/SerializedAppLogicAction#/definitions/SerializedAddUsedTimeAction/properties/day") | +| [timeToAdd](#timeToAdd) | `number` | Required | cannot be null | [SerializedAppLogicAction](serializedapplogicaction-definitions-serializedaddusedtimeaction-properties-timetoadd.md "https://timelimit.io/SerializedAppLogicAction#/definitions/SerializedAddUsedTimeAction/properties/timeToAdd") | +| [extraTimeToSubtract](#extraTimeToSubtract) | `number` | Required | cannot be null | [SerializedAppLogicAction](serializedapplogicaction-definitions-serializedaddusedtimeaction-properties-extratimetosubtract.md "https://timelimit.io/SerializedAppLogicAction#/definitions/SerializedAddUsedTimeAction/properties/extraTimeToSubtract") | + +### type + + + + +`type` + +- is required +- Type: `string` +- cannot be null +- defined in: [SerializedAppLogicAction](serializedapplogicaction-definitions-serializedaddusedtimeaction-properties-type.md "https://timelimit.io/SerializedAppLogicAction#/definitions/SerializedAddUsedTimeAction/properties/type") + +#### type Type + +`string` + +#### type Constraints + +**enum**: the value of this property must be equal to one of the following values: + +| Value | Explanation | +| :---------------- | ----------- | +| `"ADD_USED_TIME"` | | + +### categoryId + + + + +`categoryId` + +- is required +- Type: `string` +- cannot be null +- defined in: [SerializedAppLogicAction](serializedapplogicaction-definitions-serializedaddusedtimeaction-properties-categoryid.md "https://timelimit.io/SerializedAppLogicAction#/definitions/SerializedAddUsedTimeAction/properties/categoryId") + +#### categoryId Type + +`string` + +### day + + + + +`day` + +- is required +- Type: `number` +- cannot be null +- defined in: [SerializedAppLogicAction](serializedapplogicaction-definitions-serializedaddusedtimeaction-properties-day.md "https://timelimit.io/SerializedAppLogicAction#/definitions/SerializedAddUsedTimeAction/properties/day") + +#### day Type + +`number` + +### timeToAdd + + + + +`timeToAdd` + +- is required +- Type: `number` +- cannot be null +- defined in: [SerializedAppLogicAction](serializedapplogicaction-definitions-serializedaddusedtimeaction-properties-timetoadd.md "https://timelimit.io/SerializedAppLogicAction#/definitions/SerializedAddUsedTimeAction/properties/timeToAdd") + +#### timeToAdd Type + +`number` + +### extraTimeToSubtract + + + + +`extraTimeToSubtract` + +- is required +- Type: `number` +- cannot be null +- defined in: [SerializedAppLogicAction](serializedapplogicaction-definitions-serializedaddusedtimeaction-properties-extratimetosubtract.md "https://timelimit.io/SerializedAppLogicAction#/definitions/SerializedAddUsedTimeAction/properties/extraTimeToSubtract") + +#### extraTimeToSubtract Type + +`number` + +## Definitions group SerializedAddUsedTimeActionVersion2 + +Reference this group by using + +```json +{"$ref":"https://timelimit.io/SerializedAppLogicAction#/definitions/SerializedAddUsedTimeActionVersion2"} +``` + +| Property | Type | Required | Nullable | Defined by | +| :------------ | -------- | -------- | -------------- | :-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | +| [type](#type) | `string` | Required | cannot be null | [SerializedAppLogicAction](serializedapplogicaction-definitions-serializedaddusedtimeactionversion2-properties-type.md "https://timelimit.io/SerializedAppLogicAction#/definitions/SerializedAddUsedTimeActionVersion2/properties/type") | +| [d](#d) | `number` | Required | cannot be null | [SerializedAppLogicAction](serializedapplogicaction-definitions-serializedaddusedtimeactionversion2-properties-d.md "https://timelimit.io/SerializedAppLogicAction#/definitions/SerializedAddUsedTimeActionVersion2/properties/d") | +| [i](#i) | `array` | Required | cannot be null | [SerializedAppLogicAction](serializedapplogicaction-definitions-serializedaddusedtimeactionversion2-properties-i.md "https://timelimit.io/SerializedAppLogicAction#/definitions/SerializedAddUsedTimeActionVersion2/properties/i") | + +### type + + + + +`type` + +- is required +- Type: `string` +- cannot be null +- defined in: [SerializedAppLogicAction](serializedapplogicaction-definitions-serializedaddusedtimeactionversion2-properties-type.md "https://timelimit.io/SerializedAppLogicAction#/definitions/SerializedAddUsedTimeActionVersion2/properties/type") + +#### type Type + +`string` + +#### type Constraints + +**enum**: the value of this property must be equal to one of the following values: + +| Value | Explanation | +| :------------------- | ----------- | +| `"ADD_USED_TIME_V2"` | | + +### d + + + + +`d` + +- is required +- Type: `number` +- cannot be null +- defined in: [SerializedAppLogicAction](serializedapplogicaction-definitions-serializedaddusedtimeactionversion2-properties-d.md "https://timelimit.io/SerializedAppLogicAction#/definitions/SerializedAddUsedTimeActionVersion2/properties/d") + +#### d Type + +`number` + +### i + + + + +`i` + +- is required +- Type: `object[]` ([Details](serializedapplogicaction-definitions-serializedaddusedtimeactionversion2-properties-i-items.md)) +- cannot be null +- defined in: [SerializedAppLogicAction](serializedapplogicaction-definitions-serializedaddusedtimeactionversion2-properties-i.md "https://timelimit.io/SerializedAppLogicAction#/definitions/SerializedAddUsedTimeActionVersion2/properties/i") + +#### i Type + +`object[]` ([Details](serializedapplogicaction-definitions-serializedaddusedtimeactionversion2-properties-i-items.md)) + +## Definitions group SerializedRemoveInstalledAppsAction + +Reference this group by using + +```json +{"$ref":"https://timelimit.io/SerializedAppLogicAction#/definitions/SerializedRemoveInstalledAppsAction"} +``` + +| Property | Type | Required | Nullable | Defined by | +| :---------------------------- | -------- | -------- | -------------- | :------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ | +| [type](#type) | `string` | Required | cannot be null | [SerializedAppLogicAction](serializedapplogicaction-definitions-serializedremoveinstalledappsaction-properties-type.md "https://timelimit.io/SerializedAppLogicAction#/definitions/SerializedRemoveInstalledAppsAction/properties/type") | +| [packageNames](#packageNames) | `array` | Required | cannot be null | [SerializedAppLogicAction](serializedapplogicaction-definitions-serializedremoveinstalledappsaction-properties-packagenames.md "https://timelimit.io/SerializedAppLogicAction#/definitions/SerializedRemoveInstalledAppsAction/properties/packageNames") | + +### type + + + + +`type` + +- is required +- Type: `string` +- cannot be null +- defined in: [SerializedAppLogicAction](serializedapplogicaction-definitions-serializedremoveinstalledappsaction-properties-type.md "https://timelimit.io/SerializedAppLogicAction#/definitions/SerializedRemoveInstalledAppsAction/properties/type") + +#### type Type + +`string` + +#### type Constraints + +**enum**: the value of this property must be equal to one of the following values: + +| Value | Explanation | +| :------------------------ | ----------- | +| `"REMOVE_INSTALLED_APPS"` | | + +### packageNames + + + + +`packageNames` + +- is required +- Type: `string[]` +- cannot be null +- defined in: [SerializedAppLogicAction](serializedapplogicaction-definitions-serializedremoveinstalledappsaction-properties-packagenames.md "https://timelimit.io/SerializedAppLogicAction#/definitions/SerializedRemoveInstalledAppsAction/properties/packageNames") + +#### packageNames Type + +`string[]` + +## Definitions group SerializedSignOutAtDeviceAction + +Reference this group by using + +```json +{"$ref":"https://timelimit.io/SerializedAppLogicAction#/definitions/SerializedSignOutAtDeviceAction"} +``` + +| Property | Type | Required | Nullable | Defined by | +| :------------ | -------- | -------- | -------------- | :------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ | +| [type](#type) | `string` | Required | cannot be null | [SerializedAppLogicAction](serializedapplogicaction-definitions-serializedsignoutatdeviceaction-properties-type.md "https://timelimit.io/SerializedAppLogicAction#/definitions/SerializedSignOutAtDeviceAction/properties/type") | + +### type + + + + +`type` + +- is required +- Type: `string` +- cannot be null +- defined in: [SerializedAppLogicAction](serializedapplogicaction-definitions-serializedsignoutatdeviceaction-properties-type.md "https://timelimit.io/SerializedAppLogicAction#/definitions/SerializedSignOutAtDeviceAction/properties/type") + +#### type Type + +`string` + +#### type Constraints + +**enum**: the value of this property must be equal to one of the following values: + +| Value | Explanation | +| :--------------------- | ----------- | +| `"SIGN_OUT_AT_DEVICE"` | | + +## Definitions group SerialiezdTriedDisablingDeviceAdminAction + +Reference this group by using + +```json +{"$ref":"https://timelimit.io/SerializedAppLogicAction#/definitions/SerialiezdTriedDisablingDeviceAdminAction"} +``` + +| Property | Type | Required | Nullable | Defined by | +| :------------ | -------- | -------- | -------------- | :-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | +| [type](#type) | `string` | Required | cannot be null | [SerializedAppLogicAction](serializedapplogicaction-definitions-serialiezdtrieddisablingdeviceadminaction-properties-type.md "https://timelimit.io/SerializedAppLogicAction#/definitions/SerialiezdTriedDisablingDeviceAdminAction/properties/type") | + +### type + + + + +`type` + +- is required +- Type: `string` +- cannot be null +- defined in: [SerializedAppLogicAction](serializedapplogicaction-definitions-serialiezdtrieddisablingdeviceadminaction-properties-type.md "https://timelimit.io/SerializedAppLogicAction#/definitions/SerialiezdTriedDisablingDeviceAdminAction/properties/type") + +#### type Type + +`string` + +#### type Constraints + +**enum**: the value of this property must be equal to one of the following values: + +| Value | Explanation | +| :------------------------------- | ----------- | +| `"TRIED_DISABLING_DEVICE_ADMIN"` | | + +## Definitions group SerializedUpdateAppActivitiesAction + +Reference this group by using + +```json +{"$ref":"https://timelimit.io/SerializedAppLogicAction#/definitions/SerializedUpdateAppActivitiesAction"} +``` + +| Property | Type | Required | Nullable | Defined by | +| :-------------------------------- | -------- | -------- | -------------- | :---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | +| [type](#type) | `string` | Required | cannot be null | [SerializedAppLogicAction](serializedapplogicaction-definitions-serializedupdateappactivitiesaction-properties-type.md "https://timelimit.io/SerializedAppLogicAction#/definitions/SerializedUpdateAppActivitiesAction/properties/type") | +| [removed](#removed) | `array` | Required | cannot be null | [SerializedAppLogicAction](serializedapplogicaction-definitions-serializedupdateappactivitiesaction-properties-removed.md "https://timelimit.io/SerializedAppLogicAction#/definitions/SerializedUpdateAppActivitiesAction/properties/removed") | +| [updatedOrAdded](#updatedOrAdded) | `array` | Required | cannot be null | [SerializedAppLogicAction](serializedapplogicaction-definitions-serializedupdateappactivitiesaction-properties-updatedoradded.md "https://timelimit.io/SerializedAppLogicAction#/definitions/SerializedUpdateAppActivitiesAction/properties/updatedOrAdded") | + +### type + + + + +`type` + +- is required +- Type: `string` +- cannot be null +- defined in: [SerializedAppLogicAction](serializedapplogicaction-definitions-serializedupdateappactivitiesaction-properties-type.md "https://timelimit.io/SerializedAppLogicAction#/definitions/SerializedUpdateAppActivitiesAction/properties/type") + +#### type Type + +`string` + +#### type Constraints + +**enum**: the value of this property must be equal to one of the following values: + +| Value | Explanation | +| :------------------------ | ----------- | +| `"UPDATE_APP_ACTIVITIES"` | | + +### removed + + + + +`removed` + +- is required +- Type: an array where each item follows the corresponding schema in the following list: + + 1. [Untitled string in SerializedAppLogicAction](serializedapplogicaction-definitions-serializedupdateappactivitiesaction-properties-removed-items-items-0.md "check type definition") + 2. [Untitled string in SerializedAppLogicAction](serializedapplogicaction-definitions-serializedupdateappactivitiesaction-properties-removed-items-items-1.md "check type definition") + 3. and all following items must follow the schema: [Untitled undefined type in SerializedAppLogicAction](serializedapplogicaction-definitions-serializedupdateappactivitiesaction-properties-removed-items-additionalitems.md "check type definition") +- cannot be null +- defined in: [SerializedAppLogicAction](serializedapplogicaction-definitions-serializedupdateappactivitiesaction-properties-removed.md "https://timelimit.io/SerializedAppLogicAction#/definitions/SerializedUpdateAppActivitiesAction/properties/removed") + +#### removed Type + +an array where each item follows the corresponding schema in the following list: + +1. [Untitled string in SerializedAppLogicAction](serializedapplogicaction-definitions-serializedupdateappactivitiesaction-properties-removed-items-items-0.md "check type definition") +2. [Untitled string in SerializedAppLogicAction](serializedapplogicaction-definitions-serializedupdateappactivitiesaction-properties-removed-items-items-1.md "check type definition") +3. and all following items must follow the schema: [Untitled undefined type in SerializedAppLogicAction](serializedapplogicaction-definitions-serializedupdateappactivitiesaction-properties-removed-items-additionalitems.md "check type definition") + +### updatedOrAdded + + + + +`updatedOrAdded` + +- is required +- Type: `object[]` ([SerializedAppActivityItem](serializedapplogicaction-definitions-serializedappactivityitem.md)) +- cannot be null +- defined in: [SerializedAppLogicAction](serializedapplogicaction-definitions-serializedupdateappactivitiesaction-properties-updatedoradded.md "https://timelimit.io/SerializedAppLogicAction#/definitions/SerializedUpdateAppActivitiesAction/properties/updatedOrAdded") + +#### updatedOrAdded Type + +`object[]` ([SerializedAppActivityItem](serializedapplogicaction-definitions-serializedappactivityitem.md)) + +## Definitions group SerializedAppActivityItem + +Reference this group by using + +```json +{"$ref":"https://timelimit.io/SerializedAppLogicAction#/definitions/SerializedAppActivityItem"} +``` + +| Property | Type | Required | Nullable | Defined by | +| :------- | -------- | -------- | -------------- | :------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ | +| [p](#p) | `string` | Required | cannot be null | [SerializedAppLogicAction](serializedapplogicaction-definitions-serializedappactivityitem-properties-p.md "https://timelimit.io/SerializedAppLogicAction#/definitions/SerializedAppActivityItem/properties/p") | +| [c](#c) | `string` | Required | cannot be null | [SerializedAppLogicAction](serializedapplogicaction-definitions-serializedappactivityitem-properties-c.md "https://timelimit.io/SerializedAppLogicAction#/definitions/SerializedAppActivityItem/properties/c") | +| [t](#t) | `string` | Required | cannot be null | [SerializedAppLogicAction](serializedapplogicaction-definitions-serializedappactivityitem-properties-t.md "https://timelimit.io/SerializedAppLogicAction#/definitions/SerializedAppActivityItem/properties/t") | + +### p + + + + +`p` + +- is required +- Type: `string` +- cannot be null +- defined in: [SerializedAppLogicAction](serializedapplogicaction-definitions-serializedappactivityitem-properties-p.md "https://timelimit.io/SerializedAppLogicAction#/definitions/SerializedAppActivityItem/properties/p") + +#### p Type + +`string` + +### c + + + + +`c` + +- is required +- Type: `string` +- cannot be null +- defined in: [SerializedAppLogicAction](serializedapplogicaction-definitions-serializedappactivityitem-properties-c.md "https://timelimit.io/SerializedAppLogicAction#/definitions/SerializedAppActivityItem/properties/c") + +#### c Type + +`string` + +### t + + + + +`t` + +- is required +- Type: `string` +- cannot be null +- defined in: [SerializedAppLogicAction](serializedapplogicaction-definitions-serializedappactivityitem-properties-t.md "https://timelimit.io/SerializedAppLogicAction#/definitions/SerializedAppActivityItem/properties/t") + +#### t Type + +`string` + +## Definitions group SerializedUpdateDeviceStatusAction + +Reference this group by using + +```json +{"$ref":"https://timelimit.io/SerializedAppLogicAction#/definitions/SerializedUpdateDeviceStatusAction"} +``` + +| Property | Type | Required | Nullable | Defined by | +| :---------------------------------------------------------- | --------- | -------- | -------------- | :---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | +| [type](#type) | `string` | Required | cannot be null | [SerializedAppLogicAction](serializedapplogicaction-definitions-serializedupdatedevicestatusaction-properties-type.md "https://timelimit.io/SerializedAppLogicAction#/definitions/SerializedUpdateDeviceStatusAction/properties/type") | +| [protectionLevel](#protectionLevel) | `string` | Optional | cannot be null | [SerializedAppLogicAction](serializedapplogicaction-definitions-serializedupdatedevicestatusaction-properties-protectionlevel.md "https://timelimit.io/SerializedAppLogicAction#/definitions/SerializedUpdateDeviceStatusAction/properties/protectionLevel") | +| [usageStats](#usageStats) | `string` | Optional | cannot be null | [SerializedAppLogicAction](serializedapplogicaction-definitions-serializedupdatedevicestatusaction-properties-usagestats.md "https://timelimit.io/SerializedAppLogicAction#/definitions/SerializedUpdateDeviceStatusAction/properties/usageStats") | +| [notificationAccess](#notificationAccess) | `string` | Optional | cannot be null | [SerializedAppLogicAction](serializedapplogicaction-definitions-serializedupdatedevicestatusaction-properties-notificationaccess.md "https://timelimit.io/SerializedAppLogicAction#/definitions/SerializedUpdateDeviceStatusAction/properties/notificationAccess") | +| [overlayPermission](#overlayPermission) | `string` | Optional | cannot be null | [SerializedAppLogicAction](serializedapplogicaction-definitions-serializedupdatedevicestatusaction-properties-overlaypermission.md "https://timelimit.io/SerializedAppLogicAction#/definitions/SerializedUpdateDeviceStatusAction/properties/overlayPermission") | +| [accessibilityServiceEnabled](#accessibilityServiceEnabled) | `boolean` | Optional | cannot be null | [SerializedAppLogicAction](serializedapplogicaction-definitions-serializedupdatedevicestatusaction-properties-accessibilityserviceenabled.md "https://timelimit.io/SerializedAppLogicAction#/definitions/SerializedUpdateDeviceStatusAction/properties/accessibilityServiceEnabled") | +| [appVersion](#appVersion) | `number` | Optional | cannot be null | [SerializedAppLogicAction](serializedapplogicaction-definitions-serializedupdatedevicestatusaction-properties-appversion.md "https://timelimit.io/SerializedAppLogicAction#/definitions/SerializedUpdateDeviceStatusAction/properties/appVersion") | +| [didReboot](#didReboot) | `boolean` | Optional | cannot be null | [SerializedAppLogicAction](serializedapplogicaction-definitions-serializedupdatedevicestatusaction-properties-didreboot.md "https://timelimit.io/SerializedAppLogicAction#/definitions/SerializedUpdateDeviceStatusAction/properties/didReboot") | +| [isQOrLaterNow](#isQOrLaterNow) | `boolean` | Optional | cannot be null | [SerializedAppLogicAction](serializedapplogicaction-definitions-serializedupdatedevicestatusaction-properties-isqorlaternow.md "https://timelimit.io/SerializedAppLogicAction#/definitions/SerializedUpdateDeviceStatusAction/properties/isQOrLaterNow") | + +### type + + + + +`type` + +- is required +- Type: `string` +- cannot be null +- defined in: [SerializedAppLogicAction](serializedapplogicaction-definitions-serializedupdatedevicestatusaction-properties-type.md "https://timelimit.io/SerializedAppLogicAction#/definitions/SerializedUpdateDeviceStatusAction/properties/type") + +#### type Type + +`string` + +#### type Constraints + +**enum**: the value of this property must be equal to one of the following values: + +| Value | Explanation | +| :----------------------- | ----------- | +| `"UPDATE_DEVICE_STATUS"` | | + +### protectionLevel + + + + +`protectionLevel` + +- is optional +- Type: `string` +- cannot be null +- defined in: [SerializedAppLogicAction](serializedapplogicaction-definitions-serializedupdatedevicestatusaction-properties-protectionlevel.md "https://timelimit.io/SerializedAppLogicAction#/definitions/SerializedUpdateDeviceStatusAction/properties/protectionLevel") + +#### protectionLevel Type + +`string` + +#### 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"` | | + +### usageStats + + + + +`usageStats` + +- is optional +- Type: `string` +- cannot be null +- defined in: [SerializedAppLogicAction](serializedapplogicaction-definitions-serializedupdatedevicestatusaction-properties-usagestats.md "https://timelimit.io/SerializedAppLogicAction#/definitions/SerializedUpdateDeviceStatusAction/properties/usageStats") + +#### usageStats Type + +`string` + +#### usageStats Constraints + +**enum**: the value of this property must be equal to one of the following values: + +| Value | Explanation | +| :--------------- | ----------- | +| `"granted"` | | +| `"not granted"` | | +| `"not required"` | | + +### notificationAccess + + + + +`notificationAccess` + +- is optional +- Type: `string` +- cannot be null +- defined in: [SerializedAppLogicAction](serializedapplogicaction-definitions-serializedupdatedevicestatusaction-properties-notificationaccess.md "https://timelimit.io/SerializedAppLogicAction#/definitions/SerializedUpdateDeviceStatusAction/properties/notificationAccess") + +#### notificationAccess Type + +`string` + +#### notificationAccess Constraints + +**enum**: the value of this property must be equal to one of the following values: + +| Value | Explanation | +| :---------------- | ----------- | +| `"granted"` | | +| `"not granted"` | | +| `"not supported"` | | + +### overlayPermission + + + + +`overlayPermission` + +- is optional +- Type: `string` +- cannot be null +- defined in: [SerializedAppLogicAction](serializedapplogicaction-definitions-serializedupdatedevicestatusaction-properties-overlaypermission.md "https://timelimit.io/SerializedAppLogicAction#/definitions/SerializedUpdateDeviceStatusAction/properties/overlayPermission") + +#### overlayPermission Type + +`string` + +#### overlayPermission Constraints + +**enum**: the value of this property must be equal to one of the following values: + +| Value | Explanation | +| :--------------- | ----------- | +| `"granted"` | | +| `"not granted"` | | +| `"not required"` | | + +### accessibilityServiceEnabled + + + + +`accessibilityServiceEnabled` + +- is optional +- Type: `boolean` +- cannot be null +- defined in: [SerializedAppLogicAction](serializedapplogicaction-definitions-serializedupdatedevicestatusaction-properties-accessibilityserviceenabled.md "https://timelimit.io/SerializedAppLogicAction#/definitions/SerializedUpdateDeviceStatusAction/properties/accessibilityServiceEnabled") + +#### accessibilityServiceEnabled Type + +`boolean` + +### appVersion + + + + +`appVersion` + +- is optional +- Type: `number` +- cannot be null +- defined in: [SerializedAppLogicAction](serializedapplogicaction-definitions-serializedupdatedevicestatusaction-properties-appversion.md "https://timelimit.io/SerializedAppLogicAction#/definitions/SerializedUpdateDeviceStatusAction/properties/appVersion") + +#### appVersion Type + +`number` + +### didReboot + + + + +`didReboot` + +- is optional +- Type: `boolean` +- cannot be null +- defined in: [SerializedAppLogicAction](serializedapplogicaction-definitions-serializedupdatedevicestatusaction-properties-didreboot.md "https://timelimit.io/SerializedAppLogicAction#/definitions/SerializedUpdateDeviceStatusAction/properties/didReboot") + +#### didReboot Type + +`boolean` + +### isQOrLaterNow + + + + +`isQOrLaterNow` + +- is optional +- Type: `boolean` +- cannot be null +- defined in: [SerializedAppLogicAction](serializedapplogicaction-definitions-serializedupdatedevicestatusaction-properties-isqorlaternow.md "https://timelimit.io/SerializedAppLogicAction#/definitions/SerializedUpdateDeviceStatusAction/properties/isQOrLaterNow") + +#### isQOrLaterNow Type + +`boolean` diff --git a/docs/schema/serializedchildaction-definitions-parentpassword-properties-hash.md b/docs/schema/serializedchildaction-definitions-parentpassword-properties-hash.md new file mode 100644 index 0000000..a58b2e1 --- /dev/null +++ b/docs/schema/serializedchildaction-definitions-parentpassword-properties-hash.md @@ -0,0 +1,16 @@ +# Untitled string in SerializedChildAction Schema + +```txt +https://timelimit.io/SerializedChildAction#/definitions/ParentPassword/properties/hash +``` + + + + +| Abstract | Extensible | Status | Identifiable | Custom Properties | Additional Properties | Access Restrictions | Defined In | +| :------------------ | ---------- | -------------- | ----------------------- | :---------------- | --------------------- | ------------------- | ----------------------------------------------------------------------------------------------- | +| Can be instantiated | No | Unknown status | Unknown identifiability | Forbidden | Allowed | none | [SerializedChildAction.schema.json\*](SerializedChildAction.schema.json "open original schema") | + +## hash Type + +`string` diff --git a/docs/schema/serializedchildaction-definitions-parentpassword-properties-secondhash.md b/docs/schema/serializedchildaction-definitions-parentpassword-properties-secondhash.md new file mode 100644 index 0000000..e0d925c --- /dev/null +++ b/docs/schema/serializedchildaction-definitions-parentpassword-properties-secondhash.md @@ -0,0 +1,16 @@ +# Untitled string in SerializedChildAction Schema + +```txt +https://timelimit.io/SerializedChildAction#/definitions/ParentPassword/properties/secondHash +``` + + + + +| Abstract | Extensible | Status | Identifiable | Custom Properties | Additional Properties | Access Restrictions | Defined In | +| :------------------ | ---------- | -------------- | ----------------------- | :---------------- | --------------------- | ------------------- | ----------------------------------------------------------------------------------------------- | +| Can be instantiated | No | Unknown status | Unknown identifiability | Forbidden | Allowed | none | [SerializedChildAction.schema.json\*](SerializedChildAction.schema.json "open original schema") | + +## secondHash Type + +`string` diff --git a/docs/schema/serializedchildaction-definitions-parentpassword-properties-secondsalt.md b/docs/schema/serializedchildaction-definitions-parentpassword-properties-secondsalt.md new file mode 100644 index 0000000..3674824 --- /dev/null +++ b/docs/schema/serializedchildaction-definitions-parentpassword-properties-secondsalt.md @@ -0,0 +1,16 @@ +# Untitled string in SerializedChildAction Schema + +```txt +https://timelimit.io/SerializedChildAction#/definitions/ParentPassword/properties/secondSalt +``` + + + + +| Abstract | Extensible | Status | Identifiable | Custom Properties | Additional Properties | Access Restrictions | Defined In | +| :------------------ | ---------- | -------------- | ----------------------- | :---------------- | --------------------- | ------------------- | ----------------------------------------------------------------------------------------------- | +| Can be instantiated | No | Unknown status | Unknown identifiability | Forbidden | Allowed | none | [SerializedChildAction.schema.json\*](SerializedChildAction.schema.json "open original schema") | + +## secondSalt Type + +`string` diff --git a/docs/schema/serializedchildaction-definitions-parentpassword-properties.md b/docs/schema/serializedchildaction-definitions-parentpassword-properties.md new file mode 100644 index 0000000..9fbee4c --- /dev/null +++ b/docs/schema/serializedchildaction-definitions-parentpassword-properties.md @@ -0,0 +1,16 @@ +# Untitled undefined type in SerializedChildAction Schema + +```txt +https://timelimit.io/SerializedChildAction#/definitions/ParentPassword/properties +``` + + + + +| Abstract | Extensible | Status | Identifiable | Custom Properties | Additional Properties | Access Restrictions | Defined In | +| :------------------ | ---------- | -------------- | ----------------------- | :---------------- | --------------------- | ------------------- | ----------------------------------------------------------------------------------------------- | +| Can be instantiated | No | Unknown status | Unknown identifiability | Forbidden | Allowed | none | [SerializedChildAction.schema.json\*](SerializedChildAction.schema.json "open original schema") | + +## properties Type + +unknown diff --git a/docs/schema/serializedchildaction-definitions-parentpassword.md b/docs/schema/serializedchildaction-definitions-parentpassword.md new file mode 100644 index 0000000..dc6727c --- /dev/null +++ b/docs/schema/serializedchildaction-definitions-parentpassword.md @@ -0,0 +1,72 @@ +# ParentPassword Schema + +```txt +https://timelimit.io/SerializedChildAction#/definitions/ParentPassword +``` + + + + +| Abstract | Extensible | Status | Identifiable | Custom Properties | Additional Properties | Access Restrictions | Defined In | +| :------------------ | ---------- | -------------- | ------------ | :---------------- | --------------------- | ------------------- | ----------------------------------------------------------------------------------------------- | +| Can be instantiated | No | Unknown status | No | Forbidden | Forbidden | none | [SerializedChildAction.schema.json\*](SerializedChildAction.schema.json "open original schema") | + +## ParentPassword Type + +`object` ([ParentPassword](serializedchildaction-definitions-parentpassword.md)) + +# ParentPassword Properties + +| Property | Type | Required | Nullable | Defined by | +| :------------------------ | -------- | -------- | -------------- | :----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | +| [hash](#hash) | `string` | Required | cannot be null | [SerializedChildAction](serializedchildaction-definitions-parentpassword-properties-hash.md "https://timelimit.io/SerializedChildAction#/definitions/ParentPassword/properties/hash") | +| [secondHash](#secondHash) | `string` | Required | cannot be null | [SerializedChildAction](serializedchildaction-definitions-parentpassword-properties-secondhash.md "https://timelimit.io/SerializedChildAction#/definitions/ParentPassword/properties/secondHash") | +| [secondSalt](#secondSalt) | `string` | Required | cannot be null | [SerializedChildAction](serializedchildaction-definitions-parentpassword-properties-secondsalt.md "https://timelimit.io/SerializedChildAction#/definitions/ParentPassword/properties/secondSalt") | + +## hash + + + + +`hash` + +- is required +- Type: `string` +- cannot be null +- defined in: [SerializedChildAction](serializedchildaction-definitions-parentpassword-properties-hash.md "https://timelimit.io/SerializedChildAction#/definitions/ParentPassword/properties/hash") + +### hash Type + +`string` + +## secondHash + + + + +`secondHash` + +- is required +- Type: `string` +- cannot be null +- defined in: [SerializedChildAction](serializedchildaction-definitions-parentpassword-properties-secondhash.md "https://timelimit.io/SerializedChildAction#/definitions/ParentPassword/properties/secondHash") + +### secondHash Type + +`string` + +## secondSalt + + + + +`secondSalt` + +- is required +- Type: `string` +- cannot be null +- defined in: [SerializedChildAction](serializedchildaction-definitions-parentpassword-properties-secondsalt.md "https://timelimit.io/SerializedChildAction#/definitions/ParentPassword/properties/secondSalt") + +### secondSalt Type + +`string` diff --git a/docs/schema/serializedchildaction-definitions-serializedchildchangepasswordaction-properties-type.md b/docs/schema/serializedchildaction-definitions-serializedchildchangepasswordaction-properties-type.md new file mode 100644 index 0000000..24b1be5 --- /dev/null +++ b/docs/schema/serializedchildaction-definitions-serializedchildchangepasswordaction-properties-type.md @@ -0,0 +1,24 @@ +# Untitled string in SerializedChildAction Schema + +```txt +https://timelimit.io/SerializedChildAction#/definitions/SerializedChildChangePasswordAction/properties/type +``` + + + + +| Abstract | Extensible | Status | Identifiable | Custom Properties | Additional Properties | Access Restrictions | Defined In | +| :------------------ | ---------- | -------------- | ----------------------- | :---------------- | --------------------- | ------------------- | ----------------------------------------------------------------------------------------------- | +| Can be instantiated | No | Unknown status | Unknown identifiability | Forbidden | Allowed | none | [SerializedChildAction.schema.json\*](SerializedChildAction.schema.json "open original schema") | + +## type Type + +`string` + +## type Constraints + +**enum**: the value of this property must be equal to one of the following values: + +| Value | Explanation | +| :------------------------ | ----------- | +| `"CHILD_CHANGE_PASSWORD"` | | diff --git a/docs/schema/serializedchildaction-definitions-serializedchildchangepasswordaction-properties.md b/docs/schema/serializedchildaction-definitions-serializedchildchangepasswordaction-properties.md new file mode 100644 index 0000000..26208d4 --- /dev/null +++ b/docs/schema/serializedchildaction-definitions-serializedchildchangepasswordaction-properties.md @@ -0,0 +1,16 @@ +# Untitled undefined type in SerializedChildAction Schema + +```txt +https://timelimit.io/SerializedChildAction#/definitions/SerializedChildChangePasswordAction/properties +``` + + + + +| Abstract | Extensible | Status | Identifiable | Custom Properties | Additional Properties | Access Restrictions | Defined In | +| :------------------ | ---------- | -------------- | ----------------------- | :---------------- | --------------------- | ------------------- | ----------------------------------------------------------------------------------------------- | +| Can be instantiated | No | Unknown status | Unknown identifiability | Forbidden | Allowed | none | [SerializedChildAction.schema.json\*](SerializedChildAction.schema.json "open original schema") | + +## properties Type + +unknown diff --git a/docs/schema/serializedchildaction-definitions-serializedchildchangepasswordaction.md b/docs/schema/serializedchildaction-definitions-serializedchildchangepasswordaction.md new file mode 100644 index 0000000..d19cb73 --- /dev/null +++ b/docs/schema/serializedchildaction-definitions-serializedchildchangepasswordaction.md @@ -0,0 +1,63 @@ +# SerializedChildChangePasswordAction Schema + +```txt +https://timelimit.io/SerializedChildAction#/definitions/SerializedChildChangePasswordAction +``` + + + + +| Abstract | Extensible | Status | Identifiable | Custom Properties | Additional Properties | Access Restrictions | Defined In | +| :------------------ | ---------- | -------------- | ------------ | :---------------- | --------------------- | ------------------- | ----------------------------------------------------------------------------------------------- | +| Can be instantiated | No | Unknown status | No | Forbidden | Forbidden | none | [SerializedChildAction.schema.json\*](SerializedChildAction.schema.json "open original schema") | + +## SerializedChildChangePasswordAction Type + +`object` ([SerializedChildChangePasswordAction](serializedchildaction-definitions-serializedchildchangepasswordaction.md)) + +# SerializedChildChangePasswordAction Properties + +| Property | Type | Required | Nullable | Defined by | +| :-------------------- | -------- | -------- | -------------- | :----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | +| [type](#type) | `string` | Required | cannot be null | [SerializedChildAction](serializedchildaction-definitions-serializedchildchangepasswordaction-properties-type.md "https://timelimit.io/SerializedChildAction#/definitions/SerializedChildChangePasswordAction/properties/type") | +| [password](#password) | `object` | Required | cannot be null | [SerializedChildAction](serializedchildaction-definitions-parentpassword.md "https://timelimit.io/SerializedChildAction#/definitions/SerializedChildChangePasswordAction/properties/password") | + +## type + + + + +`type` + +- is required +- Type: `string` +- cannot be null +- defined in: [SerializedChildAction](serializedchildaction-definitions-serializedchildchangepasswordaction-properties-type.md "https://timelimit.io/SerializedChildAction#/definitions/SerializedChildChangePasswordAction/properties/type") + +### type Type + +`string` + +### type Constraints + +**enum**: the value of this property must be equal to one of the following values: + +| Value | Explanation | +| :------------------------ | ----------- | +| `"CHILD_CHANGE_PASSWORD"` | | + +## password + + + + +`password` + +- is required +- Type: `object` ([ParentPassword](serializedchildaction-definitions-parentpassword.md)) +- cannot be null +- defined in: [SerializedChildAction](serializedchildaction-definitions-parentpassword.md "https://timelimit.io/SerializedChildAction#/definitions/SerializedChildChangePasswordAction/properties/password") + +### password Type + +`object` ([ParentPassword](serializedchildaction-definitions-parentpassword.md)) diff --git a/docs/schema/serializedchildaction-definitions-serializedchildsigninaction-properties-type.md b/docs/schema/serializedchildaction-definitions-serializedchildsigninaction-properties-type.md new file mode 100644 index 0000000..5c77e90 --- /dev/null +++ b/docs/schema/serializedchildaction-definitions-serializedchildsigninaction-properties-type.md @@ -0,0 +1,24 @@ +# Untitled string in SerializedChildAction Schema + +```txt +https://timelimit.io/SerializedChildAction#/definitions/SerializedChildSignInAction/properties/type +``` + + + + +| Abstract | Extensible | Status | Identifiable | Custom Properties | Additional Properties | Access Restrictions | Defined In | +| :------------------ | ---------- | -------------- | ----------------------- | :---------------- | --------------------- | ------------------- | ----------------------------------------------------------------------------------------------- | +| Can be instantiated | No | Unknown status | Unknown identifiability | Forbidden | Allowed | none | [SerializedChildAction.schema.json\*](SerializedChildAction.schema.json "open original schema") | + +## type Type + +`string` + +## type Constraints + +**enum**: the value of this property must be equal to one of the following values: + +| Value | Explanation | +| :---------------- | ----------- | +| `"CHILD_SIGN_IN"` | | diff --git a/docs/schema/serializedchildaction-definitions-serializedchildsigninaction-properties.md b/docs/schema/serializedchildaction-definitions-serializedchildsigninaction-properties.md new file mode 100644 index 0000000..fd3b468 --- /dev/null +++ b/docs/schema/serializedchildaction-definitions-serializedchildsigninaction-properties.md @@ -0,0 +1,16 @@ +# Untitled undefined type in SerializedChildAction Schema + +```txt +https://timelimit.io/SerializedChildAction#/definitions/SerializedChildSignInAction/properties +``` + + + + +| Abstract | Extensible | Status | Identifiable | Custom Properties | Additional Properties | Access Restrictions | Defined In | +| :------------------ | ---------- | -------------- | ----------------------- | :---------------- | --------------------- | ------------------- | ----------------------------------------------------------------------------------------------- | +| Can be instantiated | No | Unknown status | Unknown identifiability | Forbidden | Allowed | none | [SerializedChildAction.schema.json\*](SerializedChildAction.schema.json "open original schema") | + +## properties Type + +unknown diff --git a/docs/schema/serializedchildaction-definitions-serializedchildsigninaction.md b/docs/schema/serializedchildaction-definitions-serializedchildsigninaction.md new file mode 100644 index 0000000..a4b317b --- /dev/null +++ b/docs/schema/serializedchildaction-definitions-serializedchildsigninaction.md @@ -0,0 +1,46 @@ +# SerializedChildSignInAction Schema + +```txt +https://timelimit.io/SerializedChildAction#/definitions/SerializedChildSignInAction +``` + + + + +| Abstract | Extensible | Status | Identifiable | Custom Properties | Additional Properties | Access Restrictions | Defined In | +| :------------------ | ---------- | -------------- | ------------ | :---------------- | --------------------- | ------------------- | ----------------------------------------------------------------------------------------------- | +| Can be instantiated | No | Unknown status | No | Forbidden | Forbidden | none | [SerializedChildAction.schema.json\*](SerializedChildAction.schema.json "open original schema") | + +## SerializedChildSignInAction Type + +`object` ([SerializedChildSignInAction](serializedchildaction-definitions-serializedchildsigninaction.md)) + +# SerializedChildSignInAction Properties + +| Property | Type | Required | Nullable | Defined by | +| :------------ | -------- | -------- | -------------- | :------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | +| [type](#type) | `string` | Required | cannot be null | [SerializedChildAction](serializedchildaction-definitions-serializedchildsigninaction-properties-type.md "https://timelimit.io/SerializedChildAction#/definitions/SerializedChildSignInAction/properties/type") | + +## type + + + + +`type` + +- is required +- Type: `string` +- cannot be null +- defined in: [SerializedChildAction](serializedchildaction-definitions-serializedchildsigninaction-properties-type.md "https://timelimit.io/SerializedChildAction#/definitions/SerializedChildSignInAction/properties/type") + +### type Type + +`string` + +### type Constraints + +**enum**: the value of this property must be equal to one of the following values: + +| Value | Explanation | +| :---------------- | ----------- | +| `"CHILD_SIGN_IN"` | | diff --git a/docs/schema/serializedchildaction-definitions.md b/docs/schema/serializedchildaction-definitions.md new file mode 100644 index 0000000..fca1331 --- /dev/null +++ b/docs/schema/serializedchildaction-definitions.md @@ -0,0 +1,16 @@ +# Untitled undefined type in SerializedChildAction Schema + +```txt +https://timelimit.io/SerializedChildAction#/definitions +``` + + + + +| Abstract | Extensible | Status | Identifiable | Custom Properties | Additional Properties | Access Restrictions | Defined In | +| :------------------ | ---------- | -------------- | ----------------------- | :---------------- | --------------------- | ------------------- | ----------------------------------------------------------------------------------------------- | +| Can be instantiated | No | Unknown status | Unknown identifiability | Forbidden | Allowed | none | [SerializedChildAction.schema.json\*](SerializedChildAction.schema.json "open original schema") | + +## definitions Type + +unknown diff --git a/docs/schema/serializedchildaction.md b/docs/schema/serializedchildaction.md new file mode 100644 index 0000000..31ba39d --- /dev/null +++ b/docs/schema/serializedchildaction.md @@ -0,0 +1,174 @@ +# SerializedChildAction Schema + +```txt +https://timelimit.io/SerializedChildAction +``` + + + + +| Abstract | Extensible | Status | Identifiable | Custom Properties | Additional Properties | Access Restrictions | Defined In | +| :--------------------- | ---------- | -------------- | ----------------------- | :---------------- | --------------------- | ------------------- | --------------------------------------------------------------------------------------------- | +| Cannot be instantiated | Yes | Unknown status | Unknown identifiability | Forbidden | Allowed | none | [SerializedChildAction.schema.json](SerializedChildAction.schema.json "open original schema") | + +## SerializedChildAction Type + +merged type ([SerializedChildAction](serializedchildaction.md)) + +any of + +- [SerializedChildChangePasswordAction](serializedchildaction-definitions-serializedchildchangepasswordaction.md "check type definition") +- [SerializedChildSignInAction](serializedchildaction-definitions-serializedchildsigninaction.md "check type definition") + +# SerializedChildAction Definitions + +## Definitions group SerializedChildChangePasswordAction + +Reference this group by using + +```json +{"$ref":"https://timelimit.io/SerializedChildAction#/definitions/SerializedChildChangePasswordAction"} +``` + +| Property | Type | Required | Nullable | Defined by | +| :-------------------- | -------- | -------- | -------------- | :----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | +| [type](#type) | `string` | Required | cannot be null | [SerializedChildAction](serializedchildaction-definitions-serializedchildchangepasswordaction-properties-type.md "https://timelimit.io/SerializedChildAction#/definitions/SerializedChildChangePasswordAction/properties/type") | +| [password](#password) | `object` | Required | cannot be null | [SerializedChildAction](serializedchildaction-definitions-parentpassword.md "https://timelimit.io/SerializedChildAction#/definitions/SerializedChildChangePasswordAction/properties/password") | + +### type + + + + +`type` + +- is required +- Type: `string` +- cannot be null +- defined in: [SerializedChildAction](serializedchildaction-definitions-serializedchildchangepasswordaction-properties-type.md "https://timelimit.io/SerializedChildAction#/definitions/SerializedChildChangePasswordAction/properties/type") + +#### type Type + +`string` + +#### type Constraints + +**enum**: the value of this property must be equal to one of the following values: + +| Value | Explanation | +| :------------------------ | ----------- | +| `"CHILD_CHANGE_PASSWORD"` | | + +### password + + + + +`password` + +- is required +- Type: `object` ([ParentPassword](serializedchildaction-definitions-parentpassword.md)) +- cannot be null +- defined in: [SerializedChildAction](serializedchildaction-definitions-parentpassword.md "https://timelimit.io/SerializedChildAction#/definitions/SerializedChildChangePasswordAction/properties/password") + +#### password Type + +`object` ([ParentPassword](serializedchildaction-definitions-parentpassword.md)) + +## Definitions group ParentPassword + +Reference this group by using + +```json +{"$ref":"https://timelimit.io/SerializedChildAction#/definitions/ParentPassword"} +``` + +| Property | Type | Required | Nullable | Defined by | +| :------------------------ | -------- | -------- | -------------- | :----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | +| [hash](#hash) | `string` | Required | cannot be null | [SerializedChildAction](serializedchildaction-definitions-parentpassword-properties-hash.md "https://timelimit.io/SerializedChildAction#/definitions/ParentPassword/properties/hash") | +| [secondHash](#secondHash) | `string` | Required | cannot be null | [SerializedChildAction](serializedchildaction-definitions-parentpassword-properties-secondhash.md "https://timelimit.io/SerializedChildAction#/definitions/ParentPassword/properties/secondHash") | +| [secondSalt](#secondSalt) | `string` | Required | cannot be null | [SerializedChildAction](serializedchildaction-definitions-parentpassword-properties-secondsalt.md "https://timelimit.io/SerializedChildAction#/definitions/ParentPassword/properties/secondSalt") | + +### hash + + + + +`hash` + +- is required +- Type: `string` +- cannot be null +- defined in: [SerializedChildAction](serializedchildaction-definitions-parentpassword-properties-hash.md "https://timelimit.io/SerializedChildAction#/definitions/ParentPassword/properties/hash") + +#### hash Type + +`string` + +### secondHash + + + + +`secondHash` + +- is required +- Type: `string` +- cannot be null +- defined in: [SerializedChildAction](serializedchildaction-definitions-parentpassword-properties-secondhash.md "https://timelimit.io/SerializedChildAction#/definitions/ParentPassword/properties/secondHash") + +#### secondHash Type + +`string` + +### secondSalt + + + + +`secondSalt` + +- is required +- Type: `string` +- cannot be null +- defined in: [SerializedChildAction](serializedchildaction-definitions-parentpassword-properties-secondsalt.md "https://timelimit.io/SerializedChildAction#/definitions/ParentPassword/properties/secondSalt") + +#### secondSalt Type + +`string` + +## Definitions group SerializedChildSignInAction + +Reference this group by using + +```json +{"$ref":"https://timelimit.io/SerializedChildAction#/definitions/SerializedChildSignInAction"} +``` + +| Property | Type | Required | Nullable | Defined by | +| :------------ | -------- | -------- | -------------- | :------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | +| [type](#type) | `string` | Required | cannot be null | [SerializedChildAction](serializedchildaction-definitions-serializedchildsigninaction-properties-type.md "https://timelimit.io/SerializedChildAction#/definitions/SerializedChildSignInAction/properties/type") | + +### type + + + + +`type` + +- is required +- Type: `string` +- cannot be null +- defined in: [SerializedChildAction](serializedchildaction-definitions-serializedchildsigninaction-properties-type.md "https://timelimit.io/SerializedChildAction#/definitions/SerializedChildSignInAction/properties/type") + +#### type Type + +`string` + +#### type Constraints + +**enum**: the value of this property must be equal to one of the following values: + +| Value | Explanation | +| :---------------- | ----------- | +| `"CHILD_SIGN_IN"` | | diff --git a/docs/schema/serializedparentaction-definitions-parentpassword-properties-hash.md b/docs/schema/serializedparentaction-definitions-parentpassword-properties-hash.md new file mode 100644 index 0000000..d42267a --- /dev/null +++ b/docs/schema/serializedparentaction-definitions-parentpassword-properties-hash.md @@ -0,0 +1,16 @@ +# Untitled string in SerializedParentAction Schema + +```txt +https://timelimit.io/SerializedParentAction#/definitions/ParentPassword/properties/hash +``` + + + + +| Abstract | Extensible | Status | Identifiable | Custom Properties | Additional Properties | Access Restrictions | Defined In | +| :------------------ | ---------- | -------------- | ----------------------- | :---------------- | --------------------- | ------------------- | ------------------------------------------------------------------------------------------------- | +| Can be instantiated | No | Unknown status | Unknown identifiability | Forbidden | Allowed | none | [SerializedParentAction.schema.json\*](SerializedParentAction.schema.json "open original schema") | + +## hash Type + +`string` diff --git a/docs/schema/serializedparentaction-definitions-parentpassword-properties-secondhash.md b/docs/schema/serializedparentaction-definitions-parentpassword-properties-secondhash.md new file mode 100644 index 0000000..9ab88fd --- /dev/null +++ b/docs/schema/serializedparentaction-definitions-parentpassword-properties-secondhash.md @@ -0,0 +1,16 @@ +# Untitled string in SerializedParentAction Schema + +```txt +https://timelimit.io/SerializedParentAction#/definitions/ParentPassword/properties/secondHash +``` + + + + +| Abstract | Extensible | Status | Identifiable | Custom Properties | Additional Properties | Access Restrictions | Defined In | +| :------------------ | ---------- | -------------- | ----------------------- | :---------------- | --------------------- | ------------------- | ------------------------------------------------------------------------------------------------- | +| Can be instantiated | No | Unknown status | Unknown identifiability | Forbidden | Allowed | none | [SerializedParentAction.schema.json\*](SerializedParentAction.schema.json "open original schema") | + +## secondHash Type + +`string` diff --git a/docs/schema/serializedparentaction-definitions-parentpassword-properties-secondsalt.md b/docs/schema/serializedparentaction-definitions-parentpassword-properties-secondsalt.md new file mode 100644 index 0000000..263f2e7 --- /dev/null +++ b/docs/schema/serializedparentaction-definitions-parentpassword-properties-secondsalt.md @@ -0,0 +1,16 @@ +# Untitled string in SerializedParentAction Schema + +```txt +https://timelimit.io/SerializedParentAction#/definitions/ParentPassword/properties/secondSalt +``` + + + + +| Abstract | Extensible | Status | Identifiable | Custom Properties | Additional Properties | Access Restrictions | Defined In | +| :------------------ | ---------- | -------------- | ----------------------- | :---------------- | --------------------- | ------------------- | ------------------------------------------------------------------------------------------------- | +| Can be instantiated | No | Unknown status | Unknown identifiability | Forbidden | Allowed | none | [SerializedParentAction.schema.json\*](SerializedParentAction.schema.json "open original schema") | + +## secondSalt Type + +`string` diff --git a/docs/schema/serializedparentaction-definitions-parentpassword-properties.md b/docs/schema/serializedparentaction-definitions-parentpassword-properties.md new file mode 100644 index 0000000..b05ae6f --- /dev/null +++ b/docs/schema/serializedparentaction-definitions-parentpassword-properties.md @@ -0,0 +1,16 @@ +# Untitled undefined type in SerializedParentAction Schema + +```txt +https://timelimit.io/SerializedParentAction#/definitions/ParentPassword/properties +``` + + + + +| Abstract | Extensible | Status | Identifiable | Custom Properties | Additional Properties | Access Restrictions | Defined In | +| :------------------ | ---------- | -------------- | ----------------------- | :---------------- | --------------------- | ------------------- | ------------------------------------------------------------------------------------------------- | +| Can be instantiated | No | Unknown status | Unknown identifiability | Forbidden | Allowed | none | [SerializedParentAction.schema.json\*](SerializedParentAction.schema.json "open original schema") | + +## properties Type + +unknown diff --git a/docs/schema/serializedparentaction-definitions-parentpassword.md b/docs/schema/serializedparentaction-definitions-parentpassword.md new file mode 100644 index 0000000..d9b2008 --- /dev/null +++ b/docs/schema/serializedparentaction-definitions-parentpassword.md @@ -0,0 +1,72 @@ +# ParentPassword Schema + +```txt +https://timelimit.io/SerializedParentAction#/definitions/SerializedSetChildPasswordAction/properties/newPassword +``` + + + + +| Abstract | Extensible | Status | Identifiable | Custom Properties | Additional Properties | Access Restrictions | Defined In | +| :------------------ | ---------- | -------------- | ------------ | :---------------- | --------------------- | ------------------- | ------------------------------------------------------------------------------------------------- | +| Can be instantiated | No | Unknown status | No | Forbidden | Forbidden | none | [SerializedParentAction.schema.json\*](SerializedParentAction.schema.json "open original schema") | + +## newPassword Type + +`object` ([ParentPassword](serializedparentaction-definitions-parentpassword.md)) + +# ParentPassword Properties + +| Property | Type | Required | Nullable | Defined by | +| :------------------------ | -------- | -------- | -------------- | :-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | +| [hash](#hash) | `string` | Required | cannot be null | [SerializedParentAction](serializedparentaction-definitions-parentpassword-properties-hash.md "https://timelimit.io/SerializedParentAction#/definitions/ParentPassword/properties/hash") | +| [secondHash](#secondHash) | `string` | Required | cannot be null | [SerializedParentAction](serializedparentaction-definitions-parentpassword-properties-secondhash.md "https://timelimit.io/SerializedParentAction#/definitions/ParentPassword/properties/secondHash") | +| [secondSalt](#secondSalt) | `string` | Required | cannot be null | [SerializedParentAction](serializedparentaction-definitions-parentpassword-properties-secondsalt.md "https://timelimit.io/SerializedParentAction#/definitions/ParentPassword/properties/secondSalt") | + +## hash + + + + +`hash` + +- is required +- Type: `string` +- cannot be null +- defined in: [SerializedParentAction](serializedparentaction-definitions-parentpassword-properties-hash.md "https://timelimit.io/SerializedParentAction#/definitions/ParentPassword/properties/hash") + +### hash Type + +`string` + +## secondHash + + + + +`secondHash` + +- is required +- Type: `string` +- cannot be null +- defined in: [SerializedParentAction](serializedparentaction-definitions-parentpassword-properties-secondhash.md "https://timelimit.io/SerializedParentAction#/definitions/ParentPassword/properties/secondHash") + +### secondHash Type + +`string` + +## secondSalt + + + + +`secondSalt` + +- is required +- Type: `string` +- cannot be null +- defined in: [SerializedParentAction](serializedparentaction-definitions-parentpassword-properties-secondsalt.md "https://timelimit.io/SerializedParentAction#/definitions/ParentPassword/properties/secondSalt") + +### secondSalt Type + +`string` diff --git a/docs/schema/serializedparentaction-definitions-serialiizedupdatenetworktimeverificationaction-properties-deviceid.md b/docs/schema/serializedparentaction-definitions-serialiizedupdatenetworktimeverificationaction-properties-deviceid.md new file mode 100644 index 0000000..ffca784 --- /dev/null +++ b/docs/schema/serializedparentaction-definitions-serialiizedupdatenetworktimeverificationaction-properties-deviceid.md @@ -0,0 +1,16 @@ +# Untitled string in SerializedParentAction Schema + +```txt +https://timelimit.io/SerializedParentAction#/definitions/SerialiizedUpdateNetworkTimeVerificationAction/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 | [SerializedParentAction.schema.json\*](SerializedParentAction.schema.json "open original schema") | + +## deviceId Type + +`string` diff --git a/docs/schema/serializedparentaction-definitions-serialiizedupdatenetworktimeverificationaction-properties-mode.md b/docs/schema/serializedparentaction-definitions-serialiizedupdatenetworktimeverificationaction-properties-mode.md new file mode 100644 index 0000000..acb8d48 --- /dev/null +++ b/docs/schema/serializedparentaction-definitions-serialiizedupdatenetworktimeverificationaction-properties-mode.md @@ -0,0 +1,26 @@ +# Untitled string in SerializedParentAction Schema + +```txt +https://timelimit.io/SerializedParentAction#/definitions/SerialiizedUpdateNetworkTimeVerificationAction/properties/mode +``` + + + + +| Abstract | Extensible | Status | Identifiable | Custom Properties | Additional Properties | Access Restrictions | Defined In | +| :------------------ | ---------- | -------------- | ----------------------- | :---------------- | --------------------- | ------------------- | ------------------------------------------------------------------------------------------------- | +| Can be instantiated | No | Unknown status | Unknown identifiability | Forbidden | Allowed | none | [SerializedParentAction.schema.json\*](SerializedParentAction.schema.json "open original schema") | + +## mode Type + +`string` + +## mode Constraints + +**enum**: the value of this property must be equal to one of the following values: + +| Value | Explanation | +| :-------------- | ----------- | +| `"disabled"` | | +| `"enabled"` | | +| `"if possible"` | | diff --git a/docs/schema/serializedparentaction-definitions-serialiizedupdatenetworktimeverificationaction-properties-type.md b/docs/schema/serializedparentaction-definitions-serialiizedupdatenetworktimeverificationaction-properties-type.md new file mode 100644 index 0000000..3fd0b06 --- /dev/null +++ b/docs/schema/serializedparentaction-definitions-serialiizedupdatenetworktimeverificationaction-properties-type.md @@ -0,0 +1,24 @@ +# Untitled string in SerializedParentAction Schema + +```txt +https://timelimit.io/SerializedParentAction#/definitions/SerialiizedUpdateNetworkTimeVerificationAction/properties/type +``` + + + + +| Abstract | Extensible | Status | Identifiable | Custom Properties | Additional Properties | Access Restrictions | Defined In | +| :------------------ | ---------- | -------------- | ----------------------- | :---------------- | --------------------- | ------------------- | ------------------------------------------------------------------------------------------------- | +| Can be instantiated | No | Unknown status | Unknown identifiability | Forbidden | Allowed | none | [SerializedParentAction.schema.json\*](SerializedParentAction.schema.json "open original schema") | + +## type Type + +`string` + +## type Constraints + +**enum**: the value of this property must be equal to one of the following values: + +| Value | Explanation | +| :----------------------------------- | ----------- | +| `"UPDATE_NETWORK_TIME_VERIFICATION"` | | diff --git a/docs/schema/serializedparentaction-definitions-serialiizedupdatenetworktimeverificationaction-properties.md b/docs/schema/serializedparentaction-definitions-serialiizedupdatenetworktimeverificationaction-properties.md new file mode 100644 index 0000000..e17c9b9 --- /dev/null +++ b/docs/schema/serializedparentaction-definitions-serialiizedupdatenetworktimeverificationaction-properties.md @@ -0,0 +1,16 @@ +# Untitled undefined type in SerializedParentAction Schema + +```txt +https://timelimit.io/SerializedParentAction#/definitions/SerialiizedUpdateNetworkTimeVerificationAction/properties +``` + + + + +| Abstract | Extensible | Status | Identifiable | Custom Properties | Additional Properties | Access Restrictions | Defined In | +| :------------------ | ---------- | -------------- | ----------------------- | :---------------- | --------------------- | ------------------- | ------------------------------------------------------------------------------------------------- | +| Can be instantiated | No | Unknown status | Unknown identifiability | Forbidden | Allowed | none | [SerializedParentAction.schema.json\*](SerializedParentAction.schema.json "open original schema") | + +## properties Type + +unknown diff --git a/docs/schema/serializedparentaction-definitions-serialiizedupdatenetworktimeverificationaction.md b/docs/schema/serializedparentaction-definitions-serialiizedupdatenetworktimeverificationaction.md new file mode 100644 index 0000000..cb38e43 --- /dev/null +++ b/docs/schema/serializedparentaction-definitions-serialiizedupdatenetworktimeverificationaction.md @@ -0,0 +1,90 @@ +# SerialiizedUpdateNetworkTimeVerificationAction Schema + +```txt +https://timelimit.io/SerializedParentAction#/definitions/SerialiizedUpdateNetworkTimeVerificationAction +``` + + + + +| Abstract | Extensible | Status | Identifiable | Custom Properties | Additional Properties | Access Restrictions | Defined In | +| :------------------ | ---------- | -------------- | ------------ | :---------------- | --------------------- | ------------------- | ------------------------------------------------------------------------------------------------- | +| Can be instantiated | No | Unknown status | No | Forbidden | Forbidden | none | [SerializedParentAction.schema.json\*](SerializedParentAction.schema.json "open original schema") | + +## SerialiizedUpdateNetworkTimeVerificationAction Type + +`object` ([SerialiizedUpdateNetworkTimeVerificationAction](serializedparentaction-definitions-serialiizedupdatenetworktimeverificationaction.md)) + +# SerialiizedUpdateNetworkTimeVerificationAction Properties + +| Property | Type | Required | Nullable | Defined by | +| :-------------------- | -------- | -------- | -------------- | :-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | +| [type](#type) | `string` | Required | cannot be null | [SerializedParentAction](serializedparentaction-definitions-serialiizedupdatenetworktimeverificationaction-properties-type.md "https://timelimit.io/SerializedParentAction#/definitions/SerialiizedUpdateNetworkTimeVerificationAction/properties/type") | +| [deviceId](#deviceId) | `string` | Required | cannot be null | [SerializedParentAction](serializedparentaction-definitions-serialiizedupdatenetworktimeverificationaction-properties-deviceid.md "https://timelimit.io/SerializedParentAction#/definitions/SerialiizedUpdateNetworkTimeVerificationAction/properties/deviceId") | +| [mode](#mode) | `string` | Required | cannot be null | [SerializedParentAction](serializedparentaction-definitions-serialiizedupdatenetworktimeverificationaction-properties-mode.md "https://timelimit.io/SerializedParentAction#/definitions/SerialiizedUpdateNetworkTimeVerificationAction/properties/mode") | + +## type + + + + +`type` + +- is required +- Type: `string` +- cannot be null +- defined in: [SerializedParentAction](serializedparentaction-definitions-serialiizedupdatenetworktimeverificationaction-properties-type.md "https://timelimit.io/SerializedParentAction#/definitions/SerialiizedUpdateNetworkTimeVerificationAction/properties/type") + +### type Type + +`string` + +### type Constraints + +**enum**: the value of this property must be equal to one of the following values: + +| Value | Explanation | +| :----------------------------------- | ----------- | +| `"UPDATE_NETWORK_TIME_VERIFICATION"` | | + +## deviceId + + + + +`deviceId` + +- is required +- Type: `string` +- cannot be null +- defined in: [SerializedParentAction](serializedparentaction-definitions-serialiizedupdatenetworktimeverificationaction-properties-deviceid.md "https://timelimit.io/SerializedParentAction#/definitions/SerialiizedUpdateNetworkTimeVerificationAction/properties/deviceId") + +### deviceId Type + +`string` + +## mode + + + + +`mode` + +- is required +- Type: `string` +- cannot be null +- defined in: [SerializedParentAction](serializedparentaction-definitions-serialiizedupdatenetworktimeverificationaction-properties-mode.md "https://timelimit.io/SerializedParentAction#/definitions/SerialiizedUpdateNetworkTimeVerificationAction/properties/mode") + +### mode Type + +`string` + +### mode Constraints + +**enum**: the value of this property must be equal to one of the following values: + +| Value | Explanation | +| :-------------- | ----------- | +| `"disabled"` | | +| `"enabled"` | | +| `"if possible"` | | diff --git a/docs/schema/serializedparentaction-definitions-serializedaddcategoryappsaction-properties-categoryid.md b/docs/schema/serializedparentaction-definitions-serializedaddcategoryappsaction-properties-categoryid.md new file mode 100644 index 0000000..69eefd6 --- /dev/null +++ b/docs/schema/serializedparentaction-definitions-serializedaddcategoryappsaction-properties-categoryid.md @@ -0,0 +1,16 @@ +# Untitled string in SerializedParentAction Schema + +```txt +https://timelimit.io/SerializedParentAction#/definitions/SerializedAddCategoryAppsAction/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 | [SerializedParentAction.schema.json\*](SerializedParentAction.schema.json "open original schema") | + +## categoryId Type + +`string` diff --git a/docs/schema/serializedparentaction-definitions-serializedaddcategoryappsaction-properties-packagenames-items.md b/docs/schema/serializedparentaction-definitions-serializedaddcategoryappsaction-properties-packagenames-items.md new file mode 100644 index 0000000..23c7a36 --- /dev/null +++ b/docs/schema/serializedparentaction-definitions-serializedaddcategoryappsaction-properties-packagenames-items.md @@ -0,0 +1,16 @@ +# Untitled string in SerializedParentAction Schema + +```txt +https://timelimit.io/SerializedParentAction#/definitions/SerializedAddCategoryAppsAction/properties/packageNames/items +``` + + + + +| Abstract | Extensible | Status | Identifiable | Custom Properties | Additional Properties | Access Restrictions | Defined In | +| :------------------ | ---------- | -------------- | ----------------------- | :---------------- | --------------------- | ------------------- | ------------------------------------------------------------------------------------------------- | +| Can be instantiated | No | Unknown status | Unknown identifiability | Forbidden | Allowed | none | [SerializedParentAction.schema.json\*](SerializedParentAction.schema.json "open original schema") | + +## items Type + +`string` diff --git a/docs/schema/serializedparentaction-definitions-serializedaddcategoryappsaction-properties-packagenames.md b/docs/schema/serializedparentaction-definitions-serializedaddcategoryappsaction-properties-packagenames.md new file mode 100644 index 0000000..b68ea48 --- /dev/null +++ b/docs/schema/serializedparentaction-definitions-serializedaddcategoryappsaction-properties-packagenames.md @@ -0,0 +1,16 @@ +# Untitled array in SerializedParentAction Schema + +```txt +https://timelimit.io/SerializedParentAction#/definitions/SerializedAddCategoryAppsAction/properties/packageNames +``` + + + + +| Abstract | Extensible | Status | Identifiable | Custom Properties | Additional Properties | Access Restrictions | Defined In | +| :------------------ | ---------- | -------------- | ----------------------- | :---------------- | --------------------- | ------------------- | ------------------------------------------------------------------------------------------------- | +| Can be instantiated | No | Unknown status | Unknown identifiability | Forbidden | Allowed | none | [SerializedParentAction.schema.json\*](SerializedParentAction.schema.json "open original schema") | + +## packageNames Type + +`string[]` diff --git a/docs/schema/serializedparentaction-definitions-serializedaddcategoryappsaction-properties-type.md b/docs/schema/serializedparentaction-definitions-serializedaddcategoryappsaction-properties-type.md new file mode 100644 index 0000000..a319193 --- /dev/null +++ b/docs/schema/serializedparentaction-definitions-serializedaddcategoryappsaction-properties-type.md @@ -0,0 +1,24 @@ +# Untitled string in SerializedParentAction Schema + +```txt +https://timelimit.io/SerializedParentAction#/definitions/SerializedAddCategoryAppsAction/properties/type +``` + + + + +| Abstract | Extensible | Status | Identifiable | Custom Properties | Additional Properties | Access Restrictions | Defined In | +| :------------------ | ---------- | -------------- | ----------------------- | :---------------- | --------------------- | ------------------- | ------------------------------------------------------------------------------------------------- | +| Can be instantiated | No | Unknown status | Unknown identifiability | Forbidden | Allowed | none | [SerializedParentAction.schema.json\*](SerializedParentAction.schema.json "open original schema") | + +## type Type + +`string` + +## type Constraints + +**enum**: the value of this property must be equal to one of the following values: + +| Value | Explanation | +| :-------------------- | ----------- | +| `"ADD_CATEGORY_APPS"` | | diff --git a/docs/schema/serializedparentaction-definitions-serializedaddcategoryappsaction-properties.md b/docs/schema/serializedparentaction-definitions-serializedaddcategoryappsaction-properties.md new file mode 100644 index 0000000..018d8b0 --- /dev/null +++ b/docs/schema/serializedparentaction-definitions-serializedaddcategoryappsaction-properties.md @@ -0,0 +1,16 @@ +# Untitled undefined type in SerializedParentAction Schema + +```txt +https://timelimit.io/SerializedParentAction#/definitions/SerializedAddCategoryAppsAction/properties +``` + + + + +| Abstract | Extensible | Status | Identifiable | Custom Properties | Additional Properties | Access Restrictions | Defined In | +| :------------------ | ---------- | -------------- | ----------------------- | :---------------- | --------------------- | ------------------- | ------------------------------------------------------------------------------------------------- | +| Can be instantiated | No | Unknown status | Unknown identifiability | Forbidden | Allowed | none | [SerializedParentAction.schema.json\*](SerializedParentAction.schema.json "open original schema") | + +## properties Type + +unknown diff --git a/docs/schema/serializedparentaction-definitions-serializedaddcategoryappsaction.md b/docs/schema/serializedparentaction-definitions-serializedaddcategoryappsaction.md new file mode 100644 index 0000000..305b9ff --- /dev/null +++ b/docs/schema/serializedparentaction-definitions-serializedaddcategoryappsaction.md @@ -0,0 +1,80 @@ +# SerializedAddCategoryAppsAction Schema + +```txt +https://timelimit.io/SerializedParentAction#/definitions/SerializedAddCategoryAppsAction +``` + + + + +| Abstract | Extensible | Status | Identifiable | Custom Properties | Additional Properties | Access Restrictions | Defined In | +| :------------------ | ---------- | -------------- | ------------ | :---------------- | --------------------- | ------------------- | ------------------------------------------------------------------------------------------------- | +| Can be instantiated | No | Unknown status | No | Forbidden | Forbidden | none | [SerializedParentAction.schema.json\*](SerializedParentAction.schema.json "open original schema") | + +## SerializedAddCategoryAppsAction Type + +`object` ([SerializedAddCategoryAppsAction](serializedparentaction-definitions-serializedaddcategoryappsaction.md)) + +# SerializedAddCategoryAppsAction Properties + +| Property | Type | Required | Nullable | Defined by | +| :---------------------------- | -------- | -------- | -------------- | :---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | +| [type](#type) | `string` | Required | cannot be null | [SerializedParentAction](serializedparentaction-definitions-serializedaddcategoryappsaction-properties-type.md "https://timelimit.io/SerializedParentAction#/definitions/SerializedAddCategoryAppsAction/properties/type") | +| [categoryId](#categoryId) | `string` | Required | cannot be null | [SerializedParentAction](serializedparentaction-definitions-serializedaddcategoryappsaction-properties-categoryid.md "https://timelimit.io/SerializedParentAction#/definitions/SerializedAddCategoryAppsAction/properties/categoryId") | +| [packageNames](#packageNames) | `array` | Required | cannot be null | [SerializedParentAction](serializedparentaction-definitions-serializedaddcategoryappsaction-properties-packagenames.md "https://timelimit.io/SerializedParentAction#/definitions/SerializedAddCategoryAppsAction/properties/packageNames") | + +## type + + + + +`type` + +- is required +- Type: `string` +- cannot be null +- defined in: [SerializedParentAction](serializedparentaction-definitions-serializedaddcategoryappsaction-properties-type.md "https://timelimit.io/SerializedParentAction#/definitions/SerializedAddCategoryAppsAction/properties/type") + +### type Type + +`string` + +### type Constraints + +**enum**: the value of this property must be equal to one of the following values: + +| Value | Explanation | +| :-------------------- | ----------- | +| `"ADD_CATEGORY_APPS"` | | + +## categoryId + + + + +`categoryId` + +- is required +- Type: `string` +- cannot be null +- defined in: [SerializedParentAction](serializedparentaction-definitions-serializedaddcategoryappsaction-properties-categoryid.md "https://timelimit.io/SerializedParentAction#/definitions/SerializedAddCategoryAppsAction/properties/categoryId") + +### categoryId Type + +`string` + +## packageNames + + + + +`packageNames` + +- is required +- Type: `string[]` +- cannot be null +- defined in: [SerializedParentAction](serializedparentaction-definitions-serializedaddcategoryappsaction-properties-packagenames.md "https://timelimit.io/SerializedParentAction#/definitions/SerializedAddCategoryAppsAction/properties/packageNames") + +### packageNames Type + +`string[]` diff --git a/docs/schema/serializedparentaction-definitions-serializedadduseraction-properties-name.md b/docs/schema/serializedparentaction-definitions-serializedadduseraction-properties-name.md new file mode 100644 index 0000000..ad2bda8 --- /dev/null +++ b/docs/schema/serializedparentaction-definitions-serializedadduseraction-properties-name.md @@ -0,0 +1,16 @@ +# Untitled string in SerializedParentAction Schema + +```txt +https://timelimit.io/SerializedParentAction#/definitions/SerializedAddUserAction/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 | [SerializedParentAction.schema.json\*](SerializedParentAction.schema.json "open original schema") | + +## name Type + +`string` diff --git a/docs/schema/serializedparentaction-definitions-serializedadduseraction-properties-timezone.md b/docs/schema/serializedparentaction-definitions-serializedadduseraction-properties-timezone.md new file mode 100644 index 0000000..5cee39c --- /dev/null +++ b/docs/schema/serializedparentaction-definitions-serializedadduseraction-properties-timezone.md @@ -0,0 +1,16 @@ +# Untitled string in SerializedParentAction Schema + +```txt +https://timelimit.io/SerializedParentAction#/definitions/SerializedAddUserAction/properties/timeZone +``` + + + + +| Abstract | Extensible | Status | Identifiable | Custom Properties | Additional Properties | Access Restrictions | Defined In | +| :------------------ | ---------- | -------------- | ----------------------- | :---------------- | --------------------- | ------------------- | ------------------------------------------------------------------------------------------------- | +| Can be instantiated | No | Unknown status | Unknown identifiability | Forbidden | Allowed | none | [SerializedParentAction.schema.json\*](SerializedParentAction.schema.json "open original schema") | + +## timeZone Type + +`string` diff --git a/docs/schema/serializedparentaction-definitions-serializedadduseraction-properties-type.md b/docs/schema/serializedparentaction-definitions-serializedadduseraction-properties-type.md new file mode 100644 index 0000000..4ecc64c --- /dev/null +++ b/docs/schema/serializedparentaction-definitions-serializedadduseraction-properties-type.md @@ -0,0 +1,24 @@ +# Untitled string in SerializedParentAction Schema + +```txt +https://timelimit.io/SerializedParentAction#/definitions/SerializedAddUserAction/properties/type +``` + + + + +| Abstract | Extensible | Status | Identifiable | Custom Properties | Additional Properties | Access Restrictions | Defined In | +| :------------------ | ---------- | -------------- | ----------------------- | :---------------- | --------------------- | ------------------- | ------------------------------------------------------------------------------------------------- | +| Can be instantiated | No | Unknown status | Unknown identifiability | Forbidden | Allowed | none | [SerializedParentAction.schema.json\*](SerializedParentAction.schema.json "open original schema") | + +## type Type + +`string` + +## type Constraints + +**enum**: the value of this property must be equal to one of the following values: + +| Value | Explanation | +| :----------- | ----------- | +| `"ADD_USER"` | | diff --git a/docs/schema/serializedparentaction-definitions-serializedadduseraction-properties-userid.md b/docs/schema/serializedparentaction-definitions-serializedadduseraction-properties-userid.md new file mode 100644 index 0000000..81c2a63 --- /dev/null +++ b/docs/schema/serializedparentaction-definitions-serializedadduseraction-properties-userid.md @@ -0,0 +1,16 @@ +# Untitled string in SerializedParentAction Schema + +```txt +https://timelimit.io/SerializedParentAction#/definitions/SerializedAddUserAction/properties/userId +``` + + + + +| Abstract | Extensible | Status | Identifiable | Custom Properties | Additional Properties | Access Restrictions | Defined In | +| :------------------ | ---------- | -------------- | ----------------------- | :---------------- | --------------------- | ------------------- | ------------------------------------------------------------------------------------------------- | +| Can be instantiated | No | Unknown status | Unknown identifiability | Forbidden | Allowed | none | [SerializedParentAction.schema.json\*](SerializedParentAction.schema.json "open original schema") | + +## userId Type + +`string` diff --git a/docs/schema/serializedparentaction-definitions-serializedadduseraction-properties-usertype.md b/docs/schema/serializedparentaction-definitions-serializedadduseraction-properties-usertype.md new file mode 100644 index 0000000..048e410 --- /dev/null +++ b/docs/schema/serializedparentaction-definitions-serializedadduseraction-properties-usertype.md @@ -0,0 +1,25 @@ +# Untitled string in SerializedParentAction Schema + +```txt +https://timelimit.io/SerializedParentAction#/definitions/SerializedAddUserAction/properties/userType +``` + + + + +| Abstract | Extensible | Status | Identifiable | Custom Properties | Additional Properties | Access Restrictions | Defined In | +| :------------------ | ---------- | -------------- | ----------------------- | :---------------- | --------------------- | ------------------- | ------------------------------------------------------------------------------------------------- | +| Can be instantiated | No | Unknown status | Unknown identifiability | Forbidden | Allowed | none | [SerializedParentAction.schema.json\*](SerializedParentAction.schema.json "open original schema") | + +## userType Type + +`string` + +## userType Constraints + +**enum**: the value of this property must be equal to one of the following values: + +| Value | Explanation | +| :--------- | ----------- | +| `"child"` | | +| `"parent"` | | diff --git a/docs/schema/serializedparentaction-definitions-serializedadduseraction-properties.md b/docs/schema/serializedparentaction-definitions-serializedadduseraction-properties.md new file mode 100644 index 0000000..b2fecc2 --- /dev/null +++ b/docs/schema/serializedparentaction-definitions-serializedadduseraction-properties.md @@ -0,0 +1,16 @@ +# Untitled undefined type in SerializedParentAction Schema + +```txt +https://timelimit.io/SerializedParentAction#/definitions/SerializedAddUserAction/properties +``` + + + + +| Abstract | Extensible | Status | Identifiable | Custom Properties | Additional Properties | Access Restrictions | Defined In | +| :------------------ | ---------- | -------------- | ----------------------- | :---------------- | --------------------- | ------------------- | ------------------------------------------------------------------------------------------------- | +| Can be instantiated | No | Unknown status | Unknown identifiability | Forbidden | Allowed | none | [SerializedParentAction.schema.json\*](SerializedParentAction.schema.json "open original schema") | + +## properties Type + +unknown diff --git a/docs/schema/serializedparentaction-definitions-serializedadduseraction.md b/docs/schema/serializedparentaction-definitions-serializedadduseraction.md new file mode 100644 index 0000000..23219ae --- /dev/null +++ b/docs/schema/serializedparentaction-definitions-serializedadduseraction.md @@ -0,0 +1,140 @@ +# SerializedAddUserAction Schema + +```txt +https://timelimit.io/SerializedParentAction#/definitions/SerializedAddUserAction +``` + + + + +| Abstract | Extensible | Status | Identifiable | Custom Properties | Additional Properties | Access Restrictions | Defined In | +| :------------------ | ---------- | -------------- | ------------ | :---------------- | --------------------- | ------------------- | ------------------------------------------------------------------------------------------------- | +| Can be instantiated | No | Unknown status | No | Forbidden | Forbidden | none | [SerializedParentAction.schema.json\*](SerializedParentAction.schema.json "open original schema") | + +## SerializedAddUserAction Type + +`object` ([SerializedAddUserAction](serializedparentaction-definitions-serializedadduseraction.md)) + +# SerializedAddUserAction Properties + +| Property | Type | Required | Nullable | Defined by | +| :-------------------- | -------- | -------- | -------------- | :---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | +| [type](#type) | `string` | Required | cannot be null | [SerializedParentAction](serializedparentaction-definitions-serializedadduseraction-properties-type.md "https://timelimit.io/SerializedParentAction#/definitions/SerializedAddUserAction/properties/type") | +| [name](#name) | `string` | Required | cannot be null | [SerializedParentAction](serializedparentaction-definitions-serializedadduseraction-properties-name.md "https://timelimit.io/SerializedParentAction#/definitions/SerializedAddUserAction/properties/name") | +| [userType](#userType) | `string` | Required | cannot be null | [SerializedParentAction](serializedparentaction-definitions-serializedadduseraction-properties-usertype.md "https://timelimit.io/SerializedParentAction#/definitions/SerializedAddUserAction/properties/userType") | +| [userId](#userId) | `string` | Required | cannot be null | [SerializedParentAction](serializedparentaction-definitions-serializedadduseraction-properties-userid.md "https://timelimit.io/SerializedParentAction#/definitions/SerializedAddUserAction/properties/userId") | +| [password](#password) | `object` | Optional | cannot be null | [SerializedParentAction](serializedparentaction-definitions-parentpassword.md "https://timelimit.io/SerializedParentAction#/definitions/SerializedAddUserAction/properties/password") | +| [timeZone](#timeZone) | `string` | Required | cannot be null | [SerializedParentAction](serializedparentaction-definitions-serializedadduseraction-properties-timezone.md "https://timelimit.io/SerializedParentAction#/definitions/SerializedAddUserAction/properties/timeZone") | + +## type + + + + +`type` + +- is required +- Type: `string` +- cannot be null +- defined in: [SerializedParentAction](serializedparentaction-definitions-serializedadduseraction-properties-type.md "https://timelimit.io/SerializedParentAction#/definitions/SerializedAddUserAction/properties/type") + +### type Type + +`string` + +### type Constraints + +**enum**: the value of this property must be equal to one of the following values: + +| Value | Explanation | +| :----------- | ----------- | +| `"ADD_USER"` | | + +## name + + + + +`name` + +- is required +- Type: `string` +- cannot be null +- defined in: [SerializedParentAction](serializedparentaction-definitions-serializedadduseraction-properties-name.md "https://timelimit.io/SerializedParentAction#/definitions/SerializedAddUserAction/properties/name") + +### name Type + +`string` + +## userType + + + + +`userType` + +- is required +- Type: `string` +- cannot be null +- defined in: [SerializedParentAction](serializedparentaction-definitions-serializedadduseraction-properties-usertype.md "https://timelimit.io/SerializedParentAction#/definitions/SerializedAddUserAction/properties/userType") + +### userType Type + +`string` + +### userType Constraints + +**enum**: the value of this property must be equal to one of the following values: + +| Value | Explanation | +| :--------- | ----------- | +| `"child"` | | +| `"parent"` | | + +## userId + + + + +`userId` + +- is required +- Type: `string` +- cannot be null +- defined in: [SerializedParentAction](serializedparentaction-definitions-serializedadduseraction-properties-userid.md "https://timelimit.io/SerializedParentAction#/definitions/SerializedAddUserAction/properties/userId") + +### userId Type + +`string` + +## password + + + + +`password` + +- is optional +- Type: `object` ([ParentPassword](serializedparentaction-definitions-parentpassword.md)) +- cannot be null +- defined in: [SerializedParentAction](serializedparentaction-definitions-parentpassword.md "https://timelimit.io/SerializedParentAction#/definitions/SerializedAddUserAction/properties/password") + +### password Type + +`object` ([ParentPassword](serializedparentaction-definitions-parentpassword.md)) + +## timeZone + + + + +`timeZone` + +- is required +- Type: `string` +- cannot be null +- defined in: [SerializedParentAction](serializedparentaction-definitions-serializedadduseraction-properties-timezone.md "https://timelimit.io/SerializedParentAction#/definitions/SerializedAddUserAction/properties/timeZone") + +### timeZone Type + +`string` diff --git a/docs/schema/serializedparentaction-definitions-serializedchangeparentpasswordaction-properties-hash.md b/docs/schema/serializedparentaction-definitions-serializedchangeparentpasswordaction-properties-hash.md new file mode 100644 index 0000000..10ec739 --- /dev/null +++ b/docs/schema/serializedparentaction-definitions-serializedchangeparentpasswordaction-properties-hash.md @@ -0,0 +1,16 @@ +# Untitled string in SerializedParentAction Schema + +```txt +https://timelimit.io/SerializedParentAction#/definitions/SerializedChangeParentPasswordAction/properties/hash +``` + + + + +| Abstract | Extensible | Status | Identifiable | Custom Properties | Additional Properties | Access Restrictions | Defined In | +| :------------------ | ---------- | -------------- | ----------------------- | :---------------- | --------------------- | ------------------- | ------------------------------------------------------------------------------------------------- | +| Can be instantiated | No | Unknown status | Unknown identifiability | Forbidden | Allowed | none | [SerializedParentAction.schema.json\*](SerializedParentAction.schema.json "open original schema") | + +## hash Type + +`string` diff --git a/docs/schema/serializedparentaction-definitions-serializedchangeparentpasswordaction-properties-integrity.md b/docs/schema/serializedparentaction-definitions-serializedchangeparentpasswordaction-properties-integrity.md new file mode 100644 index 0000000..9c49943 --- /dev/null +++ b/docs/schema/serializedparentaction-definitions-serializedchangeparentpasswordaction-properties-integrity.md @@ -0,0 +1,16 @@ +# Untitled string in SerializedParentAction Schema + +```txt +https://timelimit.io/SerializedParentAction#/definitions/SerializedChangeParentPasswordAction/properties/integrity +``` + + + + +| Abstract | Extensible | Status | Identifiable | Custom Properties | Additional Properties | Access Restrictions | Defined In | +| :------------------ | ---------- | -------------- | ----------------------- | :---------------- | --------------------- | ------------------- | ------------------------------------------------------------------------------------------------- | +| Can be instantiated | No | Unknown status | Unknown identifiability | Forbidden | Allowed | none | [SerializedParentAction.schema.json\*](SerializedParentAction.schema.json "open original schema") | + +## integrity Type + +`string` diff --git a/docs/schema/serializedparentaction-definitions-serializedchangeparentpasswordaction-properties-secondhashencrypted.md b/docs/schema/serializedparentaction-definitions-serializedchangeparentpasswordaction-properties-secondhashencrypted.md new file mode 100644 index 0000000..3a09b34 --- /dev/null +++ b/docs/schema/serializedparentaction-definitions-serializedchangeparentpasswordaction-properties-secondhashencrypted.md @@ -0,0 +1,16 @@ +# Untitled string in SerializedParentAction Schema + +```txt +https://timelimit.io/SerializedParentAction#/definitions/SerializedChangeParentPasswordAction/properties/secondHashEncrypted +``` + + + + +| Abstract | Extensible | Status | Identifiable | Custom Properties | Additional Properties | Access Restrictions | Defined In | +| :------------------ | ---------- | -------------- | ----------------------- | :---------------- | --------------------- | ------------------- | ------------------------------------------------------------------------------------------------- | +| Can be instantiated | No | Unknown status | Unknown identifiability | Forbidden | Allowed | none | [SerializedParentAction.schema.json\*](SerializedParentAction.schema.json "open original schema") | + +## secondHashEncrypted Type + +`string` diff --git a/docs/schema/serializedparentaction-definitions-serializedchangeparentpasswordaction-properties-secondsalt.md b/docs/schema/serializedparentaction-definitions-serializedchangeparentpasswordaction-properties-secondsalt.md new file mode 100644 index 0000000..8352651 --- /dev/null +++ b/docs/schema/serializedparentaction-definitions-serializedchangeparentpasswordaction-properties-secondsalt.md @@ -0,0 +1,16 @@ +# Untitled string in SerializedParentAction Schema + +```txt +https://timelimit.io/SerializedParentAction#/definitions/SerializedChangeParentPasswordAction/properties/secondSalt +``` + + + + +| Abstract | Extensible | Status | Identifiable | Custom Properties | Additional Properties | Access Restrictions | Defined In | +| :------------------ | ---------- | -------------- | ----------------------- | :---------------- | --------------------- | ------------------- | ------------------------------------------------------------------------------------------------- | +| Can be instantiated | No | Unknown status | Unknown identifiability | Forbidden | Allowed | none | [SerializedParentAction.schema.json\*](SerializedParentAction.schema.json "open original schema") | + +## secondSalt Type + +`string` diff --git a/docs/schema/serializedparentaction-definitions-serializedchangeparentpasswordaction-properties-type.md b/docs/schema/serializedparentaction-definitions-serializedchangeparentpasswordaction-properties-type.md new file mode 100644 index 0000000..e42bdb1 --- /dev/null +++ b/docs/schema/serializedparentaction-definitions-serializedchangeparentpasswordaction-properties-type.md @@ -0,0 +1,24 @@ +# Untitled string in SerializedParentAction Schema + +```txt +https://timelimit.io/SerializedParentAction#/definitions/SerializedChangeParentPasswordAction/properties/type +``` + + + + +| Abstract | Extensible | Status | Identifiable | Custom Properties | Additional Properties | Access Restrictions | Defined In | +| :------------------ | ---------- | -------------- | ----------------------- | :---------------- | --------------------- | ------------------- | ------------------------------------------------------------------------------------------------- | +| Can be instantiated | No | Unknown status | Unknown identifiability | Forbidden | Allowed | none | [SerializedParentAction.schema.json\*](SerializedParentAction.schema.json "open original schema") | + +## type Type + +`string` + +## type Constraints + +**enum**: the value of this property must be equal to one of the following values: + +| Value | Explanation | +| :------------------------- | ----------- | +| `"CHANGE_PARENT_PASSWORD"` | | diff --git a/docs/schema/serializedparentaction-definitions-serializedchangeparentpasswordaction-properties-userid.md b/docs/schema/serializedparentaction-definitions-serializedchangeparentpasswordaction-properties-userid.md new file mode 100644 index 0000000..0976229 --- /dev/null +++ b/docs/schema/serializedparentaction-definitions-serializedchangeparentpasswordaction-properties-userid.md @@ -0,0 +1,16 @@ +# Untitled string in SerializedParentAction Schema + +```txt +https://timelimit.io/SerializedParentAction#/definitions/SerializedChangeParentPasswordAction/properties/userId +``` + + + + +| Abstract | Extensible | Status | Identifiable | Custom Properties | Additional Properties | Access Restrictions | Defined In | +| :------------------ | ---------- | -------------- | ----------------------- | :---------------- | --------------------- | ------------------- | ------------------------------------------------------------------------------------------------- | +| Can be instantiated | No | Unknown status | Unknown identifiability | Forbidden | Allowed | none | [SerializedParentAction.schema.json\*](SerializedParentAction.schema.json "open original schema") | + +## userId Type + +`string` diff --git a/docs/schema/serializedparentaction-definitions-serializedchangeparentpasswordaction-properties.md b/docs/schema/serializedparentaction-definitions-serializedchangeparentpasswordaction-properties.md new file mode 100644 index 0000000..533a330 --- /dev/null +++ b/docs/schema/serializedparentaction-definitions-serializedchangeparentpasswordaction-properties.md @@ -0,0 +1,16 @@ +# Untitled undefined type in SerializedParentAction Schema + +```txt +https://timelimit.io/SerializedParentAction#/definitions/SerializedChangeParentPasswordAction/properties +``` + + + + +| Abstract | Extensible | Status | Identifiable | Custom Properties | Additional Properties | Access Restrictions | Defined In | +| :------------------ | ---------- | -------------- | ----------------------- | :---------------- | --------------------- | ------------------- | ------------------------------------------------------------------------------------------------- | +| Can be instantiated | No | Unknown status | Unknown identifiability | Forbidden | Allowed | none | [SerializedParentAction.schema.json\*](SerializedParentAction.schema.json "open original schema") | + +## properties Type + +unknown diff --git a/docs/schema/serializedparentaction-definitions-serializedchangeparentpasswordaction.md b/docs/schema/serializedparentaction-definitions-serializedchangeparentpasswordaction.md new file mode 100644 index 0000000..714c644 --- /dev/null +++ b/docs/schema/serializedparentaction-definitions-serializedchangeparentpasswordaction.md @@ -0,0 +1,131 @@ +# SerializedChangeParentPasswordAction Schema + +```txt +https://timelimit.io/SerializedParentAction#/definitions/SerializedChangeParentPasswordAction +``` + + + + +| Abstract | Extensible | Status | Identifiable | Custom Properties | Additional Properties | Access Restrictions | Defined In | +| :------------------ | ---------- | -------------- | ------------ | :---------------- | --------------------- | ------------------- | ------------------------------------------------------------------------------------------------- | +| Can be instantiated | No | Unknown status | No | Forbidden | Forbidden | none | [SerializedParentAction.schema.json\*](SerializedParentAction.schema.json "open original schema") | + +## SerializedChangeParentPasswordAction Type + +`object` ([SerializedChangeParentPasswordAction](serializedparentaction-definitions-serializedchangeparentpasswordaction.md)) + +# SerializedChangeParentPasswordAction Properties + +| Property | Type | Required | Nullable | Defined by | +| :------------------------------------------ | -------- | -------- | -------------- | :---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | +| [type](#type) | `string` | Required | cannot be null | [SerializedParentAction](serializedparentaction-definitions-serializedchangeparentpasswordaction-properties-type.md "https://timelimit.io/SerializedParentAction#/definitions/SerializedChangeParentPasswordAction/properties/type") | +| [userId](#userId) | `string` | Required | cannot be null | [SerializedParentAction](serializedparentaction-definitions-serializedchangeparentpasswordaction-properties-userid.md "https://timelimit.io/SerializedParentAction#/definitions/SerializedChangeParentPasswordAction/properties/userId") | +| [hash](#hash) | `string` | Required | cannot be null | [SerializedParentAction](serializedparentaction-definitions-serializedchangeparentpasswordaction-properties-hash.md "https://timelimit.io/SerializedParentAction#/definitions/SerializedChangeParentPasswordAction/properties/hash") | +| [secondSalt](#secondSalt) | `string` | Required | cannot be null | [SerializedParentAction](serializedparentaction-definitions-serializedchangeparentpasswordaction-properties-secondsalt.md "https://timelimit.io/SerializedParentAction#/definitions/SerializedChangeParentPasswordAction/properties/secondSalt") | +| [secondHashEncrypted](#secondHashEncrypted) | `string` | Required | cannot be null | [SerializedParentAction](serializedparentaction-definitions-serializedchangeparentpasswordaction-properties-secondhashencrypted.md "https://timelimit.io/SerializedParentAction#/definitions/SerializedChangeParentPasswordAction/properties/secondHashEncrypted") | +| [integrity](#integrity) | `string` | Required | cannot be null | [SerializedParentAction](serializedparentaction-definitions-serializedchangeparentpasswordaction-properties-integrity.md "https://timelimit.io/SerializedParentAction#/definitions/SerializedChangeParentPasswordAction/properties/integrity") | + +## type + + + + +`type` + +- is required +- Type: `string` +- cannot be null +- defined in: [SerializedParentAction](serializedparentaction-definitions-serializedchangeparentpasswordaction-properties-type.md "https://timelimit.io/SerializedParentAction#/definitions/SerializedChangeParentPasswordAction/properties/type") + +### type Type + +`string` + +### type Constraints + +**enum**: the value of this property must be equal to one of the following values: + +| Value | Explanation | +| :------------------------- | ----------- | +| `"CHANGE_PARENT_PASSWORD"` | | + +## userId + + + + +`userId` + +- is required +- Type: `string` +- cannot be null +- defined in: [SerializedParentAction](serializedparentaction-definitions-serializedchangeparentpasswordaction-properties-userid.md "https://timelimit.io/SerializedParentAction#/definitions/SerializedChangeParentPasswordAction/properties/userId") + +### userId Type + +`string` + +## hash + + + + +`hash` + +- is required +- Type: `string` +- cannot be null +- defined in: [SerializedParentAction](serializedparentaction-definitions-serializedchangeparentpasswordaction-properties-hash.md "https://timelimit.io/SerializedParentAction#/definitions/SerializedChangeParentPasswordAction/properties/hash") + +### hash Type + +`string` + +## secondSalt + + + + +`secondSalt` + +- is required +- Type: `string` +- cannot be null +- defined in: [SerializedParentAction](serializedparentaction-definitions-serializedchangeparentpasswordaction-properties-secondsalt.md "https://timelimit.io/SerializedParentAction#/definitions/SerializedChangeParentPasswordAction/properties/secondSalt") + +### secondSalt Type + +`string` + +## secondHashEncrypted + + + + +`secondHashEncrypted` + +- is required +- Type: `string` +- cannot be null +- defined in: [SerializedParentAction](serializedparentaction-definitions-serializedchangeparentpasswordaction-properties-secondhashencrypted.md "https://timelimit.io/SerializedParentAction#/definitions/SerializedChangeParentPasswordAction/properties/secondHashEncrypted") + +### secondHashEncrypted Type + +`string` + +## integrity + + + + +`integrity` + +- is required +- Type: `string` +- cannot be null +- defined in: [SerializedParentAction](serializedparentaction-definitions-serializedchangeparentpasswordaction-properties-integrity.md "https://timelimit.io/SerializedParentAction#/definitions/SerializedChangeParentPasswordAction/properties/integrity") + +### integrity Type + +`string` diff --git a/docs/schema/serializedparentaction-definitions-serializedcreatecategoryaction-properties-categoryid.md b/docs/schema/serializedparentaction-definitions-serializedcreatecategoryaction-properties-categoryid.md new file mode 100644 index 0000000..c8d255b --- /dev/null +++ b/docs/schema/serializedparentaction-definitions-serializedcreatecategoryaction-properties-categoryid.md @@ -0,0 +1,16 @@ +# Untitled string in SerializedParentAction Schema + +```txt +https://timelimit.io/SerializedParentAction#/definitions/SerializedCreateCategoryAction/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 | [SerializedParentAction.schema.json\*](SerializedParentAction.schema.json "open original schema") | + +## categoryId Type + +`string` diff --git a/docs/schema/serializedparentaction-definitions-serializedcreatecategoryaction-properties-childid.md b/docs/schema/serializedparentaction-definitions-serializedcreatecategoryaction-properties-childid.md new file mode 100644 index 0000000..fe722b0 --- /dev/null +++ b/docs/schema/serializedparentaction-definitions-serializedcreatecategoryaction-properties-childid.md @@ -0,0 +1,16 @@ +# Untitled string in SerializedParentAction Schema + +```txt +https://timelimit.io/SerializedParentAction#/definitions/SerializedCreateCategoryAction/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 | [SerializedParentAction.schema.json\*](SerializedParentAction.schema.json "open original schema") | + +## childId Type + +`string` diff --git a/docs/schema/serializedparentaction-definitions-serializedcreatecategoryaction-properties-title.md b/docs/schema/serializedparentaction-definitions-serializedcreatecategoryaction-properties-title.md new file mode 100644 index 0000000..bbfce2e --- /dev/null +++ b/docs/schema/serializedparentaction-definitions-serializedcreatecategoryaction-properties-title.md @@ -0,0 +1,16 @@ +# Untitled string in SerializedParentAction Schema + +```txt +https://timelimit.io/SerializedParentAction#/definitions/SerializedCreateCategoryAction/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 | [SerializedParentAction.schema.json\*](SerializedParentAction.schema.json "open original schema") | + +## title Type + +`string` diff --git a/docs/schema/serializedparentaction-definitions-serializedcreatecategoryaction-properties-type.md b/docs/schema/serializedparentaction-definitions-serializedcreatecategoryaction-properties-type.md new file mode 100644 index 0000000..7485538 --- /dev/null +++ b/docs/schema/serializedparentaction-definitions-serializedcreatecategoryaction-properties-type.md @@ -0,0 +1,24 @@ +# Untitled string in SerializedParentAction Schema + +```txt +https://timelimit.io/SerializedParentAction#/definitions/SerializedCreateCategoryAction/properties/type +``` + + + + +| Abstract | Extensible | Status | Identifiable | Custom Properties | Additional Properties | Access Restrictions | Defined In | +| :------------------ | ---------- | -------------- | ----------------------- | :---------------- | --------------------- | ------------------- | ------------------------------------------------------------------------------------------------- | +| Can be instantiated | No | Unknown status | Unknown identifiability | Forbidden | Allowed | none | [SerializedParentAction.schema.json\*](SerializedParentAction.schema.json "open original schema") | + +## type Type + +`string` + +## type Constraints + +**enum**: the value of this property must be equal to one of the following values: + +| Value | Explanation | +| :------------------ | ----------- | +| `"CREATE_CATEGORY"` | | diff --git a/docs/schema/serializedparentaction-definitions-serializedcreatecategoryaction-properties.md b/docs/schema/serializedparentaction-definitions-serializedcreatecategoryaction-properties.md new file mode 100644 index 0000000..a53613b --- /dev/null +++ b/docs/schema/serializedparentaction-definitions-serializedcreatecategoryaction-properties.md @@ -0,0 +1,16 @@ +# \[object Object] Schema + +```txt +https://timelimit.io/SerializedParentAction#/definitions/SerializedCreateCategoryAction/properties +``` + + + + +| Abstract | Extensible | Status | Identifiable | Custom Properties | Additional Properties | Access Restrictions | Defined In | +| :------------------ | ---------- | -------------- | ----------------------- | :---------------- | --------------------- | ------------------- | ------------------------------------------------------------------------------------------------- | +| Can be instantiated | No | Unknown status | Unknown identifiability | Forbidden | Allowed | none | [SerializedParentAction.schema.json\*](SerializedParentAction.schema.json "open original schema") | + +## properties Type + +unknown diff --git a/docs/schema/serializedparentaction-definitions-serializedcreatecategoryaction.md b/docs/schema/serializedparentaction-definitions-serializedcreatecategoryaction.md new file mode 100644 index 0000000..435d469 --- /dev/null +++ b/docs/schema/serializedparentaction-definitions-serializedcreatecategoryaction.md @@ -0,0 +1,97 @@ +# SerializedCreateCategoryAction Schema + +```txt +https://timelimit.io/SerializedParentAction#/definitions/SerializedCreateCategoryAction +``` + + + + +| Abstract | Extensible | Status | Identifiable | Custom Properties | Additional Properties | Access Restrictions | Defined In | +| :------------------ | ---------- | -------------- | ------------ | :---------------- | --------------------- | ------------------- | ------------------------------------------------------------------------------------------------- | +| Can be instantiated | No | Unknown status | No | Forbidden | Forbidden | none | [SerializedParentAction.schema.json\*](SerializedParentAction.schema.json "open original schema") | + +## SerializedCreateCategoryAction Type + +`object` ([SerializedCreateCategoryAction](serializedparentaction-definitions-serializedcreatecategoryaction.md)) + +# SerializedCreateCategoryAction Properties + +| Property | Type | Required | Nullable | Defined by | +| :------------------------ | -------- | -------- | -------------- | :---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | +| [type](#type) | `string` | Required | cannot be null | [SerializedParentAction](serializedparentaction-definitions-serializedcreatecategoryaction-properties-type.md "https://timelimit.io/SerializedParentAction#/definitions/SerializedCreateCategoryAction/properties/type") | +| [childId](#childId) | `string` | Required | cannot be null | [SerializedParentAction](serializedparentaction-definitions-serializedcreatecategoryaction-properties-childid.md "https://timelimit.io/SerializedParentAction#/definitions/SerializedCreateCategoryAction/properties/childId") | +| [categoryId](#categoryId) | `string` | Required | cannot be null | [SerializedParentAction](serializedparentaction-definitions-serializedcreatecategoryaction-properties-categoryid.md "https://timelimit.io/SerializedParentAction#/definitions/SerializedCreateCategoryAction/properties/categoryId") | +| [title](#title) | `string` | Required | cannot be null | [SerializedParentAction](serializedparentaction-definitions-serializedcreatecategoryaction-properties-title.md "https://timelimit.io/SerializedParentAction#/definitions/SerializedCreateCategoryAction/properties/title") | + +## type + + + + +`type` + +- is required +- Type: `string` +- cannot be null +- defined in: [SerializedParentAction](serializedparentaction-definitions-serializedcreatecategoryaction-properties-type.md "https://timelimit.io/SerializedParentAction#/definitions/SerializedCreateCategoryAction/properties/type") + +### type Type + +`string` + +### type Constraints + +**enum**: the value of this property must be equal to one of the following values: + +| Value | Explanation | +| :------------------ | ----------- | +| `"CREATE_CATEGORY"` | | + +## childId + + + + +`childId` + +- is required +- Type: `string` +- cannot be null +- defined in: [SerializedParentAction](serializedparentaction-definitions-serializedcreatecategoryaction-properties-childid.md "https://timelimit.io/SerializedParentAction#/definitions/SerializedCreateCategoryAction/properties/childId") + +### childId Type + +`string` + +## categoryId + + + + +`categoryId` + +- is required +- Type: `string` +- cannot be null +- defined in: [SerializedParentAction](serializedparentaction-definitions-serializedcreatecategoryaction-properties-categoryid.md "https://timelimit.io/SerializedParentAction#/definitions/SerializedCreateCategoryAction/properties/categoryId") + +### categoryId Type + +`string` + +## title + + + + +`title` + +- is required +- Type: `string` +- cannot be null +- defined in: [SerializedParentAction](serializedparentaction-definitions-serializedcreatecategoryaction-properties-title.md "https://timelimit.io/SerializedParentAction#/definitions/SerializedCreateCategoryAction/properties/title") + +### title Type + +`string` diff --git a/docs/schema/serializedparentaction-definitions-serializedcreatetimelimtruleaction-properties-type.md b/docs/schema/serializedparentaction-definitions-serializedcreatetimelimtruleaction-properties-type.md new file mode 100644 index 0000000..f41914c --- /dev/null +++ b/docs/schema/serializedparentaction-definitions-serializedcreatetimelimtruleaction-properties-type.md @@ -0,0 +1,24 @@ +# Untitled string in SerializedParentAction Schema + +```txt +https://timelimit.io/SerializedParentAction#/definitions/SerializedCreateTimelimtRuleAction/properties/type +``` + + + + +| Abstract | Extensible | Status | Identifiable | Custom Properties | Additional Properties | Access Restrictions | Defined In | +| :------------------ | ---------- | -------------- | ----------------------- | :---------------- | --------------------- | ------------------- | ------------------------------------------------------------------------------------------------- | +| Can be instantiated | No | Unknown status | Unknown identifiability | Forbidden | Allowed | none | [SerializedParentAction.schema.json\*](SerializedParentAction.schema.json "open original schema") | + +## type Type + +`string` + +## type Constraints + +**enum**: the value of this property must be equal to one of the following values: + +| Value | Explanation | +| :------------------------ | ----------- | +| `"CREATE_TIMELIMIT_RULE"` | | diff --git a/docs/schema/serializedparentaction-definitions-serializedcreatetimelimtruleaction-properties.md b/docs/schema/serializedparentaction-definitions-serializedcreatetimelimtruleaction-properties.md new file mode 100644 index 0000000..9edcc7b --- /dev/null +++ b/docs/schema/serializedparentaction-definitions-serializedcreatetimelimtruleaction-properties.md @@ -0,0 +1,16 @@ +# Untitled undefined type in SerializedParentAction Schema + +```txt +https://timelimit.io/SerializedParentAction#/definitions/SerializedCreateTimelimtRuleAction/properties +``` + + + + +| Abstract | Extensible | Status | Identifiable | Custom Properties | Additional Properties | Access Restrictions | Defined In | +| :------------------ | ---------- | -------------- | ----------------------- | :---------------- | --------------------- | ------------------- | ------------------------------------------------------------------------------------------------- | +| Can be instantiated | No | Unknown status | Unknown identifiability | Forbidden | Allowed | none | [SerializedParentAction.schema.json\*](SerializedParentAction.schema.json "open original schema") | + +## properties Type + +unknown diff --git a/docs/schema/serializedparentaction-definitions-serializedcreatetimelimtruleaction.md b/docs/schema/serializedparentaction-definitions-serializedcreatetimelimtruleaction.md new file mode 100644 index 0000000..e5b5b7c --- /dev/null +++ b/docs/schema/serializedparentaction-definitions-serializedcreatetimelimtruleaction.md @@ -0,0 +1,63 @@ +# SerializedCreateTimelimtRuleAction Schema + +```txt +https://timelimit.io/SerializedParentAction#/definitions/SerializedCreateTimelimtRuleAction +``` + + + + +| Abstract | Extensible | Status | Identifiable | Custom Properties | Additional Properties | Access Restrictions | Defined In | +| :------------------ | ---------- | -------------- | ------------ | :---------------- | --------------------- | ------------------- | ------------------------------------------------------------------------------------------------- | +| Can be instantiated | No | Unknown status | No | Forbidden | Forbidden | none | [SerializedParentAction.schema.json\*](SerializedParentAction.schema.json "open original schema") | + +## SerializedCreateTimelimtRuleAction Type + +`object` ([SerializedCreateTimelimtRuleAction](serializedparentaction-definitions-serializedcreatetimelimtruleaction.md)) + +# SerializedCreateTimelimtRuleAction Properties + +| Property | Type | Required | Nullable | Defined by | +| :------------ | -------- | -------- | -------------- | :------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ | +| [type](#type) | `string` | Required | cannot be null | [SerializedParentAction](serializedparentaction-definitions-serializedcreatetimelimtruleaction-properties-type.md "https://timelimit.io/SerializedParentAction#/definitions/SerializedCreateTimelimtRuleAction/properties/type") | +| [rule](#rule) | `object` | Required | cannot be null | [SerializedParentAction](serializedparentaction-definitions-serializedtimelimitrule.md "https://timelimit.io/SerializedParentAction#/definitions/SerializedCreateTimelimtRuleAction/properties/rule") | + +## type + + + + +`type` + +- is required +- Type: `string` +- cannot be null +- defined in: [SerializedParentAction](serializedparentaction-definitions-serializedcreatetimelimtruleaction-properties-type.md "https://timelimit.io/SerializedParentAction#/definitions/SerializedCreateTimelimtRuleAction/properties/type") + +### type Type + +`string` + +### type Constraints + +**enum**: the value of this property must be equal to one of the following values: + +| Value | Explanation | +| :------------------------ | ----------- | +| `"CREATE_TIMELIMIT_RULE"` | | + +## rule + + + + +`rule` + +- is required +- Type: `object` ([SerializedTimeLimitRule](serializedparentaction-definitions-serializedtimelimitrule.md)) +- cannot be null +- defined in: [SerializedParentAction](serializedparentaction-definitions-serializedtimelimitrule.md "https://timelimit.io/SerializedParentAction#/definitions/SerializedCreateTimelimtRuleAction/properties/rule") + +### rule Type + +`object` ([SerializedTimeLimitRule](serializedparentaction-definitions-serializedtimelimitrule.md)) diff --git a/docs/schema/serializedparentaction-definitions-serializeddeletecategoryaction-properties-categoryid.md b/docs/schema/serializedparentaction-definitions-serializeddeletecategoryaction-properties-categoryid.md new file mode 100644 index 0000000..e11bb8d --- /dev/null +++ b/docs/schema/serializedparentaction-definitions-serializeddeletecategoryaction-properties-categoryid.md @@ -0,0 +1,16 @@ +# Untitled string in SerializedParentAction Schema + +```txt +https://timelimit.io/SerializedParentAction#/definitions/SerializedDeleteCategoryAction/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 | [SerializedParentAction.schema.json\*](SerializedParentAction.schema.json "open original schema") | + +## categoryId Type + +`string` diff --git a/docs/schema/serializedparentaction-definitions-serializeddeletecategoryaction-properties-type.md b/docs/schema/serializedparentaction-definitions-serializeddeletecategoryaction-properties-type.md new file mode 100644 index 0000000..34af938 --- /dev/null +++ b/docs/schema/serializedparentaction-definitions-serializeddeletecategoryaction-properties-type.md @@ -0,0 +1,24 @@ +# Untitled string in SerializedParentAction Schema + +```txt +https://timelimit.io/SerializedParentAction#/definitions/SerializedDeleteCategoryAction/properties/type +``` + + + + +| Abstract | Extensible | Status | Identifiable | Custom Properties | Additional Properties | Access Restrictions | Defined In | +| :------------------ | ---------- | -------------- | ----------------------- | :---------------- | --------------------- | ------------------- | ------------------------------------------------------------------------------------------------- | +| Can be instantiated | No | Unknown status | Unknown identifiability | Forbidden | Allowed | none | [SerializedParentAction.schema.json\*](SerializedParentAction.schema.json "open original schema") | + +## type Type + +`string` + +## type Constraints + +**enum**: the value of this property must be equal to one of the following values: + +| Value | Explanation | +| :------------------ | ----------- | +| `"DELETE_CATEGORY"` | | diff --git a/docs/schema/serializedparentaction-definitions-serializeddeletecategoryaction-properties.md b/docs/schema/serializedparentaction-definitions-serializeddeletecategoryaction-properties.md new file mode 100644 index 0000000..0b5579b --- /dev/null +++ b/docs/schema/serializedparentaction-definitions-serializeddeletecategoryaction-properties.md @@ -0,0 +1,16 @@ +# Untitled undefined type in SerializedParentAction Schema + +```txt +https://timelimit.io/SerializedParentAction#/definitions/SerializedDeleteCategoryAction/properties +``` + + + + +| Abstract | Extensible | Status | Identifiable | Custom Properties | Additional Properties | Access Restrictions | Defined In | +| :------------------ | ---------- | -------------- | ----------------------- | :---------------- | --------------------- | ------------------- | ------------------------------------------------------------------------------------------------- | +| Can be instantiated | No | Unknown status | Unknown identifiability | Forbidden | Allowed | none | [SerializedParentAction.schema.json\*](SerializedParentAction.schema.json "open original schema") | + +## properties Type + +unknown diff --git a/docs/schema/serializedparentaction-definitions-serializeddeletecategoryaction.md b/docs/schema/serializedparentaction-definitions-serializeddeletecategoryaction.md new file mode 100644 index 0000000..4668503 --- /dev/null +++ b/docs/schema/serializedparentaction-definitions-serializeddeletecategoryaction.md @@ -0,0 +1,63 @@ +# SerializedDeleteCategoryAction Schema + +```txt +https://timelimit.io/SerializedParentAction#/definitions/SerializedDeleteCategoryAction +``` + + + + +| Abstract | Extensible | Status | Identifiable | Custom Properties | Additional Properties | Access Restrictions | Defined In | +| :------------------ | ---------- | -------------- | ------------ | :---------------- | --------------------- | ------------------- | ------------------------------------------------------------------------------------------------- | +| Can be instantiated | No | Unknown status | No | Forbidden | Forbidden | none | [SerializedParentAction.schema.json\*](SerializedParentAction.schema.json "open original schema") | + +## SerializedDeleteCategoryAction Type + +`object` ([SerializedDeleteCategoryAction](serializedparentaction-definitions-serializeddeletecategoryaction.md)) + +# SerializedDeleteCategoryAction Properties + +| Property | Type | Required | Nullable | Defined by | +| :------------------------ | -------- | -------- | -------------- | :---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | +| [type](#type) | `string` | Required | cannot be null | [SerializedParentAction](serializedparentaction-definitions-serializeddeletecategoryaction-properties-type.md "https://timelimit.io/SerializedParentAction#/definitions/SerializedDeleteCategoryAction/properties/type") | +| [categoryId](#categoryId) | `string` | Required | cannot be null | [SerializedParentAction](serializedparentaction-definitions-serializeddeletecategoryaction-properties-categoryid.md "https://timelimit.io/SerializedParentAction#/definitions/SerializedDeleteCategoryAction/properties/categoryId") | + +## type + + + + +`type` + +- is required +- Type: `string` +- cannot be null +- defined in: [SerializedParentAction](serializedparentaction-definitions-serializeddeletecategoryaction-properties-type.md "https://timelimit.io/SerializedParentAction#/definitions/SerializedDeleteCategoryAction/properties/type") + +### type Type + +`string` + +### type Constraints + +**enum**: the value of this property must be equal to one of the following values: + +| Value | Explanation | +| :------------------ | ----------- | +| `"DELETE_CATEGORY"` | | + +## categoryId + + + + +`categoryId` + +- is required +- Type: `string` +- cannot be null +- defined in: [SerializedParentAction](serializedparentaction-definitions-serializeddeletecategoryaction-properties-categoryid.md "https://timelimit.io/SerializedParentAction#/definitions/SerializedDeleteCategoryAction/properties/categoryId") + +### categoryId Type + +`string` diff --git a/docs/schema/serializedparentaction-definitions-serializeddeletetimelimitruleaction-properties-ruleid.md b/docs/schema/serializedparentaction-definitions-serializeddeletetimelimitruleaction-properties-ruleid.md new file mode 100644 index 0000000..69989d8 --- /dev/null +++ b/docs/schema/serializedparentaction-definitions-serializeddeletetimelimitruleaction-properties-ruleid.md @@ -0,0 +1,16 @@ +# Untitled string in SerializedParentAction Schema + +```txt +https://timelimit.io/SerializedParentAction#/definitions/SerializedDeleteTimeLimitRuleAction/properties/ruleId +``` + + + + +| Abstract | Extensible | Status | Identifiable | Custom Properties | Additional Properties | Access Restrictions | Defined In | +| :------------------ | ---------- | -------------- | ----------------------- | :---------------- | --------------------- | ------------------- | ------------------------------------------------------------------------------------------------- | +| Can be instantiated | No | Unknown status | Unknown identifiability | Forbidden | Allowed | none | [SerializedParentAction.schema.json\*](SerializedParentAction.schema.json "open original schema") | + +## ruleId Type + +`string` diff --git a/docs/schema/serializedparentaction-definitions-serializeddeletetimelimitruleaction-properties-type.md b/docs/schema/serializedparentaction-definitions-serializeddeletetimelimitruleaction-properties-type.md new file mode 100644 index 0000000..9e6208a --- /dev/null +++ b/docs/schema/serializedparentaction-definitions-serializeddeletetimelimitruleaction-properties-type.md @@ -0,0 +1,24 @@ +# Untitled string in SerializedParentAction Schema + +```txt +https://timelimit.io/SerializedParentAction#/definitions/SerializedDeleteTimeLimitRuleAction/properties/type +``` + + + + +| Abstract | Extensible | Status | Identifiable | Custom Properties | Additional Properties | Access Restrictions | Defined In | +| :------------------ | ---------- | -------------- | ----------------------- | :---------------- | --------------------- | ------------------- | ------------------------------------------------------------------------------------------------- | +| Can be instantiated | No | Unknown status | Unknown identifiability | Forbidden | Allowed | none | [SerializedParentAction.schema.json\*](SerializedParentAction.schema.json "open original schema") | + +## type Type + +`string` + +## type Constraints + +**enum**: the value of this property must be equal to one of the following values: + +| Value | Explanation | +| :------------------------ | ----------- | +| `"DELETE_TIMELIMIT_RULE"` | | diff --git a/docs/schema/serializedparentaction-definitions-serializeddeletetimelimitruleaction-properties.md b/docs/schema/serializedparentaction-definitions-serializeddeletetimelimitruleaction-properties.md new file mode 100644 index 0000000..40be240 --- /dev/null +++ b/docs/schema/serializedparentaction-definitions-serializeddeletetimelimitruleaction-properties.md @@ -0,0 +1,16 @@ +# Untitled undefined type in SerializedParentAction Schema + +```txt +https://timelimit.io/SerializedParentAction#/definitions/SerializedDeleteTimeLimitRuleAction/properties +``` + + + + +| Abstract | Extensible | Status | Identifiable | Custom Properties | Additional Properties | Access Restrictions | Defined In | +| :------------------ | ---------- | -------------- | ----------------------- | :---------------- | --------------------- | ------------------- | ------------------------------------------------------------------------------------------------- | +| Can be instantiated | No | Unknown status | Unknown identifiability | Forbidden | Allowed | none | [SerializedParentAction.schema.json\*](SerializedParentAction.schema.json "open original schema") | + +## properties Type + +unknown diff --git a/docs/schema/serializedparentaction-definitions-serializeddeletetimelimitruleaction.md b/docs/schema/serializedparentaction-definitions-serializeddeletetimelimitruleaction.md new file mode 100644 index 0000000..373b846 --- /dev/null +++ b/docs/schema/serializedparentaction-definitions-serializeddeletetimelimitruleaction.md @@ -0,0 +1,63 @@ +# SerializedDeleteTimeLimitRuleAction Schema + +```txt +https://timelimit.io/SerializedParentAction#/definitions/SerializedDeleteTimeLimitRuleAction +``` + + + + +| Abstract | Extensible | Status | Identifiable | Custom Properties | Additional Properties | Access Restrictions | Defined In | +| :------------------ | ---------- | -------------- | ------------ | :---------------- | --------------------- | ------------------- | ------------------------------------------------------------------------------------------------- | +| Can be instantiated | No | Unknown status | No | Forbidden | Forbidden | none | [SerializedParentAction.schema.json\*](SerializedParentAction.schema.json "open original schema") | + +## SerializedDeleteTimeLimitRuleAction Type + +`object` ([SerializedDeleteTimeLimitRuleAction](serializedparentaction-definitions-serializeddeletetimelimitruleaction.md)) + +# SerializedDeleteTimeLimitRuleAction Properties + +| Property | Type | Required | Nullable | Defined by | +| :---------------- | -------- | -------- | -------------- | :------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ | +| [type](#type) | `string` | Required | cannot be null | [SerializedParentAction](serializedparentaction-definitions-serializeddeletetimelimitruleaction-properties-type.md "https://timelimit.io/SerializedParentAction#/definitions/SerializedDeleteTimeLimitRuleAction/properties/type") | +| [ruleId](#ruleId) | `string` | Required | cannot be null | [SerializedParentAction](serializedparentaction-definitions-serializeddeletetimelimitruleaction-properties-ruleid.md "https://timelimit.io/SerializedParentAction#/definitions/SerializedDeleteTimeLimitRuleAction/properties/ruleId") | + +## type + + + + +`type` + +- is required +- Type: `string` +- cannot be null +- defined in: [SerializedParentAction](serializedparentaction-definitions-serializeddeletetimelimitruleaction-properties-type.md "https://timelimit.io/SerializedParentAction#/definitions/SerializedDeleteTimeLimitRuleAction/properties/type") + +### type Type + +`string` + +### type Constraints + +**enum**: the value of this property must be equal to one of the following values: + +| Value | Explanation | +| :------------------------ | ----------- | +| `"DELETE_TIMELIMIT_RULE"` | | + +## ruleId + + + + +`ruleId` + +- is required +- Type: `string` +- cannot be null +- defined in: [SerializedParentAction](serializedparentaction-definitions-serializeddeletetimelimitruleaction-properties-ruleid.md "https://timelimit.io/SerializedParentAction#/definitions/SerializedDeleteTimeLimitRuleAction/properties/ruleId") + +### ruleId Type + +`string` diff --git a/docs/schema/serializedparentaction-definitions-serializedignoremanipulationaction-properties-accessibilityservice.md b/docs/schema/serializedparentaction-definitions-serializedignoremanipulationaction-properties-accessibilityservice.md new file mode 100644 index 0000000..dbe15f2 --- /dev/null +++ b/docs/schema/serializedparentaction-definitions-serializedignoremanipulationaction-properties-accessibilityservice.md @@ -0,0 +1,16 @@ +# Untitled boolean in SerializedParentAction Schema + +```txt +https://timelimit.io/SerializedParentAction#/definitions/SerializedIgnoreManipulationAction/properties/accessibilityService +``` + + + + +| Abstract | Extensible | Status | Identifiable | Custom Properties | Additional Properties | Access Restrictions | Defined In | +| :------------------ | ---------- | -------------- | ----------------------- | :---------------- | --------------------- | ------------------- | ------------------------------------------------------------------------------------------------- | +| Can be instantiated | No | Unknown status | Unknown identifiability | Forbidden | Allowed | none | [SerializedParentAction.schema.json\*](SerializedParentAction.schema.json "open original schema") | + +## accessibilityService Type + +`boolean` diff --git a/docs/schema/serializedparentaction-definitions-serializedignoremanipulationaction-properties-admin.md b/docs/schema/serializedparentaction-definitions-serializedignoremanipulationaction-properties-admin.md new file mode 100644 index 0000000..64bcdcb --- /dev/null +++ b/docs/schema/serializedparentaction-definitions-serializedignoremanipulationaction-properties-admin.md @@ -0,0 +1,16 @@ +# Untitled boolean in SerializedParentAction Schema + +```txt +https://timelimit.io/SerializedParentAction#/definitions/SerializedIgnoreManipulationAction/properties/admin +``` + + + + +| Abstract | Extensible | Status | Identifiable | Custom Properties | Additional Properties | Access Restrictions | Defined In | +| :------------------ | ---------- | -------------- | ----------------------- | :---------------- | --------------------- | ------------------- | ------------------------------------------------------------------------------------------------- | +| Can be instantiated | No | Unknown status | Unknown identifiability | Forbidden | Allowed | none | [SerializedParentAction.schema.json\*](SerializedParentAction.schema.json "open original schema") | + +## admin Type + +`boolean` diff --git a/docs/schema/serializedparentaction-definitions-serializedignoremanipulationaction-properties-admina.md b/docs/schema/serializedparentaction-definitions-serializedignoremanipulationaction-properties-admina.md new file mode 100644 index 0000000..eefc01e --- /dev/null +++ b/docs/schema/serializedparentaction-definitions-serializedignoremanipulationaction-properties-admina.md @@ -0,0 +1,16 @@ +# Untitled boolean in SerializedParentAction Schema + +```txt +https://timelimit.io/SerializedParentAction#/definitions/SerializedIgnoreManipulationAction/properties/adminA +``` + + + + +| Abstract | Extensible | Status | Identifiable | Custom Properties | Additional Properties | Access Restrictions | Defined In | +| :------------------ | ---------- | -------------- | ----------------------- | :---------------- | --------------------- | ------------------- | ------------------------------------------------------------------------------------------------- | +| Can be instantiated | No | Unknown status | Unknown identifiability | Forbidden | Allowed | none | [SerializedParentAction.schema.json\*](SerializedParentAction.schema.json "open original schema") | + +## adminA Type + +`boolean` diff --git a/docs/schema/serializedparentaction-definitions-serializedignoremanipulationaction-properties-deviceid.md b/docs/schema/serializedparentaction-definitions-serializedignoremanipulationaction-properties-deviceid.md new file mode 100644 index 0000000..ca8b3db --- /dev/null +++ b/docs/schema/serializedparentaction-definitions-serializedignoremanipulationaction-properties-deviceid.md @@ -0,0 +1,16 @@ +# Untitled string in SerializedParentAction Schema + +```txt +https://timelimit.io/SerializedParentAction#/definitions/SerializedIgnoreManipulationAction/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 | [SerializedParentAction.schema.json\*](SerializedParentAction.schema.json "open original schema") | + +## deviceId Type + +`string` diff --git a/docs/schema/serializedparentaction-definitions-serializedignoremanipulationaction-properties-downgrade.md b/docs/schema/serializedparentaction-definitions-serializedignoremanipulationaction-properties-downgrade.md new file mode 100644 index 0000000..939bd2c --- /dev/null +++ b/docs/schema/serializedparentaction-definitions-serializedignoremanipulationaction-properties-downgrade.md @@ -0,0 +1,16 @@ +# Untitled boolean in SerializedParentAction Schema + +```txt +https://timelimit.io/SerializedParentAction#/definitions/SerializedIgnoreManipulationAction/properties/downgrade +``` + + + + +| Abstract | Extensible | Status | Identifiable | Custom Properties | Additional Properties | Access Restrictions | Defined In | +| :------------------ | ---------- | -------------- | ----------------------- | :---------------- | --------------------- | ------------------- | ------------------------------------------------------------------------------------------------- | +| Can be instantiated | No | Unknown status | Unknown identifiability | Forbidden | Allowed | none | [SerializedParentAction.schema.json\*](SerializedParentAction.schema.json "open original schema") | + +## downgrade Type + +`boolean` diff --git a/docs/schema/serializedparentaction-definitions-serializedignoremanipulationaction-properties-hadmanipulation.md b/docs/schema/serializedparentaction-definitions-serializedignoremanipulationaction-properties-hadmanipulation.md new file mode 100644 index 0000000..e78ec66 --- /dev/null +++ b/docs/schema/serializedparentaction-definitions-serializedignoremanipulationaction-properties-hadmanipulation.md @@ -0,0 +1,16 @@ +# Untitled boolean in SerializedParentAction Schema + +```txt +https://timelimit.io/SerializedParentAction#/definitions/SerializedIgnoreManipulationAction/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 | [SerializedParentAction.schema.json\*](SerializedParentAction.schema.json "open original schema") | + +## hadManipulation Type + +`boolean` diff --git a/docs/schema/serializedparentaction-definitions-serializedignoremanipulationaction-properties-ignorehadmanipulationflags.md b/docs/schema/serializedparentaction-definitions-serializedignoremanipulationaction-properties-ignorehadmanipulationflags.md new file mode 100644 index 0000000..0b74a4c --- /dev/null +++ b/docs/schema/serializedparentaction-definitions-serializedignoremanipulationaction-properties-ignorehadmanipulationflags.md @@ -0,0 +1,16 @@ +# Untitled number in SerializedParentAction Schema + +```txt +https://timelimit.io/SerializedParentAction#/definitions/SerializedIgnoreManipulationAction/properties/ignoreHadManipulationFlags +``` + + + + +| Abstract | Extensible | Status | Identifiable | Custom Properties | Additional Properties | Access Restrictions | Defined In | +| :------------------ | ---------- | -------------- | ----------------------- | :---------------- | --------------------- | ------------------- | ------------------------------------------------------------------------------------------------- | +| Can be instantiated | No | Unknown status | Unknown identifiability | Forbidden | Allowed | none | [SerializedParentAction.schema.json\*](SerializedParentAction.schema.json "open original schema") | + +## ignoreHadManipulationFlags Type + +`number` diff --git a/docs/schema/serializedparentaction-definitions-serializedignoremanipulationaction-properties-notification.md b/docs/schema/serializedparentaction-definitions-serializedignoremanipulationaction-properties-notification.md new file mode 100644 index 0000000..07e1084 --- /dev/null +++ b/docs/schema/serializedparentaction-definitions-serializedignoremanipulationaction-properties-notification.md @@ -0,0 +1,16 @@ +# Untitled boolean in SerializedParentAction Schema + +```txt +https://timelimit.io/SerializedParentAction#/definitions/SerializedIgnoreManipulationAction/properties/notification +``` + + + + +| Abstract | Extensible | Status | Identifiable | Custom Properties | Additional Properties | Access Restrictions | Defined In | +| :------------------ | ---------- | -------------- | ----------------------- | :---------------- | --------------------- | ------------------- | ------------------------------------------------------------------------------------------------- | +| Can be instantiated | No | Unknown status | Unknown identifiability | Forbidden | Allowed | none | [SerializedParentAction.schema.json\*](SerializedParentAction.schema.json "open original schema") | + +## notification Type + +`boolean` diff --git a/docs/schema/serializedparentaction-definitions-serializedignoremanipulationaction-properties-overlay.md b/docs/schema/serializedparentaction-definitions-serializedignoremanipulationaction-properties-overlay.md new file mode 100644 index 0000000..fc1b848 --- /dev/null +++ b/docs/schema/serializedparentaction-definitions-serializedignoremanipulationaction-properties-overlay.md @@ -0,0 +1,16 @@ +# Untitled boolean in SerializedParentAction Schema + +```txt +https://timelimit.io/SerializedParentAction#/definitions/SerializedIgnoreManipulationAction/properties/overlay +``` + + + + +| Abstract | Extensible | Status | Identifiable | Custom Properties | Additional Properties | Access Restrictions | Defined In | +| :------------------ | ---------- | -------------- | ----------------------- | :---------------- | --------------------- | ------------------- | ------------------------------------------------------------------------------------------------- | +| Can be instantiated | No | Unknown status | Unknown identifiability | Forbidden | Allowed | none | [SerializedParentAction.schema.json\*](SerializedParentAction.schema.json "open original schema") | + +## overlay Type + +`boolean` diff --git a/docs/schema/serializedparentaction-definitions-serializedignoremanipulationaction-properties-reboot.md b/docs/schema/serializedparentaction-definitions-serializedignoremanipulationaction-properties-reboot.md new file mode 100644 index 0000000..9c84b83 --- /dev/null +++ b/docs/schema/serializedparentaction-definitions-serializedignoremanipulationaction-properties-reboot.md @@ -0,0 +1,16 @@ +# Untitled boolean in SerializedParentAction Schema + +```txt +https://timelimit.io/SerializedParentAction#/definitions/SerializedIgnoreManipulationAction/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 | [SerializedParentAction.schema.json\*](SerializedParentAction.schema.json "open original schema") | + +## reboot Type + +`boolean` diff --git a/docs/schema/serializedparentaction-definitions-serializedignoremanipulationaction-properties-type.md b/docs/schema/serializedparentaction-definitions-serializedignoremanipulationaction-properties-type.md new file mode 100644 index 0000000..ce58196 --- /dev/null +++ b/docs/schema/serializedparentaction-definitions-serializedignoremanipulationaction-properties-type.md @@ -0,0 +1,24 @@ +# Untitled string in SerializedParentAction Schema + +```txt +https://timelimit.io/SerializedParentAction#/definitions/SerializedIgnoreManipulationAction/properties/type +``` + + + + +| Abstract | Extensible | Status | Identifiable | Custom Properties | Additional Properties | Access Restrictions | Defined In | +| :------------------ | ---------- | -------------- | ----------------------- | :---------------- | --------------------- | ------------------- | ------------------------------------------------------------------------------------------------- | +| Can be instantiated | No | Unknown status | Unknown identifiability | Forbidden | Allowed | none | [SerializedParentAction.schema.json\*](SerializedParentAction.schema.json "open original schema") | + +## type Type + +`string` + +## type Constraints + +**enum**: the value of this property must be equal to one of the following values: + +| Value | Explanation | +| :---------------------- | ----------- | +| `"IGNORE_MANIPULATION"` | | diff --git a/docs/schema/serializedparentaction-definitions-serializedignoremanipulationaction-properties-usagestats.md b/docs/schema/serializedparentaction-definitions-serializedignoremanipulationaction-properties-usagestats.md new file mode 100644 index 0000000..8d6e9a0 --- /dev/null +++ b/docs/schema/serializedparentaction-definitions-serializedignoremanipulationaction-properties-usagestats.md @@ -0,0 +1,16 @@ +# Untitled boolean in SerializedParentAction Schema + +```txt +https://timelimit.io/SerializedParentAction#/definitions/SerializedIgnoreManipulationAction/properties/usageStats +``` + + + + +| Abstract | Extensible | Status | Identifiable | Custom Properties | Additional Properties | Access Restrictions | Defined In | +| :------------------ | ---------- | -------------- | ----------------------- | :---------------- | --------------------- | ------------------- | ------------------------------------------------------------------------------------------------- | +| Can be instantiated | No | Unknown status | Unknown identifiability | Forbidden | Allowed | none | [SerializedParentAction.schema.json\*](SerializedParentAction.schema.json "open original schema") | + +## usageStats Type + +`boolean` diff --git a/docs/schema/serializedparentaction-definitions-serializedignoremanipulationaction-properties.md b/docs/schema/serializedparentaction-definitions-serializedignoremanipulationaction-properties.md new file mode 100644 index 0000000..4d029e8 --- /dev/null +++ b/docs/schema/serializedparentaction-definitions-serializedignoremanipulationaction-properties.md @@ -0,0 +1,16 @@ +# Untitled undefined type in SerializedParentAction Schema + +```txt +https://timelimit.io/SerializedParentAction#/definitions/SerializedIgnoreManipulationAction/properties +``` + + + + +| Abstract | Extensible | Status | Identifiable | Custom Properties | Additional Properties | Access Restrictions | Defined In | +| :------------------ | ---------- | -------------- | ----------------------- | :---------------- | --------------------- | ------------------- | ------------------------------------------------------------------------------------------------- | +| Can be instantiated | No | Unknown status | Unknown identifiability | Forbidden | Allowed | none | [SerializedParentAction.schema.json\*](SerializedParentAction.schema.json "open original schema") | + +## properties Type + +unknown diff --git a/docs/schema/serializedparentaction-definitions-serializedignoremanipulationaction.md b/docs/schema/serializedparentaction-definitions-serializedignoremanipulationaction.md new file mode 100644 index 0000000..7f746ee --- /dev/null +++ b/docs/schema/serializedparentaction-definitions-serializedignoremanipulationaction.md @@ -0,0 +1,233 @@ +# SerializedIgnoreManipulationAction Schema + +```txt +https://timelimit.io/SerializedParentAction#/definitions/SerializedIgnoreManipulationAction +``` + + + + +| Abstract | Extensible | Status | Identifiable | Custom Properties | Additional Properties | Access Restrictions | Defined In | +| :------------------ | ---------- | -------------- | ------------ | :---------------- | --------------------- | ------------------- | ------------------------------------------------------------------------------------------------- | +| Can be instantiated | No | Unknown status | No | Forbidden | Forbidden | none | [SerializedParentAction.schema.json\*](SerializedParentAction.schema.json "open original schema") | + +## SerializedIgnoreManipulationAction Type + +`object` ([SerializedIgnoreManipulationAction](serializedparentaction-definitions-serializedignoremanipulationaction.md)) + +# SerializedIgnoreManipulationAction Properties + +| Property | Type | Required | Nullable | Defined by | +| :-------------------------------------------------------- | --------- | -------- | -------------- | :-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | +| [type](#type) | `string` | Required | cannot be null | [SerializedParentAction](serializedparentaction-definitions-serializedignoremanipulationaction-properties-type.md "https://timelimit.io/SerializedParentAction#/definitions/SerializedIgnoreManipulationAction/properties/type") | +| [deviceId](#deviceId) | `string` | Required | cannot be null | [SerializedParentAction](serializedparentaction-definitions-serializedignoremanipulationaction-properties-deviceid.md "https://timelimit.io/SerializedParentAction#/definitions/SerializedIgnoreManipulationAction/properties/deviceId") | +| [admin](#admin) | `boolean` | Required | cannot be null | [SerializedParentAction](serializedparentaction-definitions-serializedignoremanipulationaction-properties-admin.md "https://timelimit.io/SerializedParentAction#/definitions/SerializedIgnoreManipulationAction/properties/admin") | +| [adminA](#adminA) | `boolean` | Required | cannot be null | [SerializedParentAction](serializedparentaction-definitions-serializedignoremanipulationaction-properties-admina.md "https://timelimit.io/SerializedParentAction#/definitions/SerializedIgnoreManipulationAction/properties/adminA") | +| [downgrade](#downgrade) | `boolean` | Required | cannot be null | [SerializedParentAction](serializedparentaction-definitions-serializedignoremanipulationaction-properties-downgrade.md "https://timelimit.io/SerializedParentAction#/definitions/SerializedIgnoreManipulationAction/properties/downgrade") | +| [notification](#notification) | `boolean` | Required | cannot be null | [SerializedParentAction](serializedparentaction-definitions-serializedignoremanipulationaction-properties-notification.md "https://timelimit.io/SerializedParentAction#/definitions/SerializedIgnoreManipulationAction/properties/notification") | +| [usageStats](#usageStats) | `boolean` | Required | cannot be null | [SerializedParentAction](serializedparentaction-definitions-serializedignoremanipulationaction-properties-usagestats.md "https://timelimit.io/SerializedParentAction#/definitions/SerializedIgnoreManipulationAction/properties/usageStats") | +| [hadManipulation](#hadManipulation) | `boolean` | Required | cannot be null | [SerializedParentAction](serializedparentaction-definitions-serializedignoremanipulationaction-properties-hadmanipulation.md "https://timelimit.io/SerializedParentAction#/definitions/SerializedIgnoreManipulationAction/properties/hadManipulation") | +| [reboot](#reboot) | `boolean` | Optional | cannot be null | [SerializedParentAction](serializedparentaction-definitions-serializedignoremanipulationaction-properties-reboot.md "https://timelimit.io/SerializedParentAction#/definitions/SerializedIgnoreManipulationAction/properties/reboot") | +| [overlay](#overlay) | `boolean` | Optional | cannot be null | [SerializedParentAction](serializedparentaction-definitions-serializedignoremanipulationaction-properties-overlay.md "https://timelimit.io/SerializedParentAction#/definitions/SerializedIgnoreManipulationAction/properties/overlay") | +| [accessibilityService](#accessibilityService) | `boolean` | Optional | cannot be null | [SerializedParentAction](serializedparentaction-definitions-serializedignoremanipulationaction-properties-accessibilityservice.md "https://timelimit.io/SerializedParentAction#/definitions/SerializedIgnoreManipulationAction/properties/accessibilityService") | +| [ignoreHadManipulationFlags](#ignoreHadManipulationFlags) | `number` | Optional | cannot be null | [SerializedParentAction](serializedparentaction-definitions-serializedignoremanipulationaction-properties-ignorehadmanipulationflags.md "https://timelimit.io/SerializedParentAction#/definitions/SerializedIgnoreManipulationAction/properties/ignoreHadManipulationFlags") | + +## type + + + + +`type` + +- is required +- Type: `string` +- cannot be null +- defined in: [SerializedParentAction](serializedparentaction-definitions-serializedignoremanipulationaction-properties-type.md "https://timelimit.io/SerializedParentAction#/definitions/SerializedIgnoreManipulationAction/properties/type") + +### type Type + +`string` + +### type Constraints + +**enum**: the value of this property must be equal to one of the following values: + +| Value | Explanation | +| :---------------------- | ----------- | +| `"IGNORE_MANIPULATION"` | | + +## deviceId + + + + +`deviceId` + +- is required +- Type: `string` +- cannot be null +- defined in: [SerializedParentAction](serializedparentaction-definitions-serializedignoremanipulationaction-properties-deviceid.md "https://timelimit.io/SerializedParentAction#/definitions/SerializedIgnoreManipulationAction/properties/deviceId") + +### deviceId Type + +`string` + +## admin + + + + +`admin` + +- is required +- Type: `boolean` +- cannot be null +- defined in: [SerializedParentAction](serializedparentaction-definitions-serializedignoremanipulationaction-properties-admin.md "https://timelimit.io/SerializedParentAction#/definitions/SerializedIgnoreManipulationAction/properties/admin") + +### admin Type + +`boolean` + +## adminA + + + + +`adminA` + +- is required +- Type: `boolean` +- cannot be null +- defined in: [SerializedParentAction](serializedparentaction-definitions-serializedignoremanipulationaction-properties-admina.md "https://timelimit.io/SerializedParentAction#/definitions/SerializedIgnoreManipulationAction/properties/adminA") + +### adminA Type + +`boolean` + +## downgrade + + + + +`downgrade` + +- is required +- Type: `boolean` +- cannot be null +- defined in: [SerializedParentAction](serializedparentaction-definitions-serializedignoremanipulationaction-properties-downgrade.md "https://timelimit.io/SerializedParentAction#/definitions/SerializedIgnoreManipulationAction/properties/downgrade") + +### downgrade Type + +`boolean` + +## notification + + + + +`notification` + +- is required +- Type: `boolean` +- cannot be null +- defined in: [SerializedParentAction](serializedparentaction-definitions-serializedignoremanipulationaction-properties-notification.md "https://timelimit.io/SerializedParentAction#/definitions/SerializedIgnoreManipulationAction/properties/notification") + +### notification Type + +`boolean` + +## usageStats + + + + +`usageStats` + +- is required +- Type: `boolean` +- cannot be null +- defined in: [SerializedParentAction](serializedparentaction-definitions-serializedignoremanipulationaction-properties-usagestats.md "https://timelimit.io/SerializedParentAction#/definitions/SerializedIgnoreManipulationAction/properties/usageStats") + +### usageStats Type + +`boolean` + +## hadManipulation + + + + +`hadManipulation` + +- is required +- Type: `boolean` +- cannot be null +- defined in: [SerializedParentAction](serializedparentaction-definitions-serializedignoremanipulationaction-properties-hadmanipulation.md "https://timelimit.io/SerializedParentAction#/definitions/SerializedIgnoreManipulationAction/properties/hadManipulation") + +### hadManipulation Type + +`boolean` + +## reboot + + + + +`reboot` + +- is optional +- Type: `boolean` +- cannot be null +- defined in: [SerializedParentAction](serializedparentaction-definitions-serializedignoremanipulationaction-properties-reboot.md "https://timelimit.io/SerializedParentAction#/definitions/SerializedIgnoreManipulationAction/properties/reboot") + +### reboot Type + +`boolean` + +## overlay + + + + +`overlay` + +- is optional +- Type: `boolean` +- cannot be null +- defined in: [SerializedParentAction](serializedparentaction-definitions-serializedignoremanipulationaction-properties-overlay.md "https://timelimit.io/SerializedParentAction#/definitions/SerializedIgnoreManipulationAction/properties/overlay") + +### overlay Type + +`boolean` + +## accessibilityService + + + + +`accessibilityService` + +- is optional +- Type: `boolean` +- cannot be null +- defined in: [SerializedParentAction](serializedparentaction-definitions-serializedignoremanipulationaction-properties-accessibilityservice.md "https://timelimit.io/SerializedParentAction#/definitions/SerializedIgnoreManipulationAction/properties/accessibilityService") + +### accessibilityService Type + +`boolean` + +## ignoreHadManipulationFlags + + + + +`ignoreHadManipulationFlags` + +- is optional +- Type: `number` +- cannot be null +- defined in: [SerializedParentAction](serializedparentaction-definitions-serializedignoremanipulationaction-properties-ignorehadmanipulationflags.md "https://timelimit.io/SerializedParentAction#/definitions/SerializedIgnoreManipulationAction/properties/ignoreHadManipulationFlags") + +### ignoreHadManipulationFlags Type + +`number` diff --git a/docs/schema/serializedparentaction-definitions-serializedincrementcategoryextratimeaction-properties-addedextratime.md b/docs/schema/serializedparentaction-definitions-serializedincrementcategoryextratimeaction-properties-addedextratime.md new file mode 100644 index 0000000..9930b3b --- /dev/null +++ b/docs/schema/serializedparentaction-definitions-serializedincrementcategoryextratimeaction-properties-addedextratime.md @@ -0,0 +1,16 @@ +# Untitled number in SerializedParentAction Schema + +```txt +https://timelimit.io/SerializedParentAction#/definitions/SerializedIncrementCategoryExtraTimeAction/properties/addedExtraTime +``` + + + + +| Abstract | Extensible | Status | Identifiable | Custom Properties | Additional Properties | Access Restrictions | Defined In | +| :------------------ | ---------- | -------------- | ----------------------- | :---------------- | --------------------- | ------------------- | ------------------------------------------------------------------------------------------------- | +| Can be instantiated | No | Unknown status | Unknown identifiability | Forbidden | Allowed | none | [SerializedParentAction.schema.json\*](SerializedParentAction.schema.json "open original schema") | + +## addedExtraTime Type + +`number` diff --git a/docs/schema/serializedparentaction-definitions-serializedincrementcategoryextratimeaction-properties-categoryid.md b/docs/schema/serializedparentaction-definitions-serializedincrementcategoryextratimeaction-properties-categoryid.md new file mode 100644 index 0000000..9f05c6f --- /dev/null +++ b/docs/schema/serializedparentaction-definitions-serializedincrementcategoryextratimeaction-properties-categoryid.md @@ -0,0 +1,16 @@ +# Untitled string in SerializedParentAction Schema + +```txt +https://timelimit.io/SerializedParentAction#/definitions/SerializedIncrementCategoryExtraTimeAction/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 | [SerializedParentAction.schema.json\*](SerializedParentAction.schema.json "open original schema") | + +## categoryId Type + +`string` diff --git a/docs/schema/serializedparentaction-definitions-serializedincrementcategoryextratimeaction-properties-day.md b/docs/schema/serializedparentaction-definitions-serializedincrementcategoryextratimeaction-properties-day.md new file mode 100644 index 0000000..6cfd59c --- /dev/null +++ b/docs/schema/serializedparentaction-definitions-serializedincrementcategoryextratimeaction-properties-day.md @@ -0,0 +1,16 @@ +# Untitled number in SerializedParentAction Schema + +```txt +https://timelimit.io/SerializedParentAction#/definitions/SerializedIncrementCategoryExtraTimeAction/properties/day +``` + + + + +| Abstract | Extensible | Status | Identifiable | Custom Properties | Additional Properties | Access Restrictions | Defined In | +| :------------------ | ---------- | -------------- | ----------------------- | :---------------- | --------------------- | ------------------- | ------------------------------------------------------------------------------------------------- | +| Can be instantiated | No | Unknown status | Unknown identifiability | Forbidden | Allowed | none | [SerializedParentAction.schema.json\*](SerializedParentAction.schema.json "open original schema") | + +## day Type + +`number` diff --git a/docs/schema/serializedparentaction-definitions-serializedincrementcategoryextratimeaction-properties-type.md b/docs/schema/serializedparentaction-definitions-serializedincrementcategoryextratimeaction-properties-type.md new file mode 100644 index 0000000..d636bae --- /dev/null +++ b/docs/schema/serializedparentaction-definitions-serializedincrementcategoryextratimeaction-properties-type.md @@ -0,0 +1,24 @@ +# Untitled string in SerializedParentAction Schema + +```txt +https://timelimit.io/SerializedParentAction#/definitions/SerializedIncrementCategoryExtraTimeAction/properties/type +``` + + + + +| Abstract | Extensible | Status | Identifiable | Custom Properties | Additional Properties | Access Restrictions | Defined In | +| :------------------ | ---------- | -------------- | ----------------------- | :---------------- | --------------------- | ------------------- | ------------------------------------------------------------------------------------------------- | +| Can be instantiated | No | Unknown status | Unknown identifiability | Forbidden | Allowed | none | [SerializedParentAction.schema.json\*](SerializedParentAction.schema.json "open original schema") | + +## type Type + +`string` + +## type Constraints + +**enum**: the value of this property must be equal to one of the following values: + +| Value | Explanation | +| :------------------------------- | ----------- | +| `"INCREMENT_CATEGORY_EXTRATIME"` | | diff --git a/docs/schema/serializedparentaction-definitions-serializedincrementcategoryextratimeaction-properties.md b/docs/schema/serializedparentaction-definitions-serializedincrementcategoryextratimeaction-properties.md new file mode 100644 index 0000000..971b3e4 --- /dev/null +++ b/docs/schema/serializedparentaction-definitions-serializedincrementcategoryextratimeaction-properties.md @@ -0,0 +1,16 @@ +# Untitled undefined type in SerializedParentAction Schema + +```txt +https://timelimit.io/SerializedParentAction#/definitions/SerializedIncrementCategoryExtraTimeAction/properties +``` + + + + +| Abstract | Extensible | Status | Identifiable | Custom Properties | Additional Properties | Access Restrictions | Defined In | +| :------------------ | ---------- | -------------- | ----------------------- | :---------------- | --------------------- | ------------------- | ------------------------------------------------------------------------------------------------- | +| Can be instantiated | No | Unknown status | Unknown identifiability | Forbidden | Allowed | none | [SerializedParentAction.schema.json\*](SerializedParentAction.schema.json "open original schema") | + +## properties Type + +unknown diff --git a/docs/schema/serializedparentaction-definitions-serializedincrementcategoryextratimeaction.md b/docs/schema/serializedparentaction-definitions-serializedincrementcategoryextratimeaction.md new file mode 100644 index 0000000..27e794f --- /dev/null +++ b/docs/schema/serializedparentaction-definitions-serializedincrementcategoryextratimeaction.md @@ -0,0 +1,97 @@ +# SerializedIncrementCategoryExtraTimeAction Schema + +```txt +https://timelimit.io/SerializedParentAction#/definitions/SerializedIncrementCategoryExtraTimeAction +``` + + + + +| Abstract | Extensible | Status | Identifiable | Custom Properties | Additional Properties | Access Restrictions | Defined In | +| :------------------ | ---------- | -------------- | ------------ | :---------------- | --------------------- | ------------------- | ------------------------------------------------------------------------------------------------- | +| Can be instantiated | No | Unknown status | No | Forbidden | Forbidden | none | [SerializedParentAction.schema.json\*](SerializedParentAction.schema.json "open original schema") | + +## SerializedIncrementCategoryExtraTimeAction Type + +`object` ([SerializedIncrementCategoryExtraTimeAction](serializedparentaction-definitions-serializedincrementcategoryextratimeaction.md)) + +# SerializedIncrementCategoryExtraTimeAction Properties + +| Property | Type | Required | Nullable | Defined by | +| :-------------------------------- | -------- | -------- | -------------- | :------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ | +| [type](#type) | `string` | Required | cannot be null | [SerializedParentAction](serializedparentaction-definitions-serializedincrementcategoryextratimeaction-properties-type.md "https://timelimit.io/SerializedParentAction#/definitions/SerializedIncrementCategoryExtraTimeAction/properties/type") | +| [categoryId](#categoryId) | `string` | Required | cannot be null | [SerializedParentAction](serializedparentaction-definitions-serializedincrementcategoryextratimeaction-properties-categoryid.md "https://timelimit.io/SerializedParentAction#/definitions/SerializedIncrementCategoryExtraTimeAction/properties/categoryId") | +| [addedExtraTime](#addedExtraTime) | `number` | Required | cannot be null | [SerializedParentAction](serializedparentaction-definitions-serializedincrementcategoryextratimeaction-properties-addedextratime.md "https://timelimit.io/SerializedParentAction#/definitions/SerializedIncrementCategoryExtraTimeAction/properties/addedExtraTime") | +| [day](#day) | `number` | Optional | cannot be null | [SerializedParentAction](serializedparentaction-definitions-serializedincrementcategoryextratimeaction-properties-day.md "https://timelimit.io/SerializedParentAction#/definitions/SerializedIncrementCategoryExtraTimeAction/properties/day") | + +## type + + + + +`type` + +- is required +- Type: `string` +- cannot be null +- defined in: [SerializedParentAction](serializedparentaction-definitions-serializedincrementcategoryextratimeaction-properties-type.md "https://timelimit.io/SerializedParentAction#/definitions/SerializedIncrementCategoryExtraTimeAction/properties/type") + +### type Type + +`string` + +### type Constraints + +**enum**: the value of this property must be equal to one of the following values: + +| Value | Explanation | +| :------------------------------- | ----------- | +| `"INCREMENT_CATEGORY_EXTRATIME"` | | + +## categoryId + + + + +`categoryId` + +- is required +- Type: `string` +- cannot be null +- defined in: [SerializedParentAction](serializedparentaction-definitions-serializedincrementcategoryextratimeaction-properties-categoryid.md "https://timelimit.io/SerializedParentAction#/definitions/SerializedIncrementCategoryExtraTimeAction/properties/categoryId") + +### categoryId Type + +`string` + +## addedExtraTime + + + + +`addedExtraTime` + +- is required +- Type: `number` +- cannot be null +- defined in: [SerializedParentAction](serializedparentaction-definitions-serializedincrementcategoryextratimeaction-properties-addedextratime.md "https://timelimit.io/SerializedParentAction#/definitions/SerializedIncrementCategoryExtraTimeAction/properties/addedExtraTime") + +### addedExtraTime Type + +`number` + +## day + + + + +`day` + +- is optional +- Type: `number` +- cannot be null +- defined in: [SerializedParentAction](serializedparentaction-definitions-serializedincrementcategoryextratimeaction-properties-day.md "https://timelimit.io/SerializedParentAction#/definitions/SerializedIncrementCategoryExtraTimeAction/properties/day") + +### day Type + +`number` diff --git a/docs/schema/serializedparentaction-definitions-serializedremovecategoryappsaction-properties-categoryid.md b/docs/schema/serializedparentaction-definitions-serializedremovecategoryappsaction-properties-categoryid.md new file mode 100644 index 0000000..995f7cb --- /dev/null +++ b/docs/schema/serializedparentaction-definitions-serializedremovecategoryappsaction-properties-categoryid.md @@ -0,0 +1,16 @@ +# Untitled string in SerializedParentAction Schema + +```txt +https://timelimit.io/SerializedParentAction#/definitions/SerializedRemoveCategoryAppsAction/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 | [SerializedParentAction.schema.json\*](SerializedParentAction.schema.json "open original schema") | + +## categoryId Type + +`string` diff --git a/docs/schema/serializedparentaction-definitions-serializedremovecategoryappsaction-properties-packagenames-items.md b/docs/schema/serializedparentaction-definitions-serializedremovecategoryappsaction-properties-packagenames-items.md new file mode 100644 index 0000000..faa2d95 --- /dev/null +++ b/docs/schema/serializedparentaction-definitions-serializedremovecategoryappsaction-properties-packagenames-items.md @@ -0,0 +1,16 @@ +# Untitled string in SerializedParentAction Schema + +```txt +https://timelimit.io/SerializedParentAction#/definitions/SerializedRemoveCategoryAppsAction/properties/packageNames/items +``` + + + + +| Abstract | Extensible | Status | Identifiable | Custom Properties | Additional Properties | Access Restrictions | Defined In | +| :------------------ | ---------- | -------------- | ----------------------- | :---------------- | --------------------- | ------------------- | ------------------------------------------------------------------------------------------------- | +| Can be instantiated | No | Unknown status | Unknown identifiability | Forbidden | Allowed | none | [SerializedParentAction.schema.json\*](SerializedParentAction.schema.json "open original schema") | + +## items Type + +`string` diff --git a/docs/schema/serializedparentaction-definitions-serializedremovecategoryappsaction-properties-packagenames.md b/docs/schema/serializedparentaction-definitions-serializedremovecategoryappsaction-properties-packagenames.md new file mode 100644 index 0000000..5bf0ab1 --- /dev/null +++ b/docs/schema/serializedparentaction-definitions-serializedremovecategoryappsaction-properties-packagenames.md @@ -0,0 +1,16 @@ +# Untitled array in SerializedParentAction Schema + +```txt +https://timelimit.io/SerializedParentAction#/definitions/SerializedRemoveCategoryAppsAction/properties/packageNames +``` + + + + +| Abstract | Extensible | Status | Identifiable | Custom Properties | Additional Properties | Access Restrictions | Defined In | +| :------------------ | ---------- | -------------- | ----------------------- | :---------------- | --------------------- | ------------------- | ------------------------------------------------------------------------------------------------- | +| Can be instantiated | No | Unknown status | Unknown identifiability | Forbidden | Allowed | none | [SerializedParentAction.schema.json\*](SerializedParentAction.schema.json "open original schema") | + +## packageNames Type + +`string[]` diff --git a/docs/schema/serializedparentaction-definitions-serializedremovecategoryappsaction-properties-type.md b/docs/schema/serializedparentaction-definitions-serializedremovecategoryappsaction-properties-type.md new file mode 100644 index 0000000..4c269f5 --- /dev/null +++ b/docs/schema/serializedparentaction-definitions-serializedremovecategoryappsaction-properties-type.md @@ -0,0 +1,24 @@ +# Untitled string in SerializedParentAction Schema + +```txt +https://timelimit.io/SerializedParentAction#/definitions/SerializedRemoveCategoryAppsAction/properties/type +``` + + + + +| Abstract | Extensible | Status | Identifiable | Custom Properties | Additional Properties | Access Restrictions | Defined In | +| :------------------ | ---------- | -------------- | ----------------------- | :---------------- | --------------------- | ------------------- | ------------------------------------------------------------------------------------------------- | +| Can be instantiated | No | Unknown status | Unknown identifiability | Forbidden | Allowed | none | [SerializedParentAction.schema.json\*](SerializedParentAction.schema.json "open original schema") | + +## type Type + +`string` + +## type Constraints + +**enum**: the value of this property must be equal to one of the following values: + +| Value | Explanation | +| :----------------------- | ----------- | +| `"REMOVE_CATEGORY_APPS"` | | diff --git a/docs/schema/serializedparentaction-definitions-serializedremovecategoryappsaction-properties.md b/docs/schema/serializedparentaction-definitions-serializedremovecategoryappsaction-properties.md new file mode 100644 index 0000000..3059696 --- /dev/null +++ b/docs/schema/serializedparentaction-definitions-serializedremovecategoryappsaction-properties.md @@ -0,0 +1,16 @@ +# Untitled undefined type in SerializedParentAction Schema + +```txt +https://timelimit.io/SerializedParentAction#/definitions/SerializedRemoveCategoryAppsAction/properties +``` + + + + +| Abstract | Extensible | Status | Identifiable | Custom Properties | Additional Properties | Access Restrictions | Defined In | +| :------------------ | ---------- | -------------- | ----------------------- | :---------------- | --------------------- | ------------------- | ------------------------------------------------------------------------------------------------- | +| Can be instantiated | No | Unknown status | Unknown identifiability | Forbidden | Allowed | none | [SerializedParentAction.schema.json\*](SerializedParentAction.schema.json "open original schema") | + +## properties Type + +unknown diff --git a/docs/schema/serializedparentaction-definitions-serializedremovecategoryappsaction.md b/docs/schema/serializedparentaction-definitions-serializedremovecategoryappsaction.md new file mode 100644 index 0000000..404ec02 --- /dev/null +++ b/docs/schema/serializedparentaction-definitions-serializedremovecategoryappsaction.md @@ -0,0 +1,80 @@ +# SerializedRemoveCategoryAppsAction Schema + +```txt +https://timelimit.io/SerializedParentAction#/definitions/SerializedRemoveCategoryAppsAction +``` + + + + +| Abstract | Extensible | Status | Identifiable | Custom Properties | Additional Properties | Access Restrictions | Defined In | +| :------------------ | ---------- | -------------- | ------------ | :---------------- | --------------------- | ------------------- | ------------------------------------------------------------------------------------------------- | +| Can be instantiated | No | Unknown status | No | Forbidden | Forbidden | none | [SerializedParentAction.schema.json\*](SerializedParentAction.schema.json "open original schema") | + +## SerializedRemoveCategoryAppsAction Type + +`object` ([SerializedRemoveCategoryAppsAction](serializedparentaction-definitions-serializedremovecategoryappsaction.md)) + +# SerializedRemoveCategoryAppsAction Properties + +| Property | Type | Required | Nullable | Defined by | +| :---------------------------- | -------- | -------- | -------------- | :---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | +| [type](#type) | `string` | Required | cannot be null | [SerializedParentAction](serializedparentaction-definitions-serializedremovecategoryappsaction-properties-type.md "https://timelimit.io/SerializedParentAction#/definitions/SerializedRemoveCategoryAppsAction/properties/type") | +| [categoryId](#categoryId) | `string` | Required | cannot be null | [SerializedParentAction](serializedparentaction-definitions-serializedremovecategoryappsaction-properties-categoryid.md "https://timelimit.io/SerializedParentAction#/definitions/SerializedRemoveCategoryAppsAction/properties/categoryId") | +| [packageNames](#packageNames) | `array` | Required | cannot be null | [SerializedParentAction](serializedparentaction-definitions-serializedremovecategoryappsaction-properties-packagenames.md "https://timelimit.io/SerializedParentAction#/definitions/SerializedRemoveCategoryAppsAction/properties/packageNames") | + +## type + + + + +`type` + +- is required +- Type: `string` +- cannot be null +- defined in: [SerializedParentAction](serializedparentaction-definitions-serializedremovecategoryappsaction-properties-type.md "https://timelimit.io/SerializedParentAction#/definitions/SerializedRemoveCategoryAppsAction/properties/type") + +### type Type + +`string` + +### type Constraints + +**enum**: the value of this property must be equal to one of the following values: + +| Value | Explanation | +| :----------------------- | ----------- | +| `"REMOVE_CATEGORY_APPS"` | | + +## categoryId + + + + +`categoryId` + +- is required +- Type: `string` +- cannot be null +- defined in: [SerializedParentAction](serializedparentaction-definitions-serializedremovecategoryappsaction-properties-categoryid.md "https://timelimit.io/SerializedParentAction#/definitions/SerializedRemoveCategoryAppsAction/properties/categoryId") + +### categoryId Type + +`string` + +## packageNames + + + + +`packageNames` + +- is required +- Type: `string[]` +- cannot be null +- defined in: [SerializedParentAction](serializedparentaction-definitions-serializedremovecategoryappsaction-properties-packagenames.md "https://timelimit.io/SerializedParentAction#/definitions/SerializedRemoveCategoryAppsAction/properties/packageNames") + +### packageNames Type + +`string[]` diff --git a/docs/schema/serializedparentaction-definitions-serializedremoveuseraction-properties-authentication.md b/docs/schema/serializedparentaction-definitions-serializedremoveuseraction-properties-authentication.md new file mode 100644 index 0000000..f8c6d8a --- /dev/null +++ b/docs/schema/serializedparentaction-definitions-serializedremoveuseraction-properties-authentication.md @@ -0,0 +1,16 @@ +# Untitled string in SerializedParentAction Schema + +```txt +https://timelimit.io/SerializedParentAction#/definitions/SerializedRemoveUserAction/properties/authentication +``` + + + + +| Abstract | Extensible | Status | Identifiable | Custom Properties | Additional Properties | Access Restrictions | Defined In | +| :------------------ | ---------- | -------------- | ----------------------- | :---------------- | --------------------- | ------------------- | ------------------------------------------------------------------------------------------------- | +| Can be instantiated | No | Unknown status | Unknown identifiability | Forbidden | Allowed | none | [SerializedParentAction.schema.json\*](SerializedParentAction.schema.json "open original schema") | + +## authentication Type + +`string` diff --git a/docs/schema/serializedparentaction-definitions-serializedremoveuseraction-properties-type.md b/docs/schema/serializedparentaction-definitions-serializedremoveuseraction-properties-type.md new file mode 100644 index 0000000..252d758 --- /dev/null +++ b/docs/schema/serializedparentaction-definitions-serializedremoveuseraction-properties-type.md @@ -0,0 +1,24 @@ +# Untitled string in SerializedParentAction Schema + +```txt +https://timelimit.io/SerializedParentAction#/definitions/SerializedRemoveUserAction/properties/type +``` + + + + +| Abstract | Extensible | Status | Identifiable | Custom Properties | Additional Properties | Access Restrictions | Defined In | +| :------------------ | ---------- | -------------- | ----------------------- | :---------------- | --------------------- | ------------------- | ------------------------------------------------------------------------------------------------- | +| Can be instantiated | No | Unknown status | Unknown identifiability | Forbidden | Allowed | none | [SerializedParentAction.schema.json\*](SerializedParentAction.schema.json "open original schema") | + +## type Type + +`string` + +## type Constraints + +**enum**: the value of this property must be equal to one of the following values: + +| Value | Explanation | +| :-------------- | ----------- | +| `"REMOVE_USER"` | | diff --git a/docs/schema/serializedparentaction-definitions-serializedremoveuseraction-properties-userid.md b/docs/schema/serializedparentaction-definitions-serializedremoveuseraction-properties-userid.md new file mode 100644 index 0000000..526d932 --- /dev/null +++ b/docs/schema/serializedparentaction-definitions-serializedremoveuseraction-properties-userid.md @@ -0,0 +1,16 @@ +# Untitled string in SerializedParentAction Schema + +```txt +https://timelimit.io/SerializedParentAction#/definitions/SerializedRemoveUserAction/properties/userId +``` + + + + +| Abstract | Extensible | Status | Identifiable | Custom Properties | Additional Properties | Access Restrictions | Defined In | +| :------------------ | ---------- | -------------- | ----------------------- | :---------------- | --------------------- | ------------------- | ------------------------------------------------------------------------------------------------- | +| Can be instantiated | No | Unknown status | Unknown identifiability | Forbidden | Allowed | none | [SerializedParentAction.schema.json\*](SerializedParentAction.schema.json "open original schema") | + +## userId Type + +`string` diff --git a/docs/schema/serializedparentaction-definitions-serializedremoveuseraction-properties.md b/docs/schema/serializedparentaction-definitions-serializedremoveuseraction-properties.md new file mode 100644 index 0000000..db942e1 --- /dev/null +++ b/docs/schema/serializedparentaction-definitions-serializedremoveuseraction-properties.md @@ -0,0 +1,16 @@ +# Untitled undefined type in SerializedParentAction Schema + +```txt +https://timelimit.io/SerializedParentAction#/definitions/SerializedRemoveUserAction/properties +``` + + + + +| Abstract | Extensible | Status | Identifiable | Custom Properties | Additional Properties | Access Restrictions | Defined In | +| :------------------ | ---------- | -------------- | ----------------------- | :---------------- | --------------------- | ------------------- | ------------------------------------------------------------------------------------------------- | +| Can be instantiated | No | Unknown status | Unknown identifiability | Forbidden | Allowed | none | [SerializedParentAction.schema.json\*](SerializedParentAction.schema.json "open original schema") | + +## properties Type + +unknown diff --git a/docs/schema/serializedparentaction-definitions-serializedremoveuseraction.md b/docs/schema/serializedparentaction-definitions-serializedremoveuseraction.md new file mode 100644 index 0000000..d8587b3 --- /dev/null +++ b/docs/schema/serializedparentaction-definitions-serializedremoveuseraction.md @@ -0,0 +1,80 @@ +# SerializedRemoveUserAction Schema + +```txt +https://timelimit.io/SerializedParentAction#/definitions/SerializedRemoveUserAction +``` + + + + +| Abstract | Extensible | Status | Identifiable | Custom Properties | Additional Properties | Access Restrictions | Defined In | +| :------------------ | ---------- | -------------- | ------------ | :---------------- | --------------------- | ------------------- | ------------------------------------------------------------------------------------------------- | +| Can be instantiated | No | Unknown status | No | Forbidden | Forbidden | none | [SerializedParentAction.schema.json\*](SerializedParentAction.schema.json "open original schema") | + +## SerializedRemoveUserAction Type + +`object` ([SerializedRemoveUserAction](serializedparentaction-definitions-serializedremoveuseraction.md)) + +# SerializedRemoveUserAction Properties + +| Property | Type | Required | Nullable | Defined by | +| :-------------------------------- | -------- | -------- | -------------- | :---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | +| [type](#type) | `string` | Required | cannot be null | [SerializedParentAction](serializedparentaction-definitions-serializedremoveuseraction-properties-type.md "https://timelimit.io/SerializedParentAction#/definitions/SerializedRemoveUserAction/properties/type") | +| [userId](#userId) | `string` | Required | cannot be null | [SerializedParentAction](serializedparentaction-definitions-serializedremoveuseraction-properties-userid.md "https://timelimit.io/SerializedParentAction#/definitions/SerializedRemoveUserAction/properties/userId") | +| [authentication](#authentication) | `string` | Optional | cannot be null | [SerializedParentAction](serializedparentaction-definitions-serializedremoveuseraction-properties-authentication.md "https://timelimit.io/SerializedParentAction#/definitions/SerializedRemoveUserAction/properties/authentication") | + +## type + + + + +`type` + +- is required +- Type: `string` +- cannot be null +- defined in: [SerializedParentAction](serializedparentaction-definitions-serializedremoveuseraction-properties-type.md "https://timelimit.io/SerializedParentAction#/definitions/SerializedRemoveUserAction/properties/type") + +### type Type + +`string` + +### type Constraints + +**enum**: the value of this property must be equal to one of the following values: + +| Value | Explanation | +| :-------------- | ----------- | +| `"REMOVE_USER"` | | + +## userId + + + + +`userId` + +- is required +- Type: `string` +- cannot be null +- defined in: [SerializedParentAction](serializedparentaction-definitions-serializedremoveuseraction-properties-userid.md "https://timelimit.io/SerializedParentAction#/definitions/SerializedRemoveUserAction/properties/userId") + +### userId Type + +`string` + +## authentication + + + + +`authentication` + +- is optional +- Type: `string` +- cannot be null +- defined in: [SerializedParentAction](serializedparentaction-definitions-serializedremoveuseraction-properties-authentication.md "https://timelimit.io/SerializedParentAction#/definitions/SerializedRemoveUserAction/properties/authentication") + +### authentication Type + +`string` diff --git a/docs/schema/serializedparentaction-definitions-serializedrenamechildaction-properties-childid.md b/docs/schema/serializedparentaction-definitions-serializedrenamechildaction-properties-childid.md new file mode 100644 index 0000000..93dc162 --- /dev/null +++ b/docs/schema/serializedparentaction-definitions-serializedrenamechildaction-properties-childid.md @@ -0,0 +1,16 @@ +# Untitled string in SerializedParentAction Schema + +```txt +https://timelimit.io/SerializedParentAction#/definitions/SerializedRenameChildAction/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 | [SerializedParentAction.schema.json\*](SerializedParentAction.schema.json "open original schema") | + +## childId Type + +`string` diff --git a/docs/schema/serializedparentaction-definitions-serializedrenamechildaction-properties-newname.md b/docs/schema/serializedparentaction-definitions-serializedrenamechildaction-properties-newname.md new file mode 100644 index 0000000..108bc00 --- /dev/null +++ b/docs/schema/serializedparentaction-definitions-serializedrenamechildaction-properties-newname.md @@ -0,0 +1,16 @@ +# Untitled string in SerializedParentAction Schema + +```txt +https://timelimit.io/SerializedParentAction#/definitions/SerializedRenameChildAction/properties/newName +``` + + + + +| Abstract | Extensible | Status | Identifiable | Custom Properties | Additional Properties | Access Restrictions | Defined In | +| :------------------ | ---------- | -------------- | ----------------------- | :---------------- | --------------------- | ------------------- | ------------------------------------------------------------------------------------------------- | +| Can be instantiated | No | Unknown status | Unknown identifiability | Forbidden | Allowed | none | [SerializedParentAction.schema.json\*](SerializedParentAction.schema.json "open original schema") | + +## newName Type + +`string` diff --git a/docs/schema/serializedparentaction-definitions-serializedrenamechildaction-properties-type.md b/docs/schema/serializedparentaction-definitions-serializedrenamechildaction-properties-type.md new file mode 100644 index 0000000..2d9be3e --- /dev/null +++ b/docs/schema/serializedparentaction-definitions-serializedrenamechildaction-properties-type.md @@ -0,0 +1,24 @@ +# Untitled string in SerializedParentAction Schema + +```txt +https://timelimit.io/SerializedParentAction#/definitions/SerializedRenameChildAction/properties/type +``` + + + + +| Abstract | Extensible | Status | Identifiable | Custom Properties | Additional Properties | Access Restrictions | Defined In | +| :------------------ | ---------- | -------------- | ----------------------- | :---------------- | --------------------- | ------------------- | ------------------------------------------------------------------------------------------------- | +| Can be instantiated | No | Unknown status | Unknown identifiability | Forbidden | Allowed | none | [SerializedParentAction.schema.json\*](SerializedParentAction.schema.json "open original schema") | + +## type Type + +`string` + +## type Constraints + +**enum**: the value of this property must be equal to one of the following values: + +| Value | Explanation | +| :--------------- | ----------- | +| `"RENAME_CHILD"` | | diff --git a/docs/schema/serializedparentaction-definitions-serializedrenamechildaction-properties.md b/docs/schema/serializedparentaction-definitions-serializedrenamechildaction-properties.md new file mode 100644 index 0000000..7b80136 --- /dev/null +++ b/docs/schema/serializedparentaction-definitions-serializedrenamechildaction-properties.md @@ -0,0 +1,16 @@ +# Untitled undefined type in SerializedParentAction Schema + +```txt +https://timelimit.io/SerializedParentAction#/definitions/SerializedRenameChildAction/properties +``` + + + + +| Abstract | Extensible | Status | Identifiable | Custom Properties | Additional Properties | Access Restrictions | Defined In | +| :------------------ | ---------- | -------------- | ----------------------- | :---------------- | --------------------- | ------------------- | ------------------------------------------------------------------------------------------------- | +| Can be instantiated | No | Unknown status | Unknown identifiability | Forbidden | Allowed | none | [SerializedParentAction.schema.json\*](SerializedParentAction.schema.json "open original schema") | + +## properties Type + +unknown diff --git a/docs/schema/serializedparentaction-definitions-serializedrenamechildaction.md b/docs/schema/serializedparentaction-definitions-serializedrenamechildaction.md new file mode 100644 index 0000000..d017a7d --- /dev/null +++ b/docs/schema/serializedparentaction-definitions-serializedrenamechildaction.md @@ -0,0 +1,80 @@ +# SerializedRenameChildAction Schema + +```txt +https://timelimit.io/SerializedParentAction#/definitions/SerializedRenameChildAction +``` + + + + +| Abstract | Extensible | Status | Identifiable | Custom Properties | Additional Properties | Access Restrictions | Defined In | +| :------------------ | ---------- | -------------- | ------------ | :---------------- | --------------------- | ------------------- | ------------------------------------------------------------------------------------------------- | +| Can be instantiated | No | Unknown status | No | Forbidden | Forbidden | none | [SerializedParentAction.schema.json\*](SerializedParentAction.schema.json "open original schema") | + +## SerializedRenameChildAction Type + +`object` ([SerializedRenameChildAction](serializedparentaction-definitions-serializedrenamechildaction.md)) + +# SerializedRenameChildAction Properties + +| Property | Type | Required | Nullable | Defined by | +| :------------------ | -------- | -------- | -------------- | :---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | +| [type](#type) | `string` | Required | cannot be null | [SerializedParentAction](serializedparentaction-definitions-serializedrenamechildaction-properties-type.md "https://timelimit.io/SerializedParentAction#/definitions/SerializedRenameChildAction/properties/type") | +| [childId](#childId) | `string` | Required | cannot be null | [SerializedParentAction](serializedparentaction-definitions-serializedrenamechildaction-properties-childid.md "https://timelimit.io/SerializedParentAction#/definitions/SerializedRenameChildAction/properties/childId") | +| [newName](#newName) | `string` | Required | cannot be null | [SerializedParentAction](serializedparentaction-definitions-serializedrenamechildaction-properties-newname.md "https://timelimit.io/SerializedParentAction#/definitions/SerializedRenameChildAction/properties/newName") | + +## type + + + + +`type` + +- is required +- Type: `string` +- cannot be null +- defined in: [SerializedParentAction](serializedparentaction-definitions-serializedrenamechildaction-properties-type.md "https://timelimit.io/SerializedParentAction#/definitions/SerializedRenameChildAction/properties/type") + +### type Type + +`string` + +### type Constraints + +**enum**: the value of this property must be equal to one of the following values: + +| Value | Explanation | +| :--------------- | ----------- | +| `"RENAME_CHILD"` | | + +## childId + + + + +`childId` + +- is required +- Type: `string` +- cannot be null +- defined in: [SerializedParentAction](serializedparentaction-definitions-serializedrenamechildaction-properties-childid.md "https://timelimit.io/SerializedParentAction#/definitions/SerializedRenameChildAction/properties/childId") + +### childId Type + +`string` + +## newName + + + + +`newName` + +- is required +- Type: `string` +- cannot be null +- defined in: [SerializedParentAction](serializedparentaction-definitions-serializedrenamechildaction-properties-newname.md "https://timelimit.io/SerializedParentAction#/definitions/SerializedRenameChildAction/properties/newName") + +### newName Type + +`string` diff --git a/docs/schema/serializedparentaction-definitions-serializedresetparentblockedtimesaction-properties-parentid.md b/docs/schema/serializedparentaction-definitions-serializedresetparentblockedtimesaction-properties-parentid.md new file mode 100644 index 0000000..d99682d --- /dev/null +++ b/docs/schema/serializedparentaction-definitions-serializedresetparentblockedtimesaction-properties-parentid.md @@ -0,0 +1,16 @@ +# Untitled string in SerializedParentAction Schema + +```txt +https://timelimit.io/SerializedParentAction#/definitions/SerializedResetParentBlockedTimesAction/properties/parentId +``` + + + + +| Abstract | Extensible | Status | Identifiable | Custom Properties | Additional Properties | Access Restrictions | Defined In | +| :------------------ | ---------- | -------------- | ----------------------- | :---------------- | --------------------- | ------------------- | ------------------------------------------------------------------------------------------------- | +| Can be instantiated | No | Unknown status | Unknown identifiability | Forbidden | Allowed | none | [SerializedParentAction.schema.json\*](SerializedParentAction.schema.json "open original schema") | + +## parentId Type + +`string` diff --git a/docs/schema/serializedparentaction-definitions-serializedresetparentblockedtimesaction-properties-type.md b/docs/schema/serializedparentaction-definitions-serializedresetparentblockedtimesaction-properties-type.md new file mode 100644 index 0000000..b3f1fb5 --- /dev/null +++ b/docs/schema/serializedparentaction-definitions-serializedresetparentblockedtimesaction-properties-type.md @@ -0,0 +1,24 @@ +# Untitled string in SerializedParentAction Schema + +```txt +https://timelimit.io/SerializedParentAction#/definitions/SerializedResetParentBlockedTimesAction/properties/type +``` + + + + +| Abstract | Extensible | Status | Identifiable | Custom Properties | Additional Properties | Access Restrictions | Defined In | +| :------------------ | ---------- | -------------- | ----------------------- | :---------------- | --------------------- | ------------------- | ------------------------------------------------------------------------------------------------- | +| Can be instantiated | No | Unknown status | Unknown identifiability | Forbidden | Allowed | none | [SerializedParentAction.schema.json\*](SerializedParentAction.schema.json "open original schema") | + +## type Type + +`string` + +## type Constraints + +**enum**: the value of this property must be equal to one of the following values: + +| Value | Explanation | +| :----------------------------- | ----------- | +| `"RESET_PARENT_BLOCKED_TIMES"` | | diff --git a/docs/schema/serializedparentaction-definitions-serializedresetparentblockedtimesaction-properties.md b/docs/schema/serializedparentaction-definitions-serializedresetparentblockedtimesaction-properties.md new file mode 100644 index 0000000..6358b5d --- /dev/null +++ b/docs/schema/serializedparentaction-definitions-serializedresetparentblockedtimesaction-properties.md @@ -0,0 +1,16 @@ +# Untitled undefined type in SerializedParentAction Schema + +```txt +https://timelimit.io/SerializedParentAction#/definitions/SerializedResetParentBlockedTimesAction/properties +``` + + + + +| Abstract | Extensible | Status | Identifiable | Custom Properties | Additional Properties | Access Restrictions | Defined In | +| :------------------ | ---------- | -------------- | ----------------------- | :---------------- | --------------------- | ------------------- | ------------------------------------------------------------------------------------------------- | +| Can be instantiated | No | Unknown status | Unknown identifiability | Forbidden | Allowed | none | [SerializedParentAction.schema.json\*](SerializedParentAction.schema.json "open original schema") | + +## properties Type + +unknown diff --git a/docs/schema/serializedparentaction-definitions-serializedresetparentblockedtimesaction.md b/docs/schema/serializedparentaction-definitions-serializedresetparentblockedtimesaction.md new file mode 100644 index 0000000..2ba7e4a --- /dev/null +++ b/docs/schema/serializedparentaction-definitions-serializedresetparentblockedtimesaction.md @@ -0,0 +1,63 @@ +# SerializedResetParentBlockedTimesAction Schema + +```txt +https://timelimit.io/SerializedParentAction#/definitions/SerializedResetParentBlockedTimesAction +``` + + + + +| Abstract | Extensible | Status | Identifiable | Custom Properties | Additional Properties | Access Restrictions | Defined In | +| :------------------ | ---------- | -------------- | ------------ | :---------------- | --------------------- | ------------------- | ------------------------------------------------------------------------------------------------- | +| Can be instantiated | No | Unknown status | No | Forbidden | Forbidden | none | [SerializedParentAction.schema.json\*](SerializedParentAction.schema.json "open original schema") | + +## SerializedResetParentBlockedTimesAction Type + +`object` ([SerializedResetParentBlockedTimesAction](serializedparentaction-definitions-serializedresetparentblockedtimesaction.md)) + +# SerializedResetParentBlockedTimesAction Properties + +| Property | Type | Required | Nullable | Defined by | +| :-------------------- | -------- | -------- | -------------- | :------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ | +| [type](#type) | `string` | Required | cannot be null | [SerializedParentAction](serializedparentaction-definitions-serializedresetparentblockedtimesaction-properties-type.md "https://timelimit.io/SerializedParentAction#/definitions/SerializedResetParentBlockedTimesAction/properties/type") | +| [parentId](#parentId) | `string` | Required | cannot be null | [SerializedParentAction](serializedparentaction-definitions-serializedresetparentblockedtimesaction-properties-parentid.md "https://timelimit.io/SerializedParentAction#/definitions/SerializedResetParentBlockedTimesAction/properties/parentId") | + +## type + + + + +`type` + +- is required +- Type: `string` +- cannot be null +- defined in: [SerializedParentAction](serializedparentaction-definitions-serializedresetparentblockedtimesaction-properties-type.md "https://timelimit.io/SerializedParentAction#/definitions/SerializedResetParentBlockedTimesAction/properties/type") + +### type Type + +`string` + +### type Constraints + +**enum**: the value of this property must be equal to one of the following values: + +| Value | Explanation | +| :----------------------------- | ----------- | +| `"RESET_PARENT_BLOCKED_TIMES"` | | + +## parentId + + + + +`parentId` + +- is required +- Type: `string` +- cannot be null +- defined in: [SerializedParentAction](serializedparentaction-definitions-serializedresetparentblockedtimesaction-properties-parentid.md "https://timelimit.io/SerializedParentAction#/definitions/SerializedResetParentBlockedTimesAction/properties/parentId") + +### parentId Type + +`string` diff --git a/docs/schema/serializedparentaction-definitions-serializedsetcategoryextratimeaction-properties-categoryid.md b/docs/schema/serializedparentaction-definitions-serializedsetcategoryextratimeaction-properties-categoryid.md new file mode 100644 index 0000000..8789281 --- /dev/null +++ b/docs/schema/serializedparentaction-definitions-serializedsetcategoryextratimeaction-properties-categoryid.md @@ -0,0 +1,16 @@ +# Untitled string in SerializedParentAction Schema + +```txt +https://timelimit.io/SerializedParentAction#/definitions/SerializedSetCategoryExtraTimeAction/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 | [SerializedParentAction.schema.json\*](SerializedParentAction.schema.json "open original schema") | + +## categoryId Type + +`string` diff --git a/docs/schema/serializedparentaction-definitions-serializedsetcategoryextratimeaction-properties-day.md b/docs/schema/serializedparentaction-definitions-serializedsetcategoryextratimeaction-properties-day.md new file mode 100644 index 0000000..85a038d --- /dev/null +++ b/docs/schema/serializedparentaction-definitions-serializedsetcategoryextratimeaction-properties-day.md @@ -0,0 +1,16 @@ +# Untitled number in SerializedParentAction Schema + +```txt +https://timelimit.io/SerializedParentAction#/definitions/SerializedSetCategoryExtraTimeAction/properties/day +``` + + + + +| Abstract | Extensible | Status | Identifiable | Custom Properties | Additional Properties | Access Restrictions | Defined In | +| :------------------ | ---------- | -------------- | ----------------------- | :---------------- | --------------------- | ------------------- | ------------------------------------------------------------------------------------------------- | +| Can be instantiated | No | Unknown status | Unknown identifiability | Forbidden | Allowed | none | [SerializedParentAction.schema.json\*](SerializedParentAction.schema.json "open original schema") | + +## day Type + +`number` diff --git a/docs/schema/serializedparentaction-definitions-serializedsetcategoryextratimeaction-properties-newextratime.md b/docs/schema/serializedparentaction-definitions-serializedsetcategoryextratimeaction-properties-newextratime.md new file mode 100644 index 0000000..a339913 --- /dev/null +++ b/docs/schema/serializedparentaction-definitions-serializedsetcategoryextratimeaction-properties-newextratime.md @@ -0,0 +1,16 @@ +# Untitled number in SerializedParentAction Schema + +```txt +https://timelimit.io/SerializedParentAction#/definitions/SerializedSetCategoryExtraTimeAction/properties/newExtraTime +``` + + + + +| Abstract | Extensible | Status | Identifiable | Custom Properties | Additional Properties | Access Restrictions | Defined In | +| :------------------ | ---------- | -------------- | ----------------------- | :---------------- | --------------------- | ------------------- | ------------------------------------------------------------------------------------------------- | +| Can be instantiated | No | Unknown status | Unknown identifiability | Forbidden | Allowed | none | [SerializedParentAction.schema.json\*](SerializedParentAction.schema.json "open original schema") | + +## newExtraTime Type + +`number` diff --git a/docs/schema/serializedparentaction-definitions-serializedsetcategoryextratimeaction-properties-type.md b/docs/schema/serializedparentaction-definitions-serializedsetcategoryextratimeaction-properties-type.md new file mode 100644 index 0000000..9d89ea3 --- /dev/null +++ b/docs/schema/serializedparentaction-definitions-serializedsetcategoryextratimeaction-properties-type.md @@ -0,0 +1,24 @@ +# Untitled string in SerializedParentAction Schema + +```txt +https://timelimit.io/SerializedParentAction#/definitions/SerializedSetCategoryExtraTimeAction/properties/type +``` + + + + +| Abstract | Extensible | Status | Identifiable | Custom Properties | Additional Properties | Access Restrictions | Defined In | +| :------------------ | ---------- | -------------- | ----------------------- | :---------------- | --------------------- | ------------------- | ------------------------------------------------------------------------------------------------- | +| Can be instantiated | No | Unknown status | Unknown identifiability | Forbidden | Allowed | none | [SerializedParentAction.schema.json\*](SerializedParentAction.schema.json "open original schema") | + +## type Type + +`string` + +## type Constraints + +**enum**: the value of this property must be equal to one of the following values: + +| Value | Explanation | +| :-------------------------- | ----------- | +| `"SET_CATEGORY_EXTRA_TIME"` | | diff --git a/docs/schema/serializedparentaction-definitions-serializedsetcategoryextratimeaction-properties.md b/docs/schema/serializedparentaction-definitions-serializedsetcategoryextratimeaction-properties.md new file mode 100644 index 0000000..9c236a3 --- /dev/null +++ b/docs/schema/serializedparentaction-definitions-serializedsetcategoryextratimeaction-properties.md @@ -0,0 +1,16 @@ +# Untitled undefined type in SerializedParentAction Schema + +```txt +https://timelimit.io/SerializedParentAction#/definitions/SerializedSetCategoryExtraTimeAction/properties +``` + + + + +| Abstract | Extensible | Status | Identifiable | Custom Properties | Additional Properties | Access Restrictions | Defined In | +| :------------------ | ---------- | -------------- | ----------------------- | :---------------- | --------------------- | ------------------- | ------------------------------------------------------------------------------------------------- | +| Can be instantiated | No | Unknown status | Unknown identifiability | Forbidden | Allowed | none | [SerializedParentAction.schema.json\*](SerializedParentAction.schema.json "open original schema") | + +## properties Type + +unknown diff --git a/docs/schema/serializedparentaction-definitions-serializedsetcategoryextratimeaction.md b/docs/schema/serializedparentaction-definitions-serializedsetcategoryextratimeaction.md new file mode 100644 index 0000000..8532742 --- /dev/null +++ b/docs/schema/serializedparentaction-definitions-serializedsetcategoryextratimeaction.md @@ -0,0 +1,97 @@ +# SerializedSetCategoryExtraTimeAction Schema + +```txt +https://timelimit.io/SerializedParentAction#/definitions/SerializedSetCategoryExtraTimeAction +``` + + + + +| Abstract | Extensible | Status | Identifiable | Custom Properties | Additional Properties | Access Restrictions | Defined In | +| :------------------ | ---------- | -------------- | ------------ | :---------------- | --------------------- | ------------------- | ------------------------------------------------------------------------------------------------- | +| Can be instantiated | No | Unknown status | No | Forbidden | Forbidden | none | [SerializedParentAction.schema.json\*](SerializedParentAction.schema.json "open original schema") | + +## SerializedSetCategoryExtraTimeAction Type + +`object` ([SerializedSetCategoryExtraTimeAction](serializedparentaction-definitions-serializedsetcategoryextratimeaction.md)) + +# SerializedSetCategoryExtraTimeAction Properties + +| Property | Type | Required | Nullable | Defined by | +| :---------------------------- | -------- | -------- | -------------- | :-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | +| [type](#type) | `string` | Required | cannot be null | [SerializedParentAction](serializedparentaction-definitions-serializedsetcategoryextratimeaction-properties-type.md "https://timelimit.io/SerializedParentAction#/definitions/SerializedSetCategoryExtraTimeAction/properties/type") | +| [categoryId](#categoryId) | `string` | Required | cannot be null | [SerializedParentAction](serializedparentaction-definitions-serializedsetcategoryextratimeaction-properties-categoryid.md "https://timelimit.io/SerializedParentAction#/definitions/SerializedSetCategoryExtraTimeAction/properties/categoryId") | +| [newExtraTime](#newExtraTime) | `number` | Required | cannot be null | [SerializedParentAction](serializedparentaction-definitions-serializedsetcategoryextratimeaction-properties-newextratime.md "https://timelimit.io/SerializedParentAction#/definitions/SerializedSetCategoryExtraTimeAction/properties/newExtraTime") | +| [day](#day) | `number` | Optional | cannot be null | [SerializedParentAction](serializedparentaction-definitions-serializedsetcategoryextratimeaction-properties-day.md "https://timelimit.io/SerializedParentAction#/definitions/SerializedSetCategoryExtraTimeAction/properties/day") | + +## type + + + + +`type` + +- is required +- Type: `string` +- cannot be null +- defined in: [SerializedParentAction](serializedparentaction-definitions-serializedsetcategoryextratimeaction-properties-type.md "https://timelimit.io/SerializedParentAction#/definitions/SerializedSetCategoryExtraTimeAction/properties/type") + +### type Type + +`string` + +### type Constraints + +**enum**: the value of this property must be equal to one of the following values: + +| Value | Explanation | +| :-------------------------- | ----------- | +| `"SET_CATEGORY_EXTRA_TIME"` | | + +## categoryId + + + + +`categoryId` + +- is required +- Type: `string` +- cannot be null +- defined in: [SerializedParentAction](serializedparentaction-definitions-serializedsetcategoryextratimeaction-properties-categoryid.md "https://timelimit.io/SerializedParentAction#/definitions/SerializedSetCategoryExtraTimeAction/properties/categoryId") + +### categoryId Type + +`string` + +## newExtraTime + + + + +`newExtraTime` + +- is required +- Type: `number` +- cannot be null +- defined in: [SerializedParentAction](serializedparentaction-definitions-serializedsetcategoryextratimeaction-properties-newextratime.md "https://timelimit.io/SerializedParentAction#/definitions/SerializedSetCategoryExtraTimeAction/properties/newExtraTime") + +### newExtraTime Type + +`number` + +## day + + + + +`day` + +- is optional +- Type: `number` +- cannot be null +- defined in: [SerializedParentAction](serializedparentaction-definitions-serializedsetcategoryextratimeaction-properties-day.md "https://timelimit.io/SerializedParentAction#/definitions/SerializedSetCategoryExtraTimeAction/properties/day") + +### day Type + +`number` diff --git a/docs/schema/serializedparentaction-definitions-serializedsetcategoryforunassignedappsaction-properties-categoryid.md b/docs/schema/serializedparentaction-definitions-serializedsetcategoryforunassignedappsaction-properties-categoryid.md new file mode 100644 index 0000000..0533734 --- /dev/null +++ b/docs/schema/serializedparentaction-definitions-serializedsetcategoryforunassignedappsaction-properties-categoryid.md @@ -0,0 +1,16 @@ +# Untitled string in SerializedParentAction Schema + +```txt +https://timelimit.io/SerializedParentAction#/definitions/SerializedSetCategoryForUnassignedAppsAction/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 | [SerializedParentAction.schema.json\*](SerializedParentAction.schema.json "open original schema") | + +## categoryId Type + +`string` diff --git a/docs/schema/serializedparentaction-definitions-serializedsetcategoryforunassignedappsaction-properties-childid.md b/docs/schema/serializedparentaction-definitions-serializedsetcategoryforunassignedappsaction-properties-childid.md new file mode 100644 index 0000000..0ec1cba --- /dev/null +++ b/docs/schema/serializedparentaction-definitions-serializedsetcategoryforunassignedappsaction-properties-childid.md @@ -0,0 +1,16 @@ +# Untitled string in SerializedParentAction Schema + +```txt +https://timelimit.io/SerializedParentAction#/definitions/SerializedSetCategoryForUnassignedAppsAction/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 | [SerializedParentAction.schema.json\*](SerializedParentAction.schema.json "open original schema") | + +## childId Type + +`string` diff --git a/docs/schema/serializedparentaction-definitions-serializedsetcategoryforunassignedappsaction-properties-type.md b/docs/schema/serializedparentaction-definitions-serializedsetcategoryforunassignedappsaction-properties-type.md new file mode 100644 index 0000000..94905f6 --- /dev/null +++ b/docs/schema/serializedparentaction-definitions-serializedsetcategoryforunassignedappsaction-properties-type.md @@ -0,0 +1,24 @@ +# Untitled string in SerializedParentAction Schema + +```txt +https://timelimit.io/SerializedParentAction#/definitions/SerializedSetCategoryForUnassignedAppsAction/properties/type +``` + + + + +| Abstract | Extensible | Status | Identifiable | Custom Properties | Additional Properties | Access Restrictions | Defined In | +| :------------------ | ---------- | -------------- | ----------------------- | :---------------- | --------------------- | ------------------- | ------------------------------------------------------------------------------------------------- | +| Can be instantiated | No | Unknown status | Unknown identifiability | Forbidden | Allowed | none | [SerializedParentAction.schema.json\*](SerializedParentAction.schema.json "open original schema") | + +## type Type + +`string` + +## type Constraints + +**enum**: the value of this property must be equal to one of the following values: + +| Value | Explanation | +| :----------------------------------- | ----------- | +| `"SET_CATEGORY_FOR_UNASSIGNED_APPS"` | | diff --git a/docs/schema/serializedparentaction-definitions-serializedsetcategoryforunassignedappsaction-properties.md b/docs/schema/serializedparentaction-definitions-serializedsetcategoryforunassignedappsaction-properties.md new file mode 100644 index 0000000..a03b444 --- /dev/null +++ b/docs/schema/serializedparentaction-definitions-serializedsetcategoryforunassignedappsaction-properties.md @@ -0,0 +1,16 @@ +# Untitled undefined type in SerializedParentAction Schema + +```txt +https://timelimit.io/SerializedParentAction#/definitions/SerializedSetCategoryForUnassignedAppsAction/properties +``` + + + + +| Abstract | Extensible | Status | Identifiable | Custom Properties | Additional Properties | Access Restrictions | Defined In | +| :------------------ | ---------- | -------------- | ----------------------- | :---------------- | --------------------- | ------------------- | ------------------------------------------------------------------------------------------------- | +| Can be instantiated | No | Unknown status | Unknown identifiability | Forbidden | Allowed | none | [SerializedParentAction.schema.json\*](SerializedParentAction.schema.json "open original schema") | + +## properties Type + +unknown diff --git a/docs/schema/serializedparentaction-definitions-serializedsetcategoryforunassignedappsaction.md b/docs/schema/serializedparentaction-definitions-serializedsetcategoryforunassignedappsaction.md new file mode 100644 index 0000000..f739a78 --- /dev/null +++ b/docs/schema/serializedparentaction-definitions-serializedsetcategoryforunassignedappsaction.md @@ -0,0 +1,80 @@ +# SerializedSetCategoryForUnassignedAppsAction Schema + +```txt +https://timelimit.io/SerializedParentAction#/definitions/SerializedSetCategoryForUnassignedAppsAction +``` + + + + +| Abstract | Extensible | Status | Identifiable | Custom Properties | Additional Properties | Access Restrictions | Defined In | +| :------------------ | ---------- | -------------- | ------------ | :---------------- | --------------------- | ------------------- | ------------------------------------------------------------------------------------------------- | +| Can be instantiated | No | Unknown status | No | Forbidden | Forbidden | none | [SerializedParentAction.schema.json\*](SerializedParentAction.schema.json "open original schema") | + +## SerializedSetCategoryForUnassignedAppsAction Type + +`object` ([SerializedSetCategoryForUnassignedAppsAction](serializedparentaction-definitions-serializedsetcategoryforunassignedappsaction.md)) + +# SerializedSetCategoryForUnassignedAppsAction Properties + +| Property | Type | Required | Nullable | Defined by | +| :------------------------ | -------- | -------- | -------------- | :-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | +| [type](#type) | `string` | Required | cannot be null | [SerializedParentAction](serializedparentaction-definitions-serializedsetcategoryforunassignedappsaction-properties-type.md "https://timelimit.io/SerializedParentAction#/definitions/SerializedSetCategoryForUnassignedAppsAction/properties/type") | +| [childId](#childId) | `string` | Required | cannot be null | [SerializedParentAction](serializedparentaction-definitions-serializedsetcategoryforunassignedappsaction-properties-childid.md "https://timelimit.io/SerializedParentAction#/definitions/SerializedSetCategoryForUnassignedAppsAction/properties/childId") | +| [categoryId](#categoryId) | `string` | Required | cannot be null | [SerializedParentAction](serializedparentaction-definitions-serializedsetcategoryforunassignedappsaction-properties-categoryid.md "https://timelimit.io/SerializedParentAction#/definitions/SerializedSetCategoryForUnassignedAppsAction/properties/categoryId") | + +## type + + + + +`type` + +- is required +- Type: `string` +- cannot be null +- defined in: [SerializedParentAction](serializedparentaction-definitions-serializedsetcategoryforunassignedappsaction-properties-type.md "https://timelimit.io/SerializedParentAction#/definitions/SerializedSetCategoryForUnassignedAppsAction/properties/type") + +### type Type + +`string` + +### type Constraints + +**enum**: the value of this property must be equal to one of the following values: + +| Value | Explanation | +| :----------------------------------- | ----------- | +| `"SET_CATEGORY_FOR_UNASSIGNED_APPS"` | | + +## childId + + + + +`childId` + +- is required +- Type: `string` +- cannot be null +- defined in: [SerializedParentAction](serializedparentaction-definitions-serializedsetcategoryforunassignedappsaction-properties-childid.md "https://timelimit.io/SerializedParentAction#/definitions/SerializedSetCategoryForUnassignedAppsAction/properties/childId") + +### childId Type + +`string` + +## categoryId + + + + +`categoryId` + +- is required +- Type: `string` +- cannot be null +- defined in: [SerializedParentAction](serializedparentaction-definitions-serializedsetcategoryforunassignedappsaction-properties-categoryid.md "https://timelimit.io/SerializedParentAction#/definitions/SerializedSetCategoryForUnassignedAppsAction/properties/categoryId") + +### categoryId Type + +`string` diff --git a/docs/schema/serializedparentaction-definitions-serializedsetchildpasswordaction-properties-childid.md b/docs/schema/serializedparentaction-definitions-serializedsetchildpasswordaction-properties-childid.md new file mode 100644 index 0000000..e4bdc38 --- /dev/null +++ b/docs/schema/serializedparentaction-definitions-serializedsetchildpasswordaction-properties-childid.md @@ -0,0 +1,16 @@ +# Untitled string in SerializedParentAction Schema + +```txt +https://timelimit.io/SerializedParentAction#/definitions/SerializedSetChildPasswordAction/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 | [SerializedParentAction.schema.json\*](SerializedParentAction.schema.json "open original schema") | + +## childId Type + +`string` diff --git a/docs/schema/serializedparentaction-definitions-serializedsetchildpasswordaction-properties-type.md b/docs/schema/serializedparentaction-definitions-serializedsetchildpasswordaction-properties-type.md new file mode 100644 index 0000000..92b87cb --- /dev/null +++ b/docs/schema/serializedparentaction-definitions-serializedsetchildpasswordaction-properties-type.md @@ -0,0 +1,24 @@ +# Untitled string in SerializedParentAction Schema + +```txt +https://timelimit.io/SerializedParentAction#/definitions/SerializedSetChildPasswordAction/properties/type +``` + + + + +| Abstract | Extensible | Status | Identifiable | Custom Properties | Additional Properties | Access Restrictions | Defined In | +| :------------------ | ---------- | -------------- | ----------------------- | :---------------- | --------------------- | ------------------- | ------------------------------------------------------------------------------------------------- | +| Can be instantiated | No | Unknown status | Unknown identifiability | Forbidden | Allowed | none | [SerializedParentAction.schema.json\*](SerializedParentAction.schema.json "open original schema") | + +## type Type + +`string` + +## type Constraints + +**enum**: the value of this property must be equal to one of the following values: + +| Value | Explanation | +| :--------------------- | ----------- | +| `"SET_CHILD_PASSWORD"` | | diff --git a/docs/schema/serializedparentaction-definitions-serializedsetchildpasswordaction-properties.md b/docs/schema/serializedparentaction-definitions-serializedsetchildpasswordaction-properties.md new file mode 100644 index 0000000..3dc3017 --- /dev/null +++ b/docs/schema/serializedparentaction-definitions-serializedsetchildpasswordaction-properties.md @@ -0,0 +1,16 @@ +# Untitled undefined type in SerializedParentAction Schema + +```txt +https://timelimit.io/SerializedParentAction#/definitions/SerializedSetChildPasswordAction/properties +``` + + + + +| Abstract | Extensible | Status | Identifiable | Custom Properties | Additional Properties | Access Restrictions | Defined In | +| :------------------ | ---------- | -------------- | ----------------------- | :---------------- | --------------------- | ------------------- | ------------------------------------------------------------------------------------------------- | +| Can be instantiated | No | Unknown status | Unknown identifiability | Forbidden | Allowed | none | [SerializedParentAction.schema.json\*](SerializedParentAction.schema.json "open original schema") | + +## properties Type + +unknown diff --git a/docs/schema/serializedparentaction-definitions-serializedsetchildpasswordaction.md b/docs/schema/serializedparentaction-definitions-serializedsetchildpasswordaction.md new file mode 100644 index 0000000..5702e10 --- /dev/null +++ b/docs/schema/serializedparentaction-definitions-serializedsetchildpasswordaction.md @@ -0,0 +1,80 @@ +# SerializedSetChildPasswordAction Schema + +```txt +https://timelimit.io/SerializedParentAction#/definitions/SerializedSetChildPasswordAction +``` + + + + +| Abstract | Extensible | Status | Identifiable | Custom Properties | Additional Properties | Access Restrictions | Defined In | +| :------------------ | ---------- | -------------- | ------------ | :---------------- | --------------------- | ------------------- | ------------------------------------------------------------------------------------------------- | +| Can be instantiated | No | Unknown status | No | Forbidden | Forbidden | none | [SerializedParentAction.schema.json\*](SerializedParentAction.schema.json "open original schema") | + +## SerializedSetChildPasswordAction Type + +`object` ([SerializedSetChildPasswordAction](serializedparentaction-definitions-serializedsetchildpasswordaction.md)) + +# SerializedSetChildPasswordAction Properties + +| Property | Type | Required | Nullable | Defined by | +| :-------------------------- | -------- | -------- | -------------- | :-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | +| [type](#type) | `string` | Required | cannot be null | [SerializedParentAction](serializedparentaction-definitions-serializedsetchildpasswordaction-properties-type.md "https://timelimit.io/SerializedParentAction#/definitions/SerializedSetChildPasswordAction/properties/type") | +| [childId](#childId) | `string` | Required | cannot be null | [SerializedParentAction](serializedparentaction-definitions-serializedsetchildpasswordaction-properties-childid.md "https://timelimit.io/SerializedParentAction#/definitions/SerializedSetChildPasswordAction/properties/childId") | +| [newPassword](#newPassword) | `object` | Required | cannot be null | [SerializedParentAction](serializedparentaction-definitions-parentpassword.md "https://timelimit.io/SerializedParentAction#/definitions/SerializedSetChildPasswordAction/properties/newPassword") | + +## type + + + + +`type` + +- is required +- Type: `string` +- cannot be null +- defined in: [SerializedParentAction](serializedparentaction-definitions-serializedsetchildpasswordaction-properties-type.md "https://timelimit.io/SerializedParentAction#/definitions/SerializedSetChildPasswordAction/properties/type") + +### type Type + +`string` + +### type Constraints + +**enum**: the value of this property must be equal to one of the following values: + +| Value | Explanation | +| :--------------------- | ----------- | +| `"SET_CHILD_PASSWORD"` | | + +## childId + + + + +`childId` + +- is required +- Type: `string` +- cannot be null +- defined in: [SerializedParentAction](serializedparentaction-definitions-serializedsetchildpasswordaction-properties-childid.md "https://timelimit.io/SerializedParentAction#/definitions/SerializedSetChildPasswordAction/properties/childId") + +### childId Type + +`string` + +## newPassword + + + + +`newPassword` + +- is required +- Type: `object` ([ParentPassword](serializedparentaction-definitions-parentpassword.md)) +- cannot be null +- defined in: [SerializedParentAction](serializedparentaction-definitions-parentpassword.md "https://timelimit.io/SerializedParentAction#/definitions/SerializedSetChildPasswordAction/properties/newPassword") + +### newPassword Type + +`object` ([ParentPassword](serializedparentaction-definitions-parentpassword.md)) diff --git a/docs/schema/serializedparentaction-definitions-serializedsetconsiderrebootmanipulationaction-properties-deviceid.md b/docs/schema/serializedparentaction-definitions-serializedsetconsiderrebootmanipulationaction-properties-deviceid.md new file mode 100644 index 0000000..59321a7 --- /dev/null +++ b/docs/schema/serializedparentaction-definitions-serializedsetconsiderrebootmanipulationaction-properties-deviceid.md @@ -0,0 +1,16 @@ +# Untitled string in SerializedParentAction Schema + +```txt +https://timelimit.io/SerializedParentAction#/definitions/SerializedSetConsiderRebootManipulationAction/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 | [SerializedParentAction.schema.json\*](SerializedParentAction.schema.json "open original schema") | + +## deviceId Type + +`string` diff --git a/docs/schema/serializedparentaction-definitions-serializedsetconsiderrebootmanipulationaction-properties-enable.md b/docs/schema/serializedparentaction-definitions-serializedsetconsiderrebootmanipulationaction-properties-enable.md new file mode 100644 index 0000000..c3af19b --- /dev/null +++ b/docs/schema/serializedparentaction-definitions-serializedsetconsiderrebootmanipulationaction-properties-enable.md @@ -0,0 +1,16 @@ +# Untitled boolean in SerializedParentAction Schema + +```txt +https://timelimit.io/SerializedParentAction#/definitions/SerializedSetConsiderRebootManipulationAction/properties/enable +``` + + + + +| Abstract | Extensible | Status | Identifiable | Custom Properties | Additional Properties | Access Restrictions | Defined In | +| :------------------ | ---------- | -------------- | ----------------------- | :---------------- | --------------------- | ------------------- | ------------------------------------------------------------------------------------------------- | +| Can be instantiated | No | Unknown status | Unknown identifiability | Forbidden | Allowed | none | [SerializedParentAction.schema.json\*](SerializedParentAction.schema.json "open original schema") | + +## enable Type + +`boolean` diff --git a/docs/schema/serializedparentaction-definitions-serializedsetconsiderrebootmanipulationaction-properties-type.md b/docs/schema/serializedparentaction-definitions-serializedsetconsiderrebootmanipulationaction-properties-type.md new file mode 100644 index 0000000..cb4b919 --- /dev/null +++ b/docs/schema/serializedparentaction-definitions-serializedsetconsiderrebootmanipulationaction-properties-type.md @@ -0,0 +1,24 @@ +# Untitled string in SerializedParentAction Schema + +```txt +https://timelimit.io/SerializedParentAction#/definitions/SerializedSetConsiderRebootManipulationAction/properties/type +``` + + + + +| Abstract | Extensible | Status | Identifiable | Custom Properties | Additional Properties | Access Restrictions | Defined In | +| :------------------ | ---------- | -------------- | ----------------------- | :---------------- | --------------------- | ------------------- | ------------------------------------------------------------------------------------------------- | +| Can be instantiated | No | Unknown status | Unknown identifiability | Forbidden | Allowed | none | [SerializedParentAction.schema.json\*](SerializedParentAction.schema.json "open original schema") | + +## type Type + +`string` + +## type Constraints + +**enum**: the value of this property must be equal to one of the following values: + +| Value | Explanation | +| :----------------------------------- | ----------- | +| `"SET_CONSIDER_REBOOT_MANIPULATION"` | | diff --git a/docs/schema/serializedparentaction-definitions-serializedsetconsiderrebootmanipulationaction-properties.md b/docs/schema/serializedparentaction-definitions-serializedsetconsiderrebootmanipulationaction-properties.md new file mode 100644 index 0000000..9f56b16 --- /dev/null +++ b/docs/schema/serializedparentaction-definitions-serializedsetconsiderrebootmanipulationaction-properties.md @@ -0,0 +1,16 @@ +# Untitled undefined type in SerializedParentAction Schema + +```txt +https://timelimit.io/SerializedParentAction#/definitions/SerializedSetConsiderRebootManipulationAction/properties +``` + + + + +| Abstract | Extensible | Status | Identifiable | Custom Properties | Additional Properties | Access Restrictions | Defined In | +| :------------------ | ---------- | -------------- | ----------------------- | :---------------- | --------------------- | ------------------- | ------------------------------------------------------------------------------------------------- | +| Can be instantiated | No | Unknown status | Unknown identifiability | Forbidden | Allowed | none | [SerializedParentAction.schema.json\*](SerializedParentAction.schema.json "open original schema") | + +## properties Type + +unknown diff --git a/docs/schema/serializedparentaction-definitions-serializedsetconsiderrebootmanipulationaction.md b/docs/schema/serializedparentaction-definitions-serializedsetconsiderrebootmanipulationaction.md new file mode 100644 index 0000000..184795f --- /dev/null +++ b/docs/schema/serializedparentaction-definitions-serializedsetconsiderrebootmanipulationaction.md @@ -0,0 +1,80 @@ +# SerializedSetConsiderRebootManipulationAction Schema + +```txt +https://timelimit.io/SerializedParentAction#/definitions/SerializedSetConsiderRebootManipulationAction +``` + + + + +| Abstract | Extensible | Status | Identifiable | Custom Properties | Additional Properties | Access Restrictions | Defined In | +| :------------------ | ---------- | -------------- | ------------ | :---------------- | --------------------- | ------------------- | ------------------------------------------------------------------------------------------------- | +| Can be instantiated | No | Unknown status | No | Forbidden | Forbidden | none | [SerializedParentAction.schema.json\*](SerializedParentAction.schema.json "open original schema") | + +## SerializedSetConsiderRebootManipulationAction Type + +`object` ([SerializedSetConsiderRebootManipulationAction](serializedparentaction-definitions-serializedsetconsiderrebootmanipulationaction.md)) + +# SerializedSetConsiderRebootManipulationAction Properties + +| Property | Type | Required | Nullable | Defined by | +| :-------------------- | --------- | -------- | -------------- | :------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ | +| [type](#type) | `string` | Required | cannot be null | [SerializedParentAction](serializedparentaction-definitions-serializedsetconsiderrebootmanipulationaction-properties-type.md "https://timelimit.io/SerializedParentAction#/definitions/SerializedSetConsiderRebootManipulationAction/properties/type") | +| [deviceId](#deviceId) | `string` | Required | cannot be null | [SerializedParentAction](serializedparentaction-definitions-serializedsetconsiderrebootmanipulationaction-properties-deviceid.md "https://timelimit.io/SerializedParentAction#/definitions/SerializedSetConsiderRebootManipulationAction/properties/deviceId") | +| [enable](#enable) | `boolean` | Required | cannot be null | [SerializedParentAction](serializedparentaction-definitions-serializedsetconsiderrebootmanipulationaction-properties-enable.md "https://timelimit.io/SerializedParentAction#/definitions/SerializedSetConsiderRebootManipulationAction/properties/enable") | + +## type + + + + +`type` + +- is required +- Type: `string` +- cannot be null +- defined in: [SerializedParentAction](serializedparentaction-definitions-serializedsetconsiderrebootmanipulationaction-properties-type.md "https://timelimit.io/SerializedParentAction#/definitions/SerializedSetConsiderRebootManipulationAction/properties/type") + +### type Type + +`string` + +### type Constraints + +**enum**: the value of this property must be equal to one of the following values: + +| Value | Explanation | +| :----------------------------------- | ----------- | +| `"SET_CONSIDER_REBOOT_MANIPULATION"` | | + +## deviceId + + + + +`deviceId` + +- is required +- Type: `string` +- cannot be null +- defined in: [SerializedParentAction](serializedparentaction-definitions-serializedsetconsiderrebootmanipulationaction-properties-deviceid.md "https://timelimit.io/SerializedParentAction#/definitions/SerializedSetConsiderRebootManipulationAction/properties/deviceId") + +### deviceId Type + +`string` + +## enable + + + + +`enable` + +- is required +- Type: `boolean` +- cannot be null +- defined in: [SerializedParentAction](serializedparentaction-definitions-serializedsetconsiderrebootmanipulationaction-properties-enable.md "https://timelimit.io/SerializedParentAction#/definitions/SerializedSetConsiderRebootManipulationAction/properties/enable") + +### enable Type + +`boolean` diff --git a/docs/schema/serializedparentaction-definitions-serializedsetdevicedefaultuseraction-properties-defaultuserid.md b/docs/schema/serializedparentaction-definitions-serializedsetdevicedefaultuseraction-properties-defaultuserid.md new file mode 100644 index 0000000..3b9ca0e --- /dev/null +++ b/docs/schema/serializedparentaction-definitions-serializedsetdevicedefaultuseraction-properties-defaultuserid.md @@ -0,0 +1,16 @@ +# Untitled string in SerializedParentAction Schema + +```txt +https://timelimit.io/SerializedParentAction#/definitions/SerializedSetDeviceDefaultUserAction/properties/defaultUserId +``` + + + + +| Abstract | Extensible | Status | Identifiable | Custom Properties | Additional Properties | Access Restrictions | Defined In | +| :------------------ | ---------- | -------------- | ----------------------- | :---------------- | --------------------- | ------------------- | ------------------------------------------------------------------------------------------------- | +| Can be instantiated | No | Unknown status | Unknown identifiability | Forbidden | Allowed | none | [SerializedParentAction.schema.json\*](SerializedParentAction.schema.json "open original schema") | + +## defaultUserId Type + +`string` diff --git a/docs/schema/serializedparentaction-definitions-serializedsetdevicedefaultuseraction-properties-deviceid.md b/docs/schema/serializedparentaction-definitions-serializedsetdevicedefaultuseraction-properties-deviceid.md new file mode 100644 index 0000000..b965784 --- /dev/null +++ b/docs/schema/serializedparentaction-definitions-serializedsetdevicedefaultuseraction-properties-deviceid.md @@ -0,0 +1,16 @@ +# Untitled string in SerializedParentAction Schema + +```txt +https://timelimit.io/SerializedParentAction#/definitions/SerializedSetDeviceDefaultUserAction/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 | [SerializedParentAction.schema.json\*](SerializedParentAction.schema.json "open original schema") | + +## deviceId Type + +`string` diff --git a/docs/schema/serializedparentaction-definitions-serializedsetdevicedefaultuseraction-properties-type.md b/docs/schema/serializedparentaction-definitions-serializedsetdevicedefaultuseraction-properties-type.md new file mode 100644 index 0000000..a72b92f --- /dev/null +++ b/docs/schema/serializedparentaction-definitions-serializedsetdevicedefaultuseraction-properties-type.md @@ -0,0 +1,24 @@ +# Untitled string in SerializedParentAction Schema + +```txt +https://timelimit.io/SerializedParentAction#/definitions/SerializedSetDeviceDefaultUserAction/properties/type +``` + + + + +| Abstract | Extensible | Status | Identifiable | Custom Properties | Additional Properties | Access Restrictions | Defined In | +| :------------------ | ---------- | -------------- | ----------------------- | :---------------- | --------------------- | ------------------- | ------------------------------------------------------------------------------------------------- | +| Can be instantiated | No | Unknown status | Unknown identifiability | Forbidden | Allowed | none | [SerializedParentAction.schema.json\*](SerializedParentAction.schema.json "open original schema") | + +## type Type + +`string` + +## type Constraints + +**enum**: the value of this property must be equal to one of the following values: + +| Value | Explanation | +| :-------------------------- | ----------- | +| `"SET_DEVICE_DEFAULT_USER"` | | diff --git a/docs/schema/serializedparentaction-definitions-serializedsetdevicedefaultuseraction-properties.md b/docs/schema/serializedparentaction-definitions-serializedsetdevicedefaultuseraction-properties.md new file mode 100644 index 0000000..7289973 --- /dev/null +++ b/docs/schema/serializedparentaction-definitions-serializedsetdevicedefaultuseraction-properties.md @@ -0,0 +1,16 @@ +# Untitled undefined type in SerializedParentAction Schema + +```txt +https://timelimit.io/SerializedParentAction#/definitions/SerializedSetDeviceDefaultUserAction/properties +``` + + + + +| Abstract | Extensible | Status | Identifiable | Custom Properties | Additional Properties | Access Restrictions | Defined In | +| :------------------ | ---------- | -------------- | ----------------------- | :---------------- | --------------------- | ------------------- | ------------------------------------------------------------------------------------------------- | +| Can be instantiated | No | Unknown status | Unknown identifiability | Forbidden | Allowed | none | [SerializedParentAction.schema.json\*](SerializedParentAction.schema.json "open original schema") | + +## properties Type + +unknown diff --git a/docs/schema/serializedparentaction-definitions-serializedsetdevicedefaultuseraction.md b/docs/schema/serializedparentaction-definitions-serializedsetdevicedefaultuseraction.md new file mode 100644 index 0000000..f118f92 --- /dev/null +++ b/docs/schema/serializedparentaction-definitions-serializedsetdevicedefaultuseraction.md @@ -0,0 +1,80 @@ +# SerializedSetDeviceDefaultUserAction Schema + +```txt +https://timelimit.io/SerializedParentAction#/definitions/SerializedSetDeviceDefaultUserAction +``` + + + + +| Abstract | Extensible | Status | Identifiable | Custom Properties | Additional Properties | Access Restrictions | Defined In | +| :------------------ | ---------- | -------------- | ------------ | :---------------- | --------------------- | ------------------- | ------------------------------------------------------------------------------------------------- | +| Can be instantiated | No | Unknown status | No | Forbidden | Forbidden | none | [SerializedParentAction.schema.json\*](SerializedParentAction.schema.json "open original schema") | + +## SerializedSetDeviceDefaultUserAction Type + +`object` ([SerializedSetDeviceDefaultUserAction](serializedparentaction-definitions-serializedsetdevicedefaultuseraction.md)) + +# SerializedSetDeviceDefaultUserAction Properties + +| Property | Type | Required | Nullable | Defined by | +| :------------------------------ | -------- | -------- | -------------- | :---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | +| [type](#type) | `string` | Required | cannot be null | [SerializedParentAction](serializedparentaction-definitions-serializedsetdevicedefaultuseraction-properties-type.md "https://timelimit.io/SerializedParentAction#/definitions/SerializedSetDeviceDefaultUserAction/properties/type") | +| [deviceId](#deviceId) | `string` | Required | cannot be null | [SerializedParentAction](serializedparentaction-definitions-serializedsetdevicedefaultuseraction-properties-deviceid.md "https://timelimit.io/SerializedParentAction#/definitions/SerializedSetDeviceDefaultUserAction/properties/deviceId") | +| [defaultUserId](#defaultUserId) | `string` | Required | cannot be null | [SerializedParentAction](serializedparentaction-definitions-serializedsetdevicedefaultuseraction-properties-defaultuserid.md "https://timelimit.io/SerializedParentAction#/definitions/SerializedSetDeviceDefaultUserAction/properties/defaultUserId") | + +## type + + + + +`type` + +- is required +- Type: `string` +- cannot be null +- defined in: [SerializedParentAction](serializedparentaction-definitions-serializedsetdevicedefaultuseraction-properties-type.md "https://timelimit.io/SerializedParentAction#/definitions/SerializedSetDeviceDefaultUserAction/properties/type") + +### type Type + +`string` + +### type Constraints + +**enum**: the value of this property must be equal to one of the following values: + +| Value | Explanation | +| :-------------------------- | ----------- | +| `"SET_DEVICE_DEFAULT_USER"` | | + +## deviceId + + + + +`deviceId` + +- is required +- Type: `string` +- cannot be null +- defined in: [SerializedParentAction](serializedparentaction-definitions-serializedsetdevicedefaultuseraction-properties-deviceid.md "https://timelimit.io/SerializedParentAction#/definitions/SerializedSetDeviceDefaultUserAction/properties/deviceId") + +### deviceId Type + +`string` + +## defaultUserId + + + + +`defaultUserId` + +- is required +- Type: `string` +- cannot be null +- defined in: [SerializedParentAction](serializedparentaction-definitions-serializedsetdevicedefaultuseraction-properties-defaultuserid.md "https://timelimit.io/SerializedParentAction#/definitions/SerializedSetDeviceDefaultUserAction/properties/defaultUserId") + +### defaultUserId Type + +`string` diff --git a/docs/schema/serializedparentaction-definitions-serializedsetdevicedefaultusertimeoutaction-properties-deviceid.md b/docs/schema/serializedparentaction-definitions-serializedsetdevicedefaultusertimeoutaction-properties-deviceid.md new file mode 100644 index 0000000..6b31f08 --- /dev/null +++ b/docs/schema/serializedparentaction-definitions-serializedsetdevicedefaultusertimeoutaction-properties-deviceid.md @@ -0,0 +1,16 @@ +# Untitled string in SerializedParentAction Schema + +```txt +https://timelimit.io/SerializedParentAction#/definitions/SerializedSetDeviceDefaultUserTimeoutAction/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 | [SerializedParentAction.schema.json\*](SerializedParentAction.schema.json "open original schema") | + +## deviceId Type + +`string` diff --git a/docs/schema/serializedparentaction-definitions-serializedsetdevicedefaultusertimeoutaction-properties-timeout.md b/docs/schema/serializedparentaction-definitions-serializedsetdevicedefaultusertimeoutaction-properties-timeout.md new file mode 100644 index 0000000..7e4713e --- /dev/null +++ b/docs/schema/serializedparentaction-definitions-serializedsetdevicedefaultusertimeoutaction-properties-timeout.md @@ -0,0 +1,16 @@ +# Untitled number in SerializedParentAction Schema + +```txt +https://timelimit.io/SerializedParentAction#/definitions/SerializedSetDeviceDefaultUserTimeoutAction/properties/timeout +``` + + + + +| Abstract | Extensible | Status | Identifiable | Custom Properties | Additional Properties | Access Restrictions | Defined In | +| :------------------ | ---------- | -------------- | ----------------------- | :---------------- | --------------------- | ------------------- | ------------------------------------------------------------------------------------------------- | +| Can be instantiated | No | Unknown status | Unknown identifiability | Forbidden | Allowed | none | [SerializedParentAction.schema.json\*](SerializedParentAction.schema.json "open original schema") | + +## timeout Type + +`number` diff --git a/docs/schema/serializedparentaction-definitions-serializedsetdevicedefaultusertimeoutaction-properties-type.md b/docs/schema/serializedparentaction-definitions-serializedsetdevicedefaultusertimeoutaction-properties-type.md new file mode 100644 index 0000000..3a68d76 --- /dev/null +++ b/docs/schema/serializedparentaction-definitions-serializedsetdevicedefaultusertimeoutaction-properties-type.md @@ -0,0 +1,24 @@ +# Untitled string in SerializedParentAction Schema + +```txt +https://timelimit.io/SerializedParentAction#/definitions/SerializedSetDeviceDefaultUserTimeoutAction/properties/type +``` + + + + +| Abstract | Extensible | Status | Identifiable | Custom Properties | Additional Properties | Access Restrictions | Defined In | +| :------------------ | ---------- | -------------- | ----------------------- | :---------------- | --------------------- | ------------------- | ------------------------------------------------------------------------------------------------- | +| Can be instantiated | No | Unknown status | Unknown identifiability | Forbidden | Allowed | none | [SerializedParentAction.schema.json\*](SerializedParentAction.schema.json "open original schema") | + +## type Type + +`string` + +## type Constraints + +**enum**: the value of this property must be equal to one of the following values: + +| Value | Explanation | +| :---------------------------------- | ----------- | +| `"SET_DEVICE_DEFAULT_USER_TIMEOUT"` | | diff --git a/docs/schema/serializedparentaction-definitions-serializedsetdevicedefaultusertimeoutaction-properties.md b/docs/schema/serializedparentaction-definitions-serializedsetdevicedefaultusertimeoutaction-properties.md new file mode 100644 index 0000000..091ac14 --- /dev/null +++ b/docs/schema/serializedparentaction-definitions-serializedsetdevicedefaultusertimeoutaction-properties.md @@ -0,0 +1,16 @@ +# Untitled undefined type in SerializedParentAction Schema + +```txt +https://timelimit.io/SerializedParentAction#/definitions/SerializedSetDeviceDefaultUserTimeoutAction/properties +``` + + + + +| Abstract | Extensible | Status | Identifiable | Custom Properties | Additional Properties | Access Restrictions | Defined In | +| :------------------ | ---------- | -------------- | ----------------------- | :---------------- | --------------------- | ------------------- | ------------------------------------------------------------------------------------------------- | +| Can be instantiated | No | Unknown status | Unknown identifiability | Forbidden | Allowed | none | [SerializedParentAction.schema.json\*](SerializedParentAction.schema.json "open original schema") | + +## properties Type + +unknown diff --git a/docs/schema/serializedparentaction-definitions-serializedsetdevicedefaultusertimeoutaction.md b/docs/schema/serializedparentaction-definitions-serializedsetdevicedefaultusertimeoutaction.md new file mode 100644 index 0000000..8b8ad8c --- /dev/null +++ b/docs/schema/serializedparentaction-definitions-serializedsetdevicedefaultusertimeoutaction.md @@ -0,0 +1,80 @@ +# SerializedSetDeviceDefaultUserTimeoutAction Schema + +```txt +https://timelimit.io/SerializedParentAction#/definitions/SerializedSetDeviceDefaultUserTimeoutAction +``` + + + + +| Abstract | Extensible | Status | Identifiable | Custom Properties | Additional Properties | Access Restrictions | Defined In | +| :------------------ | ---------- | -------------- | ------------ | :---------------- | --------------------- | ------------------- | ------------------------------------------------------------------------------------------------- | +| Can be instantiated | No | Unknown status | No | Forbidden | Forbidden | none | [SerializedParentAction.schema.json\*](SerializedParentAction.schema.json "open original schema") | + +## SerializedSetDeviceDefaultUserTimeoutAction Type + +`object` ([SerializedSetDeviceDefaultUserTimeoutAction](serializedparentaction-definitions-serializedsetdevicedefaultusertimeoutaction.md)) + +# SerializedSetDeviceDefaultUserTimeoutAction Properties + +| Property | Type | Required | Nullable | Defined by | +| :-------------------- | -------- | -------- | -------------- | :-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | +| [type](#type) | `string` | Required | cannot be null | [SerializedParentAction](serializedparentaction-definitions-serializedsetdevicedefaultusertimeoutaction-properties-type.md "https://timelimit.io/SerializedParentAction#/definitions/SerializedSetDeviceDefaultUserTimeoutAction/properties/type") | +| [deviceId](#deviceId) | `string` | Required | cannot be null | [SerializedParentAction](serializedparentaction-definitions-serializedsetdevicedefaultusertimeoutaction-properties-deviceid.md "https://timelimit.io/SerializedParentAction#/definitions/SerializedSetDeviceDefaultUserTimeoutAction/properties/deviceId") | +| [timeout](#timeout) | `number` | Required | cannot be null | [SerializedParentAction](serializedparentaction-definitions-serializedsetdevicedefaultusertimeoutaction-properties-timeout.md "https://timelimit.io/SerializedParentAction#/definitions/SerializedSetDeviceDefaultUserTimeoutAction/properties/timeout") | + +## type + + + + +`type` + +- is required +- Type: `string` +- cannot be null +- defined in: [SerializedParentAction](serializedparentaction-definitions-serializedsetdevicedefaultusertimeoutaction-properties-type.md "https://timelimit.io/SerializedParentAction#/definitions/SerializedSetDeviceDefaultUserTimeoutAction/properties/type") + +### type Type + +`string` + +### type Constraints + +**enum**: the value of this property must be equal to one of the following values: + +| Value | Explanation | +| :---------------------------------- | ----------- | +| `"SET_DEVICE_DEFAULT_USER_TIMEOUT"` | | + +## deviceId + + + + +`deviceId` + +- is required +- Type: `string` +- cannot be null +- defined in: [SerializedParentAction](serializedparentaction-definitions-serializedsetdevicedefaultusertimeoutaction-properties-deviceid.md "https://timelimit.io/SerializedParentAction#/definitions/SerializedSetDeviceDefaultUserTimeoutAction/properties/deviceId") + +### deviceId Type + +`string` + +## timeout + + + + +`timeout` + +- is required +- Type: `number` +- cannot be null +- defined in: [SerializedParentAction](serializedparentaction-definitions-serializedsetdevicedefaultusertimeoutaction-properties-timeout.md "https://timelimit.io/SerializedParentAction#/definitions/SerializedSetDeviceDefaultUserTimeoutAction/properties/timeout") + +### timeout Type + +`number` diff --git a/docs/schema/serializedparentaction-definitions-serializedsetdeviceuseraction-properties-deviceid.md b/docs/schema/serializedparentaction-definitions-serializedsetdeviceuseraction-properties-deviceid.md new file mode 100644 index 0000000..17f5d40 --- /dev/null +++ b/docs/schema/serializedparentaction-definitions-serializedsetdeviceuseraction-properties-deviceid.md @@ -0,0 +1,16 @@ +# Untitled string in SerializedParentAction Schema + +```txt +https://timelimit.io/SerializedParentAction#/definitions/SerializedSetDeviceUserAction/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 | [SerializedParentAction.schema.json\*](SerializedParentAction.schema.json "open original schema") | + +## deviceId Type + +`string` diff --git a/docs/schema/serializedparentaction-definitions-serializedsetdeviceuseraction-properties-type.md b/docs/schema/serializedparentaction-definitions-serializedsetdeviceuseraction-properties-type.md new file mode 100644 index 0000000..8274628 --- /dev/null +++ b/docs/schema/serializedparentaction-definitions-serializedsetdeviceuseraction-properties-type.md @@ -0,0 +1,24 @@ +# Untitled string in SerializedParentAction Schema + +```txt +https://timelimit.io/SerializedParentAction#/definitions/SerializedSetDeviceUserAction/properties/type +``` + + + + +| Abstract | Extensible | Status | Identifiable | Custom Properties | Additional Properties | Access Restrictions | Defined In | +| :------------------ | ---------- | -------------- | ----------------------- | :---------------- | --------------------- | ------------------- | ------------------------------------------------------------------------------------------------- | +| Can be instantiated | No | Unknown status | Unknown identifiability | Forbidden | Allowed | none | [SerializedParentAction.schema.json\*](SerializedParentAction.schema.json "open original schema") | + +## type Type + +`string` + +## type Constraints + +**enum**: the value of this property must be equal to one of the following values: + +| Value | Explanation | +| :------------------ | ----------- | +| `"SET_DEVICE_USER"` | | diff --git a/docs/schema/serializedparentaction-definitions-serializedsetdeviceuseraction-properties-userid.md b/docs/schema/serializedparentaction-definitions-serializedsetdeviceuseraction-properties-userid.md new file mode 100644 index 0000000..f5fa1d7 --- /dev/null +++ b/docs/schema/serializedparentaction-definitions-serializedsetdeviceuseraction-properties-userid.md @@ -0,0 +1,16 @@ +# Untitled string in SerializedParentAction Schema + +```txt +https://timelimit.io/SerializedParentAction#/definitions/SerializedSetDeviceUserAction/properties/userId +``` + + + + +| Abstract | Extensible | Status | Identifiable | Custom Properties | Additional Properties | Access Restrictions | Defined In | +| :------------------ | ---------- | -------------- | ----------------------- | :---------------- | --------------------- | ------------------- | ------------------------------------------------------------------------------------------------- | +| Can be instantiated | No | Unknown status | Unknown identifiability | Forbidden | Allowed | none | [SerializedParentAction.schema.json\*](SerializedParentAction.schema.json "open original schema") | + +## userId Type + +`string` diff --git a/docs/schema/serializedparentaction-definitions-serializedsetdeviceuseraction-properties.md b/docs/schema/serializedparentaction-definitions-serializedsetdeviceuseraction-properties.md new file mode 100644 index 0000000..3dbb3b6 --- /dev/null +++ b/docs/schema/serializedparentaction-definitions-serializedsetdeviceuseraction-properties.md @@ -0,0 +1,16 @@ +# Untitled undefined type in SerializedParentAction Schema + +```txt +https://timelimit.io/SerializedParentAction#/definitions/SerializedSetDeviceUserAction/properties +``` + + + + +| Abstract | Extensible | Status | Identifiable | Custom Properties | Additional Properties | Access Restrictions | Defined In | +| :------------------ | ---------- | -------------- | ----------------------- | :---------------- | --------------------- | ------------------- | ------------------------------------------------------------------------------------------------- | +| Can be instantiated | No | Unknown status | Unknown identifiability | Forbidden | Allowed | none | [SerializedParentAction.schema.json\*](SerializedParentAction.schema.json "open original schema") | + +## properties Type + +unknown diff --git a/docs/schema/serializedparentaction-definitions-serializedsetdeviceuseraction.md b/docs/schema/serializedparentaction-definitions-serializedsetdeviceuseraction.md new file mode 100644 index 0000000..2e96015 --- /dev/null +++ b/docs/schema/serializedparentaction-definitions-serializedsetdeviceuseraction.md @@ -0,0 +1,80 @@ +# SerializedSetDeviceUserAction Schema + +```txt +https://timelimit.io/SerializedParentAction#/definitions/SerializedSetDeviceUserAction +``` + + + + +| Abstract | Extensible | Status | Identifiable | Custom Properties | Additional Properties | Access Restrictions | Defined In | +| :------------------ | ---------- | -------------- | ------------ | :---------------- | --------------------- | ------------------- | ------------------------------------------------------------------------------------------------- | +| Can be instantiated | No | Unknown status | No | Forbidden | Forbidden | none | [SerializedParentAction.schema.json\*](SerializedParentAction.schema.json "open original schema") | + +## SerializedSetDeviceUserAction Type + +`object` ([SerializedSetDeviceUserAction](serializedparentaction-definitions-serializedsetdeviceuseraction.md)) + +# SerializedSetDeviceUserAction Properties + +| Property | Type | Required | Nullable | Defined by | +| :-------------------- | -------- | -------- | -------------- | :---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | +| [type](#type) | `string` | Required | cannot be null | [SerializedParentAction](serializedparentaction-definitions-serializedsetdeviceuseraction-properties-type.md "https://timelimit.io/SerializedParentAction#/definitions/SerializedSetDeviceUserAction/properties/type") | +| [deviceId](#deviceId) | `string` | Required | cannot be null | [SerializedParentAction](serializedparentaction-definitions-serializedsetdeviceuseraction-properties-deviceid.md "https://timelimit.io/SerializedParentAction#/definitions/SerializedSetDeviceUserAction/properties/deviceId") | +| [userId](#userId) | `string` | Required | cannot be null | [SerializedParentAction](serializedparentaction-definitions-serializedsetdeviceuseraction-properties-userid.md "https://timelimit.io/SerializedParentAction#/definitions/SerializedSetDeviceUserAction/properties/userId") | + +## type + + + + +`type` + +- is required +- Type: `string` +- cannot be null +- defined in: [SerializedParentAction](serializedparentaction-definitions-serializedsetdeviceuseraction-properties-type.md "https://timelimit.io/SerializedParentAction#/definitions/SerializedSetDeviceUserAction/properties/type") + +### type Type + +`string` + +### type Constraints + +**enum**: the value of this property must be equal to one of the following values: + +| Value | Explanation | +| :------------------ | ----------- | +| `"SET_DEVICE_USER"` | | + +## deviceId + + + + +`deviceId` + +- is required +- Type: `string` +- cannot be null +- defined in: [SerializedParentAction](serializedparentaction-definitions-serializedsetdeviceuseraction-properties-deviceid.md "https://timelimit.io/SerializedParentAction#/definitions/SerializedSetDeviceUserAction/properties/deviceId") + +### deviceId Type + +`string` + +## userId + + + + +`userId` + +- is required +- Type: `string` +- cannot be null +- defined in: [SerializedParentAction](serializedparentaction-definitions-serializedsetdeviceuseraction-properties-userid.md "https://timelimit.io/SerializedParentAction#/definitions/SerializedSetDeviceUserAction/properties/userId") + +### userId Type + +`string` diff --git a/docs/schema/serializedparentaction-definitions-serializedsetkeepsignedinaction-properties-deviceid.md b/docs/schema/serializedparentaction-definitions-serializedsetkeepsignedinaction-properties-deviceid.md new file mode 100644 index 0000000..9f2662a --- /dev/null +++ b/docs/schema/serializedparentaction-definitions-serializedsetkeepsignedinaction-properties-deviceid.md @@ -0,0 +1,16 @@ +# Untitled string in SerializedParentAction Schema + +```txt +https://timelimit.io/SerializedParentAction#/definitions/SerializedSetKeepSignedInAction/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 | [SerializedParentAction.schema.json\*](SerializedParentAction.schema.json "open original schema") | + +## deviceId Type + +`string` diff --git a/docs/schema/serializedparentaction-definitions-serializedsetkeepsignedinaction-properties-keepsignedin.md b/docs/schema/serializedparentaction-definitions-serializedsetkeepsignedinaction-properties-keepsignedin.md new file mode 100644 index 0000000..3f76b18 --- /dev/null +++ b/docs/schema/serializedparentaction-definitions-serializedsetkeepsignedinaction-properties-keepsignedin.md @@ -0,0 +1,16 @@ +# Untitled boolean in SerializedParentAction Schema + +```txt +https://timelimit.io/SerializedParentAction#/definitions/SerializedSetKeepSignedInAction/properties/keepSignedIn +``` + + + + +| Abstract | Extensible | Status | Identifiable | Custom Properties | Additional Properties | Access Restrictions | Defined In | +| :------------------ | ---------- | -------------- | ----------------------- | :---------------- | --------------------- | ------------------- | ------------------------------------------------------------------------------------------------- | +| Can be instantiated | No | Unknown status | Unknown identifiability | Forbidden | Allowed | none | [SerializedParentAction.schema.json\*](SerializedParentAction.schema.json "open original schema") | + +## keepSignedIn Type + +`boolean` diff --git a/docs/schema/serializedparentaction-definitions-serializedsetkeepsignedinaction-properties-type.md b/docs/schema/serializedparentaction-definitions-serializedsetkeepsignedinaction-properties-type.md new file mode 100644 index 0000000..028e21b --- /dev/null +++ b/docs/schema/serializedparentaction-definitions-serializedsetkeepsignedinaction-properties-type.md @@ -0,0 +1,24 @@ +# Untitled string in SerializedParentAction Schema + +```txt +https://timelimit.io/SerializedParentAction#/definitions/SerializedSetKeepSignedInAction/properties/type +``` + + + + +| Abstract | Extensible | Status | Identifiable | Custom Properties | Additional Properties | Access Restrictions | Defined In | +| :------------------ | ---------- | -------------- | ----------------------- | :---------------- | --------------------- | ------------------- | ------------------------------------------------------------------------------------------------- | +| Can be instantiated | No | Unknown status | Unknown identifiability | Forbidden | Allowed | none | [SerializedParentAction.schema.json\*](SerializedParentAction.schema.json "open original schema") | + +## type Type + +`string` + +## type Constraints + +**enum**: the value of this property must be equal to one of the following values: + +| Value | Explanation | +| :--------------------- | ----------- | +| `"SET_KEEP_SIGNED_IN"` | | diff --git a/docs/schema/serializedparentaction-definitions-serializedsetkeepsignedinaction-properties.md b/docs/schema/serializedparentaction-definitions-serializedsetkeepsignedinaction-properties.md new file mode 100644 index 0000000..f88676d --- /dev/null +++ b/docs/schema/serializedparentaction-definitions-serializedsetkeepsignedinaction-properties.md @@ -0,0 +1,16 @@ +# Untitled undefined type in SerializedParentAction Schema + +```txt +https://timelimit.io/SerializedParentAction#/definitions/SerializedSetKeepSignedInAction/properties +``` + + + + +| Abstract | Extensible | Status | Identifiable | Custom Properties | Additional Properties | Access Restrictions | Defined In | +| :------------------ | ---------- | -------------- | ----------------------- | :---------------- | --------------------- | ------------------- | ------------------------------------------------------------------------------------------------- | +| Can be instantiated | No | Unknown status | Unknown identifiability | Forbidden | Allowed | none | [SerializedParentAction.schema.json\*](SerializedParentAction.schema.json "open original schema") | + +## properties Type + +unknown diff --git a/docs/schema/serializedparentaction-definitions-serializedsetkeepsignedinaction.md b/docs/schema/serializedparentaction-definitions-serializedsetkeepsignedinaction.md new file mode 100644 index 0000000..1359277 --- /dev/null +++ b/docs/schema/serializedparentaction-definitions-serializedsetkeepsignedinaction.md @@ -0,0 +1,80 @@ +# SerializedSetKeepSignedInAction Schema + +```txt +https://timelimit.io/SerializedParentAction#/definitions/SerializedSetKeepSignedInAction +``` + + + + +| Abstract | Extensible | Status | Identifiable | Custom Properties | Additional Properties | Access Restrictions | Defined In | +| :------------------ | ---------- | -------------- | ------------ | :---------------- | --------------------- | ------------------- | ------------------------------------------------------------------------------------------------- | +| Can be instantiated | No | Unknown status | No | Forbidden | Forbidden | none | [SerializedParentAction.schema.json\*](SerializedParentAction.schema.json "open original schema") | + +## SerializedSetKeepSignedInAction Type + +`object` ([SerializedSetKeepSignedInAction](serializedparentaction-definitions-serializedsetkeepsignedinaction.md)) + +# SerializedSetKeepSignedInAction Properties + +| Property | Type | Required | Nullable | Defined by | +| :---------------------------- | --------- | -------- | -------------- | :---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | +| [type](#type) | `string` | Required | cannot be null | [SerializedParentAction](serializedparentaction-definitions-serializedsetkeepsignedinaction-properties-type.md "https://timelimit.io/SerializedParentAction#/definitions/SerializedSetKeepSignedInAction/properties/type") | +| [deviceId](#deviceId) | `string` | Required | cannot be null | [SerializedParentAction](serializedparentaction-definitions-serializedsetkeepsignedinaction-properties-deviceid.md "https://timelimit.io/SerializedParentAction#/definitions/SerializedSetKeepSignedInAction/properties/deviceId") | +| [keepSignedIn](#keepSignedIn) | `boolean` | Required | cannot be null | [SerializedParentAction](serializedparentaction-definitions-serializedsetkeepsignedinaction-properties-keepsignedin.md "https://timelimit.io/SerializedParentAction#/definitions/SerializedSetKeepSignedInAction/properties/keepSignedIn") | + +## type + + + + +`type` + +- is required +- Type: `string` +- cannot be null +- defined in: [SerializedParentAction](serializedparentaction-definitions-serializedsetkeepsignedinaction-properties-type.md "https://timelimit.io/SerializedParentAction#/definitions/SerializedSetKeepSignedInAction/properties/type") + +### type Type + +`string` + +### type Constraints + +**enum**: the value of this property must be equal to one of the following values: + +| Value | Explanation | +| :--------------------- | ----------- | +| `"SET_KEEP_SIGNED_IN"` | | + +## deviceId + + + + +`deviceId` + +- is required +- Type: `string` +- cannot be null +- defined in: [SerializedParentAction](serializedparentaction-definitions-serializedsetkeepsignedinaction-properties-deviceid.md "https://timelimit.io/SerializedParentAction#/definitions/SerializedSetKeepSignedInAction/properties/deviceId") + +### deviceId Type + +`string` + +## keepSignedIn + + + + +`keepSignedIn` + +- is required +- Type: `boolean` +- cannot be null +- defined in: [SerializedParentAction](serializedparentaction-definitions-serializedsetkeepsignedinaction-properties-keepsignedin.md "https://timelimit.io/SerializedParentAction#/definitions/SerializedSetKeepSignedInAction/properties/keepSignedIn") + +### keepSignedIn Type + +`boolean` diff --git a/docs/schema/serializedparentaction-definitions-serializedsetparentcategoryaction-properties-categoryid.md b/docs/schema/serializedparentaction-definitions-serializedsetparentcategoryaction-properties-categoryid.md new file mode 100644 index 0000000..15799c1 --- /dev/null +++ b/docs/schema/serializedparentaction-definitions-serializedsetparentcategoryaction-properties-categoryid.md @@ -0,0 +1,16 @@ +# Untitled string in SerializedParentAction Schema + +```txt +https://timelimit.io/SerializedParentAction#/definitions/SerializedSetParentCategoryAction/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 | [SerializedParentAction.schema.json\*](SerializedParentAction.schema.json "open original schema") | + +## categoryId Type + +`string` diff --git a/docs/schema/serializedparentaction-definitions-serializedsetparentcategoryaction-properties-parentcategory.md b/docs/schema/serializedparentaction-definitions-serializedsetparentcategoryaction-properties-parentcategory.md new file mode 100644 index 0000000..ed25cf4 --- /dev/null +++ b/docs/schema/serializedparentaction-definitions-serializedsetparentcategoryaction-properties-parentcategory.md @@ -0,0 +1,16 @@ +# Untitled string in SerializedParentAction Schema + +```txt +https://timelimit.io/SerializedParentAction#/definitions/SerializedSetParentCategoryAction/properties/parentCategory +``` + + + + +| Abstract | Extensible | Status | Identifiable | Custom Properties | Additional Properties | Access Restrictions | Defined In | +| :------------------ | ---------- | -------------- | ----------------------- | :---------------- | --------------------- | ------------------- | ------------------------------------------------------------------------------------------------- | +| Can be instantiated | No | Unknown status | Unknown identifiability | Forbidden | Allowed | none | [SerializedParentAction.schema.json\*](SerializedParentAction.schema.json "open original schema") | + +## parentCategory Type + +`string` diff --git a/docs/schema/serializedparentaction-definitions-serializedsetparentcategoryaction-properties-type.md b/docs/schema/serializedparentaction-definitions-serializedsetparentcategoryaction-properties-type.md new file mode 100644 index 0000000..47494f9 --- /dev/null +++ b/docs/schema/serializedparentaction-definitions-serializedsetparentcategoryaction-properties-type.md @@ -0,0 +1,24 @@ +# Untitled string in SerializedParentAction Schema + +```txt +https://timelimit.io/SerializedParentAction#/definitions/SerializedSetParentCategoryAction/properties/type +``` + + + + +| Abstract | Extensible | Status | Identifiable | Custom Properties | Additional Properties | Access Restrictions | Defined In | +| :------------------ | ---------- | -------------- | ----------------------- | :---------------- | --------------------- | ------------------- | ------------------------------------------------------------------------------------------------- | +| Can be instantiated | No | Unknown status | Unknown identifiability | Forbidden | Allowed | none | [SerializedParentAction.schema.json\*](SerializedParentAction.schema.json "open original schema") | + +## type Type + +`string` + +## type Constraints + +**enum**: the value of this property must be equal to one of the following values: + +| Value | Explanation | +| :---------------------- | ----------- | +| `"SET_PARENT_CATEGORY"` | | diff --git a/docs/schema/serializedparentaction-definitions-serializedsetparentcategoryaction-properties.md b/docs/schema/serializedparentaction-definitions-serializedsetparentcategoryaction-properties.md new file mode 100644 index 0000000..6f9978e --- /dev/null +++ b/docs/schema/serializedparentaction-definitions-serializedsetparentcategoryaction-properties.md @@ -0,0 +1,16 @@ +# Untitled undefined type in SerializedParentAction Schema + +```txt +https://timelimit.io/SerializedParentAction#/definitions/SerializedSetParentCategoryAction/properties +``` + + + + +| Abstract | Extensible | Status | Identifiable | Custom Properties | Additional Properties | Access Restrictions | Defined In | +| :------------------ | ---------- | -------------- | ----------------------- | :---------------- | --------------------- | ------------------- | ------------------------------------------------------------------------------------------------- | +| Can be instantiated | No | Unknown status | Unknown identifiability | Forbidden | Allowed | none | [SerializedParentAction.schema.json\*](SerializedParentAction.schema.json "open original schema") | + +## properties Type + +unknown diff --git a/docs/schema/serializedparentaction-definitions-serializedsetparentcategoryaction.md b/docs/schema/serializedparentaction-definitions-serializedsetparentcategoryaction.md new file mode 100644 index 0000000..036916e --- /dev/null +++ b/docs/schema/serializedparentaction-definitions-serializedsetparentcategoryaction.md @@ -0,0 +1,80 @@ +# SerializedSetParentCategoryAction Schema + +```txt +https://timelimit.io/SerializedParentAction#/definitions/SerializedSetParentCategoryAction +``` + + + + +| Abstract | Extensible | Status | Identifiable | Custom Properties | Additional Properties | Access Restrictions | Defined In | +| :------------------ | ---------- | -------------- | ------------ | :---------------- | --------------------- | ------------------- | ------------------------------------------------------------------------------------------------- | +| Can be instantiated | No | Unknown status | No | Forbidden | Forbidden | none | [SerializedParentAction.schema.json\*](SerializedParentAction.schema.json "open original schema") | + +## SerializedSetParentCategoryAction Type + +`object` ([SerializedSetParentCategoryAction](serializedparentaction-definitions-serializedsetparentcategoryaction.md)) + +# SerializedSetParentCategoryAction Properties + +| Property | Type | Required | Nullable | Defined by | +| :-------------------------------- | -------- | -------- | -------------- | :------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ | +| [type](#type) | `string` | Required | cannot be null | [SerializedParentAction](serializedparentaction-definitions-serializedsetparentcategoryaction-properties-type.md "https://timelimit.io/SerializedParentAction#/definitions/SerializedSetParentCategoryAction/properties/type") | +| [categoryId](#categoryId) | `string` | Required | cannot be null | [SerializedParentAction](serializedparentaction-definitions-serializedsetparentcategoryaction-properties-categoryid.md "https://timelimit.io/SerializedParentAction#/definitions/SerializedSetParentCategoryAction/properties/categoryId") | +| [parentCategory](#parentCategory) | `string` | Required | cannot be null | [SerializedParentAction](serializedparentaction-definitions-serializedsetparentcategoryaction-properties-parentcategory.md "https://timelimit.io/SerializedParentAction#/definitions/SerializedSetParentCategoryAction/properties/parentCategory") | + +## type + + + + +`type` + +- is required +- Type: `string` +- cannot be null +- defined in: [SerializedParentAction](serializedparentaction-definitions-serializedsetparentcategoryaction-properties-type.md "https://timelimit.io/SerializedParentAction#/definitions/SerializedSetParentCategoryAction/properties/type") + +### type Type + +`string` + +### type Constraints + +**enum**: the value of this property must be equal to one of the following values: + +| Value | Explanation | +| :---------------------- | ----------- | +| `"SET_PARENT_CATEGORY"` | | + +## categoryId + + + + +`categoryId` + +- is required +- Type: `string` +- cannot be null +- defined in: [SerializedParentAction](serializedparentaction-definitions-serializedsetparentcategoryaction-properties-categoryid.md "https://timelimit.io/SerializedParentAction#/definitions/SerializedSetParentCategoryAction/properties/categoryId") + +### categoryId Type + +`string` + +## parentCategory + + + + +`parentCategory` + +- is required +- Type: `string` +- cannot be null +- defined in: [SerializedParentAction](serializedparentaction-definitions-serializedsetparentcategoryaction-properties-parentcategory.md "https://timelimit.io/SerializedParentAction#/definitions/SerializedSetParentCategoryAction/properties/parentCategory") + +### parentCategory Type + +`string` diff --git a/docs/schema/serializedparentaction-definitions-serializedsetrelaxprimarydeviceaction-properties-relax.md b/docs/schema/serializedparentaction-definitions-serializedsetrelaxprimarydeviceaction-properties-relax.md new file mode 100644 index 0000000..4cbfc59 --- /dev/null +++ b/docs/schema/serializedparentaction-definitions-serializedsetrelaxprimarydeviceaction-properties-relax.md @@ -0,0 +1,16 @@ +# Untitled boolean in SerializedParentAction Schema + +```txt +https://timelimit.io/SerializedParentAction#/definitions/SerializedSetRelaxPrimaryDeviceAction/properties/relax +``` + + + + +| Abstract | Extensible | Status | Identifiable | Custom Properties | Additional Properties | Access Restrictions | Defined In | +| :------------------ | ---------- | -------------- | ----------------------- | :---------------- | --------------------- | ------------------- | ------------------------------------------------------------------------------------------------- | +| Can be instantiated | No | Unknown status | Unknown identifiability | Forbidden | Allowed | none | [SerializedParentAction.schema.json\*](SerializedParentAction.schema.json "open original schema") | + +## relax Type + +`boolean` diff --git a/docs/schema/serializedparentaction-definitions-serializedsetrelaxprimarydeviceaction-properties-type.md b/docs/schema/serializedparentaction-definitions-serializedsetrelaxprimarydeviceaction-properties-type.md new file mode 100644 index 0000000..c53becd --- /dev/null +++ b/docs/schema/serializedparentaction-definitions-serializedsetrelaxprimarydeviceaction-properties-type.md @@ -0,0 +1,24 @@ +# Untitled string in SerializedParentAction Schema + +```txt +https://timelimit.io/SerializedParentAction#/definitions/SerializedSetRelaxPrimaryDeviceAction/properties/type +``` + + + + +| Abstract | Extensible | Status | Identifiable | Custom Properties | Additional Properties | Access Restrictions | Defined In | +| :------------------ | ---------- | -------------- | ----------------------- | :---------------- | --------------------- | ------------------- | ------------------------------------------------------------------------------------------------- | +| Can be instantiated | No | Unknown status | Unknown identifiability | Forbidden | Allowed | none | [SerializedParentAction.schema.json\*](SerializedParentAction.schema.json "open original schema") | + +## type Type + +`string` + +## type Constraints + +**enum**: the value of this property must be equal to one of the following values: + +| Value | Explanation | +| :--------------------------- | ----------- | +| `"SET_RELAX_PRIMARY_DEVICE"` | | diff --git a/docs/schema/serializedparentaction-definitions-serializedsetrelaxprimarydeviceaction-properties-userid.md b/docs/schema/serializedparentaction-definitions-serializedsetrelaxprimarydeviceaction-properties-userid.md new file mode 100644 index 0000000..8549f36 --- /dev/null +++ b/docs/schema/serializedparentaction-definitions-serializedsetrelaxprimarydeviceaction-properties-userid.md @@ -0,0 +1,16 @@ +# Untitled string in SerializedParentAction Schema + +```txt +https://timelimit.io/SerializedParentAction#/definitions/SerializedSetRelaxPrimaryDeviceAction/properties/userId +``` + + + + +| Abstract | Extensible | Status | Identifiable | Custom Properties | Additional Properties | Access Restrictions | Defined In | +| :------------------ | ---------- | -------------- | ----------------------- | :---------------- | --------------------- | ------------------- | ------------------------------------------------------------------------------------------------- | +| Can be instantiated | No | Unknown status | Unknown identifiability | Forbidden | Allowed | none | [SerializedParentAction.schema.json\*](SerializedParentAction.schema.json "open original schema") | + +## userId Type + +`string` diff --git a/docs/schema/serializedparentaction-definitions-serializedsetrelaxprimarydeviceaction-properties.md b/docs/schema/serializedparentaction-definitions-serializedsetrelaxprimarydeviceaction-properties.md new file mode 100644 index 0000000..2bd8da6 --- /dev/null +++ b/docs/schema/serializedparentaction-definitions-serializedsetrelaxprimarydeviceaction-properties.md @@ -0,0 +1,16 @@ +# Untitled undefined type in SerializedParentAction Schema + +```txt +https://timelimit.io/SerializedParentAction#/definitions/SerializedSetRelaxPrimaryDeviceAction/properties +``` + + + + +| Abstract | Extensible | Status | Identifiable | Custom Properties | Additional Properties | Access Restrictions | Defined In | +| :------------------ | ---------- | -------------- | ----------------------- | :---------------- | --------------------- | ------------------- | ------------------------------------------------------------------------------------------------- | +| Can be instantiated | No | Unknown status | Unknown identifiability | Forbidden | Allowed | none | [SerializedParentAction.schema.json\*](SerializedParentAction.schema.json "open original schema") | + +## properties Type + +unknown diff --git a/docs/schema/serializedparentaction-definitions-serializedsetrelaxprimarydeviceaction.md b/docs/schema/serializedparentaction-definitions-serializedsetrelaxprimarydeviceaction.md new file mode 100644 index 0000000..6421ae5 --- /dev/null +++ b/docs/schema/serializedparentaction-definitions-serializedsetrelaxprimarydeviceaction.md @@ -0,0 +1,80 @@ +# SerializedSetRelaxPrimaryDeviceAction Schema + +```txt +https://timelimit.io/SerializedParentAction#/definitions/SerializedSetRelaxPrimaryDeviceAction +``` + + + + +| Abstract | Extensible | Status | Identifiable | Custom Properties | Additional Properties | Access Restrictions | Defined In | +| :------------------ | ---------- | -------------- | ------------ | :---------------- | --------------------- | ------------------- | ------------------------------------------------------------------------------------------------- | +| Can be instantiated | No | Unknown status | No | Forbidden | Forbidden | none | [SerializedParentAction.schema.json\*](SerializedParentAction.schema.json "open original schema") | + +## SerializedSetRelaxPrimaryDeviceAction Type + +`object` ([SerializedSetRelaxPrimaryDeviceAction](serializedparentaction-definitions-serializedsetrelaxprimarydeviceaction.md)) + +# SerializedSetRelaxPrimaryDeviceAction Properties + +| Property | Type | Required | Nullable | Defined by | +| :---------------- | --------- | -------- | -------------- | :---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | +| [type](#type) | `string` | Required | cannot be null | [SerializedParentAction](serializedparentaction-definitions-serializedsetrelaxprimarydeviceaction-properties-type.md "https://timelimit.io/SerializedParentAction#/definitions/SerializedSetRelaxPrimaryDeviceAction/properties/type") | +| [userId](#userId) | `string` | Required | cannot be null | [SerializedParentAction](serializedparentaction-definitions-serializedsetrelaxprimarydeviceaction-properties-userid.md "https://timelimit.io/SerializedParentAction#/definitions/SerializedSetRelaxPrimaryDeviceAction/properties/userId") | +| [relax](#relax) | `boolean` | Required | cannot be null | [SerializedParentAction](serializedparentaction-definitions-serializedsetrelaxprimarydeviceaction-properties-relax.md "https://timelimit.io/SerializedParentAction#/definitions/SerializedSetRelaxPrimaryDeviceAction/properties/relax") | + +## type + + + + +`type` + +- is required +- Type: `string` +- cannot be null +- defined in: [SerializedParentAction](serializedparentaction-definitions-serializedsetrelaxprimarydeviceaction-properties-type.md "https://timelimit.io/SerializedParentAction#/definitions/SerializedSetRelaxPrimaryDeviceAction/properties/type") + +### type Type + +`string` + +### type Constraints + +**enum**: the value of this property must be equal to one of the following values: + +| Value | Explanation | +| :--------------------------- | ----------- | +| `"SET_RELAX_PRIMARY_DEVICE"` | | + +## userId + + + + +`userId` + +- is required +- Type: `string` +- cannot be null +- defined in: [SerializedParentAction](serializedparentaction-definitions-serializedsetrelaxprimarydeviceaction-properties-userid.md "https://timelimit.io/SerializedParentAction#/definitions/SerializedSetRelaxPrimaryDeviceAction/properties/userId") + +### userId Type + +`string` + +## relax + + + + +`relax` + +- is required +- Type: `boolean` +- cannot be null +- defined in: [SerializedParentAction](serializedparentaction-definitions-serializedsetrelaxprimarydeviceaction-properties-relax.md "https://timelimit.io/SerializedParentAction#/definitions/SerializedSetRelaxPrimaryDeviceAction/properties/relax") + +### relax Type + +`boolean` diff --git a/docs/schema/serializedparentaction-definitions-serializedsetsenddeviceconnected-properties-deviceid.md b/docs/schema/serializedparentaction-definitions-serializedsetsenddeviceconnected-properties-deviceid.md new file mode 100644 index 0000000..af23364 --- /dev/null +++ b/docs/schema/serializedparentaction-definitions-serializedsetsenddeviceconnected-properties-deviceid.md @@ -0,0 +1,16 @@ +# Untitled string in SerializedParentAction Schema + +```txt +https://timelimit.io/SerializedParentAction#/definitions/SerializedSetSendDeviceConnected/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 | [SerializedParentAction.schema.json\*](SerializedParentAction.schema.json "open original schema") | + +## deviceId Type + +`string` diff --git a/docs/schema/serializedparentaction-definitions-serializedsetsenddeviceconnected-properties-enable.md b/docs/schema/serializedparentaction-definitions-serializedsetsenddeviceconnected-properties-enable.md new file mode 100644 index 0000000..d36a971 --- /dev/null +++ b/docs/schema/serializedparentaction-definitions-serializedsetsenddeviceconnected-properties-enable.md @@ -0,0 +1,16 @@ +# Untitled boolean in SerializedParentAction Schema + +```txt +https://timelimit.io/SerializedParentAction#/definitions/SerializedSetSendDeviceConnected/properties/enable +``` + + + + +| Abstract | Extensible | Status | Identifiable | Custom Properties | Additional Properties | Access Restrictions | Defined In | +| :------------------ | ---------- | -------------- | ----------------------- | :---------------- | --------------------- | ------------------- | ------------------------------------------------------------------------------------------------- | +| Can be instantiated | No | Unknown status | Unknown identifiability | Forbidden | Allowed | none | [SerializedParentAction.schema.json\*](SerializedParentAction.schema.json "open original schema") | + +## enable Type + +`boolean` diff --git a/docs/schema/serializedparentaction-definitions-serializedsetsenddeviceconnected-properties-type.md b/docs/schema/serializedparentaction-definitions-serializedsetsenddeviceconnected-properties-type.md new file mode 100644 index 0000000..c91e149 --- /dev/null +++ b/docs/schema/serializedparentaction-definitions-serializedsetsenddeviceconnected-properties-type.md @@ -0,0 +1,24 @@ +# Untitled string in SerializedParentAction Schema + +```txt +https://timelimit.io/SerializedParentAction#/definitions/SerializedSetSendDeviceConnected/properties/type +``` + + + + +| Abstract | Extensible | Status | Identifiable | Custom Properties | Additional Properties | Access Restrictions | Defined In | +| :------------------ | ---------- | -------------- | ----------------------- | :---------------- | --------------------- | ------------------- | ------------------------------------------------------------------------------------------------- | +| Can be instantiated | No | Unknown status | Unknown identifiability | Forbidden | Allowed | none | [SerializedParentAction.schema.json\*](SerializedParentAction.schema.json "open original schema") | + +## type Type + +`string` + +## type Constraints + +**enum**: the value of this property must be equal to one of the following values: + +| Value | Explanation | +| :---------------------------- | ----------- | +| `"SET_SEND_DEVICE_CONNECTED"` | | diff --git a/docs/schema/serializedparentaction-definitions-serializedsetsenddeviceconnected-properties.md b/docs/schema/serializedparentaction-definitions-serializedsetsenddeviceconnected-properties.md new file mode 100644 index 0000000..435cd22 --- /dev/null +++ b/docs/schema/serializedparentaction-definitions-serializedsetsenddeviceconnected-properties.md @@ -0,0 +1,16 @@ +# Untitled undefined type in SerializedParentAction Schema + +```txt +https://timelimit.io/SerializedParentAction#/definitions/SerializedSetSendDeviceConnected/properties +``` + + + + +| Abstract | Extensible | Status | Identifiable | Custom Properties | Additional Properties | Access Restrictions | Defined In | +| :------------------ | ---------- | -------------- | ----------------------- | :---------------- | --------------------- | ------------------- | ------------------------------------------------------------------------------------------------- | +| Can be instantiated | No | Unknown status | Unknown identifiability | Forbidden | Allowed | none | [SerializedParentAction.schema.json\*](SerializedParentAction.schema.json "open original schema") | + +## properties Type + +unknown diff --git a/docs/schema/serializedparentaction-definitions-serializedsetsenddeviceconnected.md b/docs/schema/serializedparentaction-definitions-serializedsetsenddeviceconnected.md new file mode 100644 index 0000000..fc3bad7 --- /dev/null +++ b/docs/schema/serializedparentaction-definitions-serializedsetsenddeviceconnected.md @@ -0,0 +1,80 @@ +# SerializedSetSendDeviceConnected Schema + +```txt +https://timelimit.io/SerializedParentAction#/definitions/SerializedSetSendDeviceConnected +``` + + + + +| Abstract | Extensible | Status | Identifiable | Custom Properties | Additional Properties | Access Restrictions | Defined In | +| :------------------ | ---------- | -------------- | ------------ | :---------------- | --------------------- | ------------------- | ------------------------------------------------------------------------------------------------- | +| Can be instantiated | No | Unknown status | No | Forbidden | Forbidden | none | [SerializedParentAction.schema.json\*](SerializedParentAction.schema.json "open original schema") | + +## SerializedSetSendDeviceConnected Type + +`object` ([SerializedSetSendDeviceConnected](serializedparentaction-definitions-serializedsetsenddeviceconnected.md)) + +# SerializedSetSendDeviceConnected Properties + +| Property | Type | Required | Nullable | Defined by | +| :-------------------- | --------- | -------- | -------------- | :---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | +| [type](#type) | `string` | Required | cannot be null | [SerializedParentAction](serializedparentaction-definitions-serializedsetsenddeviceconnected-properties-type.md "https://timelimit.io/SerializedParentAction#/definitions/SerializedSetSendDeviceConnected/properties/type") | +| [deviceId](#deviceId) | `string` | Required | cannot be null | [SerializedParentAction](serializedparentaction-definitions-serializedsetsenddeviceconnected-properties-deviceid.md "https://timelimit.io/SerializedParentAction#/definitions/SerializedSetSendDeviceConnected/properties/deviceId") | +| [enable](#enable) | `boolean` | Required | cannot be null | [SerializedParentAction](serializedparentaction-definitions-serializedsetsenddeviceconnected-properties-enable.md "https://timelimit.io/SerializedParentAction#/definitions/SerializedSetSendDeviceConnected/properties/enable") | + +## type + + + + +`type` + +- is required +- Type: `string` +- cannot be null +- defined in: [SerializedParentAction](serializedparentaction-definitions-serializedsetsenddeviceconnected-properties-type.md "https://timelimit.io/SerializedParentAction#/definitions/SerializedSetSendDeviceConnected/properties/type") + +### type Type + +`string` + +### type Constraints + +**enum**: the value of this property must be equal to one of the following values: + +| Value | Explanation | +| :---------------------------- | ----------- | +| `"SET_SEND_DEVICE_CONNECTED"` | | + +## deviceId + + + + +`deviceId` + +- is required +- Type: `string` +- cannot be null +- defined in: [SerializedParentAction](serializedparentaction-definitions-serializedsetsenddeviceconnected-properties-deviceid.md "https://timelimit.io/SerializedParentAction#/definitions/SerializedSetSendDeviceConnected/properties/deviceId") + +### deviceId Type + +`string` + +## enable + + + + +`enable` + +- is required +- Type: `boolean` +- cannot be null +- defined in: [SerializedParentAction](serializedparentaction-definitions-serializedsetsenddeviceconnected-properties-enable.md "https://timelimit.io/SerializedParentAction#/definitions/SerializedSetSendDeviceConnected/properties/enable") + +### enable Type + +`boolean` diff --git a/docs/schema/serializedparentaction-definitions-serializedsetuserdisablelimitsuntilaction-properties-childid.md b/docs/schema/serializedparentaction-definitions-serializedsetuserdisablelimitsuntilaction-properties-childid.md new file mode 100644 index 0000000..4f1b3ab --- /dev/null +++ b/docs/schema/serializedparentaction-definitions-serializedsetuserdisablelimitsuntilaction-properties-childid.md @@ -0,0 +1,16 @@ +# Untitled string in SerializedParentAction Schema + +```txt +https://timelimit.io/SerializedParentAction#/definitions/SerializedSetUserDisableLimitsUntilAction/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 | [SerializedParentAction.schema.json\*](SerializedParentAction.schema.json "open original schema") | + +## childId Type + +`string` diff --git a/docs/schema/serializedparentaction-definitions-serializedsetuserdisablelimitsuntilaction-properties-time.md b/docs/schema/serializedparentaction-definitions-serializedsetuserdisablelimitsuntilaction-properties-time.md new file mode 100644 index 0000000..38214d7 --- /dev/null +++ b/docs/schema/serializedparentaction-definitions-serializedsetuserdisablelimitsuntilaction-properties-time.md @@ -0,0 +1,16 @@ +# Untitled number in SerializedParentAction Schema + +```txt +https://timelimit.io/SerializedParentAction#/definitions/SerializedSetUserDisableLimitsUntilAction/properties/time +``` + + + + +| Abstract | Extensible | Status | Identifiable | Custom Properties | Additional Properties | Access Restrictions | Defined In | +| :------------------ | ---------- | -------------- | ----------------------- | :---------------- | --------------------- | ------------------- | ------------------------------------------------------------------------------------------------- | +| Can be instantiated | No | Unknown status | Unknown identifiability | Forbidden | Allowed | none | [SerializedParentAction.schema.json\*](SerializedParentAction.schema.json "open original schema") | + +## time Type + +`number` diff --git a/docs/schema/serializedparentaction-definitions-serializedsetuserdisablelimitsuntilaction-properties-type.md b/docs/schema/serializedparentaction-definitions-serializedsetuserdisablelimitsuntilaction-properties-type.md new file mode 100644 index 0000000..949ce23 --- /dev/null +++ b/docs/schema/serializedparentaction-definitions-serializedsetuserdisablelimitsuntilaction-properties-type.md @@ -0,0 +1,24 @@ +# Untitled string in SerializedParentAction Schema + +```txt +https://timelimit.io/SerializedParentAction#/definitions/SerializedSetUserDisableLimitsUntilAction/properties/type +``` + + + + +| Abstract | Extensible | Status | Identifiable | Custom Properties | Additional Properties | Access Restrictions | Defined In | +| :------------------ | ---------- | -------------- | ----------------------- | :---------------- | --------------------- | ------------------- | ------------------------------------------------------------------------------------------------- | +| Can be instantiated | No | Unknown status | Unknown identifiability | Forbidden | Allowed | none | [SerializedParentAction.schema.json\*](SerializedParentAction.schema.json "open original schema") | + +## type Type + +`string` + +## type Constraints + +**enum**: the value of this property must be equal to one of the following values: + +| Value | Explanation | +| :-------------------------------- | ----------- | +| `"SET_USER_DISABLE_LIMITS_UNTIL"` | | diff --git a/docs/schema/serializedparentaction-definitions-serializedsetuserdisablelimitsuntilaction-properties.md b/docs/schema/serializedparentaction-definitions-serializedsetuserdisablelimitsuntilaction-properties.md new file mode 100644 index 0000000..31906e1 --- /dev/null +++ b/docs/schema/serializedparentaction-definitions-serializedsetuserdisablelimitsuntilaction-properties.md @@ -0,0 +1,16 @@ +# Untitled undefined type in SerializedParentAction Schema + +```txt +https://timelimit.io/SerializedParentAction#/definitions/SerializedSetUserDisableLimitsUntilAction/properties +``` + + + + +| Abstract | Extensible | Status | Identifiable | Custom Properties | Additional Properties | Access Restrictions | Defined In | +| :------------------ | ---------- | -------------- | ----------------------- | :---------------- | --------------------- | ------------------- | ------------------------------------------------------------------------------------------------- | +| Can be instantiated | No | Unknown status | Unknown identifiability | Forbidden | Allowed | none | [SerializedParentAction.schema.json\*](SerializedParentAction.schema.json "open original schema") | + +## properties Type + +unknown diff --git a/docs/schema/serializedparentaction-definitions-serializedsetuserdisablelimitsuntilaction.md b/docs/schema/serializedparentaction-definitions-serializedsetuserdisablelimitsuntilaction.md new file mode 100644 index 0000000..efd1bd4 --- /dev/null +++ b/docs/schema/serializedparentaction-definitions-serializedsetuserdisablelimitsuntilaction.md @@ -0,0 +1,80 @@ +# SerializedSetUserDisableLimitsUntilAction Schema + +```txt +https://timelimit.io/SerializedParentAction#/definitions/SerializedSetUserDisableLimitsUntilAction +``` + + + + +| Abstract | Extensible | Status | Identifiable | Custom Properties | Additional Properties | Access Restrictions | Defined In | +| :------------------ | ---------- | -------------- | ------------ | :---------------- | --------------------- | ------------------- | ------------------------------------------------------------------------------------------------- | +| Can be instantiated | No | Unknown status | No | Forbidden | Forbidden | none | [SerializedParentAction.schema.json\*](SerializedParentAction.schema.json "open original schema") | + +## SerializedSetUserDisableLimitsUntilAction Type + +`object` ([SerializedSetUserDisableLimitsUntilAction](serializedparentaction-definitions-serializedsetuserdisablelimitsuntilaction.md)) + +# SerializedSetUserDisableLimitsUntilAction Properties + +| Property | Type | Required | Nullable | Defined by | +| :------------------ | -------- | -------- | -------------- | :-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | +| [type](#type) | `string` | Required | cannot be null | [SerializedParentAction](serializedparentaction-definitions-serializedsetuserdisablelimitsuntilaction-properties-type.md "https://timelimit.io/SerializedParentAction#/definitions/SerializedSetUserDisableLimitsUntilAction/properties/type") | +| [childId](#childId) | `string` | Required | cannot be null | [SerializedParentAction](serializedparentaction-definitions-serializedsetuserdisablelimitsuntilaction-properties-childid.md "https://timelimit.io/SerializedParentAction#/definitions/SerializedSetUserDisableLimitsUntilAction/properties/childId") | +| [time](#time) | `number` | Required | cannot be null | [SerializedParentAction](serializedparentaction-definitions-serializedsetuserdisablelimitsuntilaction-properties-time.md "https://timelimit.io/SerializedParentAction#/definitions/SerializedSetUserDisableLimitsUntilAction/properties/time") | + +## type + + + + +`type` + +- is required +- Type: `string` +- cannot be null +- defined in: [SerializedParentAction](serializedparentaction-definitions-serializedsetuserdisablelimitsuntilaction-properties-type.md "https://timelimit.io/SerializedParentAction#/definitions/SerializedSetUserDisableLimitsUntilAction/properties/type") + +### type Type + +`string` + +### type Constraints + +**enum**: the value of this property must be equal to one of the following values: + +| Value | Explanation | +| :-------------------------------- | ----------- | +| `"SET_USER_DISABLE_LIMITS_UNTIL"` | | + +## childId + + + + +`childId` + +- is required +- Type: `string` +- cannot be null +- defined in: [SerializedParentAction](serializedparentaction-definitions-serializedsetuserdisablelimitsuntilaction-properties-childid.md "https://timelimit.io/SerializedParentAction#/definitions/SerializedSetUserDisableLimitsUntilAction/properties/childId") + +### childId Type + +`string` + +## time + + + + +`time` + +- is required +- Type: `number` +- cannot be null +- defined in: [SerializedParentAction](serializedparentaction-definitions-serializedsetuserdisablelimitsuntilaction-properties-time.md "https://timelimit.io/SerializedParentAction#/definitions/SerializedSetUserDisableLimitsUntilAction/properties/time") + +### time Type + +`number` diff --git a/docs/schema/serializedparentaction-definitions-serializedsetusertimezoneaction-properties-timezone.md b/docs/schema/serializedparentaction-definitions-serializedsetusertimezoneaction-properties-timezone.md new file mode 100644 index 0000000..38ad29c --- /dev/null +++ b/docs/schema/serializedparentaction-definitions-serializedsetusertimezoneaction-properties-timezone.md @@ -0,0 +1,16 @@ +# Untitled string in SerializedParentAction Schema + +```txt +https://timelimit.io/SerializedParentAction#/definitions/SerializedSetUserTimezoneAction/properties/timezone +``` + + + + +| Abstract | Extensible | Status | Identifiable | Custom Properties | Additional Properties | Access Restrictions | Defined In | +| :------------------ | ---------- | -------------- | ----------------------- | :---------------- | --------------------- | ------------------- | ------------------------------------------------------------------------------------------------- | +| Can be instantiated | No | Unknown status | Unknown identifiability | Forbidden | Allowed | none | [SerializedParentAction.schema.json\*](SerializedParentAction.schema.json "open original schema") | + +## timezone Type + +`string` diff --git a/docs/schema/serializedparentaction-definitions-serializedsetusertimezoneaction-properties-type.md b/docs/schema/serializedparentaction-definitions-serializedsetusertimezoneaction-properties-type.md new file mode 100644 index 0000000..099d169 --- /dev/null +++ b/docs/schema/serializedparentaction-definitions-serializedsetusertimezoneaction-properties-type.md @@ -0,0 +1,24 @@ +# Untitled string in SerializedParentAction Schema + +```txt +https://timelimit.io/SerializedParentAction#/definitions/SerializedSetUserTimezoneAction/properties/type +``` + + + + +| Abstract | Extensible | Status | Identifiable | Custom Properties | Additional Properties | Access Restrictions | Defined In | +| :------------------ | ---------- | -------------- | ----------------------- | :---------------- | --------------------- | ------------------- | ------------------------------------------------------------------------------------------------- | +| Can be instantiated | No | Unknown status | Unknown identifiability | Forbidden | Allowed | none | [SerializedParentAction.schema.json\*](SerializedParentAction.schema.json "open original schema") | + +## type Type + +`string` + +## type Constraints + +**enum**: the value of this property must be equal to one of the following values: + +| Value | Explanation | +| :-------------------- | ----------- | +| `"SET_USER_TIMEZONE"` | | diff --git a/docs/schema/serializedparentaction-definitions-serializedsetusertimezoneaction-properties-userid.md b/docs/schema/serializedparentaction-definitions-serializedsetusertimezoneaction-properties-userid.md new file mode 100644 index 0000000..2a17bbb --- /dev/null +++ b/docs/schema/serializedparentaction-definitions-serializedsetusertimezoneaction-properties-userid.md @@ -0,0 +1,16 @@ +# Untitled string in SerializedParentAction Schema + +```txt +https://timelimit.io/SerializedParentAction#/definitions/SerializedSetUserTimezoneAction/properties/userId +``` + + + + +| Abstract | Extensible | Status | Identifiable | Custom Properties | Additional Properties | Access Restrictions | Defined In | +| :------------------ | ---------- | -------------- | ----------------------- | :---------------- | --------------------- | ------------------- | ------------------------------------------------------------------------------------------------- | +| Can be instantiated | No | Unknown status | Unknown identifiability | Forbidden | Allowed | none | [SerializedParentAction.schema.json\*](SerializedParentAction.schema.json "open original schema") | + +## userId Type + +`string` diff --git a/docs/schema/serializedparentaction-definitions-serializedsetusertimezoneaction-properties.md b/docs/schema/serializedparentaction-definitions-serializedsetusertimezoneaction-properties.md new file mode 100644 index 0000000..5678e51 --- /dev/null +++ b/docs/schema/serializedparentaction-definitions-serializedsetusertimezoneaction-properties.md @@ -0,0 +1,16 @@ +# Untitled undefined type in SerializedParentAction Schema + +```txt +https://timelimit.io/SerializedParentAction#/definitions/SerializedSetUserTimezoneAction/properties +``` + + + + +| Abstract | Extensible | Status | Identifiable | Custom Properties | Additional Properties | Access Restrictions | Defined In | +| :------------------ | ---------- | -------------- | ----------------------- | :---------------- | --------------------- | ------------------- | ------------------------------------------------------------------------------------------------- | +| Can be instantiated | No | Unknown status | Unknown identifiability | Forbidden | Allowed | none | [SerializedParentAction.schema.json\*](SerializedParentAction.schema.json "open original schema") | + +## properties Type + +unknown diff --git a/docs/schema/serializedparentaction-definitions-serializedsetusertimezoneaction.md b/docs/schema/serializedparentaction-definitions-serializedsetusertimezoneaction.md new file mode 100644 index 0000000..75bda71 --- /dev/null +++ b/docs/schema/serializedparentaction-definitions-serializedsetusertimezoneaction.md @@ -0,0 +1,80 @@ +# SerializedSetUserTimezoneAction Schema + +```txt +https://timelimit.io/SerializedParentAction#/definitions/SerializedSetUserTimezoneAction +``` + + + + +| Abstract | Extensible | Status | Identifiable | Custom Properties | Additional Properties | Access Restrictions | Defined In | +| :------------------ | ---------- | -------------- | ------------ | :---------------- | --------------------- | ------------------- | ------------------------------------------------------------------------------------------------- | +| Can be instantiated | No | Unknown status | No | Forbidden | Forbidden | none | [SerializedParentAction.schema.json\*](SerializedParentAction.schema.json "open original schema") | + +## SerializedSetUserTimezoneAction Type + +`object` ([SerializedSetUserTimezoneAction](serializedparentaction-definitions-serializedsetusertimezoneaction.md)) + +# SerializedSetUserTimezoneAction Properties + +| Property | Type | Required | Nullable | Defined by | +| :-------------------- | -------- | -------- | -------------- | :-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | +| [type](#type) | `string` | Required | cannot be null | [SerializedParentAction](serializedparentaction-definitions-serializedsetusertimezoneaction-properties-type.md "https://timelimit.io/SerializedParentAction#/definitions/SerializedSetUserTimezoneAction/properties/type") | +| [userId](#userId) | `string` | Required | cannot be null | [SerializedParentAction](serializedparentaction-definitions-serializedsetusertimezoneaction-properties-userid.md "https://timelimit.io/SerializedParentAction#/definitions/SerializedSetUserTimezoneAction/properties/userId") | +| [timezone](#timezone) | `string` | Required | cannot be null | [SerializedParentAction](serializedparentaction-definitions-serializedsetusertimezoneaction-properties-timezone.md "https://timelimit.io/SerializedParentAction#/definitions/SerializedSetUserTimezoneAction/properties/timezone") | + +## type + + + + +`type` + +- is required +- Type: `string` +- cannot be null +- defined in: [SerializedParentAction](serializedparentaction-definitions-serializedsetusertimezoneaction-properties-type.md "https://timelimit.io/SerializedParentAction#/definitions/SerializedSetUserTimezoneAction/properties/type") + +### type Type + +`string` + +### type Constraints + +**enum**: the value of this property must be equal to one of the following values: + +| Value | Explanation | +| :-------------------- | ----------- | +| `"SET_USER_TIMEZONE"` | | + +## userId + + + + +`userId` + +- is required +- Type: `string` +- cannot be null +- defined in: [SerializedParentAction](serializedparentaction-definitions-serializedsetusertimezoneaction-properties-userid.md "https://timelimit.io/SerializedParentAction#/definitions/SerializedSetUserTimezoneAction/properties/userId") + +### userId Type + +`string` + +## timezone + + + + +`timezone` + +- is required +- Type: `string` +- cannot be null +- defined in: [SerializedParentAction](serializedparentaction-definitions-serializedsetusertimezoneaction-properties-timezone.md "https://timelimit.io/SerializedParentAction#/definitions/SerializedSetUserTimezoneAction/properties/timezone") + +### timezone Type + +`string` diff --git a/docs/schema/serializedparentaction-definitions-serializedtimelimitrule-properties-categoryid.md b/docs/schema/serializedparentaction-definitions-serializedtimelimitrule-properties-categoryid.md new file mode 100644 index 0000000..eda04ea --- /dev/null +++ b/docs/schema/serializedparentaction-definitions-serializedtimelimitrule-properties-categoryid.md @@ -0,0 +1,16 @@ +# Untitled string in SerializedParentAction Schema + +```txt +https://timelimit.io/SerializedParentAction#/definitions/SerializedTimeLimitRule/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 | [SerializedParentAction.schema.json\*](SerializedParentAction.schema.json "open original schema") | + +## categoryId Type + +`string` diff --git a/docs/schema/serializedparentaction-definitions-serializedtimelimitrule-properties-days.md b/docs/schema/serializedparentaction-definitions-serializedtimelimitrule-properties-days.md new file mode 100644 index 0000000..9730af5 --- /dev/null +++ b/docs/schema/serializedparentaction-definitions-serializedtimelimitrule-properties-days.md @@ -0,0 +1,16 @@ +# Untitled number in SerializedParentAction Schema + +```txt +https://timelimit.io/SerializedParentAction#/definitions/SerializedTimeLimitRule/properties/days +``` + + + + +| Abstract | Extensible | Status | Identifiable | Custom Properties | Additional Properties | Access Restrictions | Defined In | +| :------------------ | ---------- | -------------- | ----------------------- | :---------------- | --------------------- | ------------------- | ------------------------------------------------------------------------------------------------- | +| Can be instantiated | No | Unknown status | Unknown identifiability | Forbidden | Allowed | none | [SerializedParentAction.schema.json\*](SerializedParentAction.schema.json "open original schema") | + +## days Type + +`number` diff --git a/docs/schema/serializedparentaction-definitions-serializedtimelimitrule-properties-extratime.md b/docs/schema/serializedparentaction-definitions-serializedtimelimitrule-properties-extratime.md new file mode 100644 index 0000000..f72bea7 --- /dev/null +++ b/docs/schema/serializedparentaction-definitions-serializedtimelimitrule-properties-extratime.md @@ -0,0 +1,16 @@ +# Untitled boolean in SerializedParentAction Schema + +```txt +https://timelimit.io/SerializedParentAction#/definitions/SerializedTimeLimitRule/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 | [SerializedParentAction.schema.json\*](SerializedParentAction.schema.json "open original schema") | + +## extraTime Type + +`boolean` diff --git a/docs/schema/serializedparentaction-definitions-serializedtimelimitrule-properties-ruleid.md b/docs/schema/serializedparentaction-definitions-serializedtimelimitrule-properties-ruleid.md new file mode 100644 index 0000000..cf81cdc --- /dev/null +++ b/docs/schema/serializedparentaction-definitions-serializedtimelimitrule-properties-ruleid.md @@ -0,0 +1,16 @@ +# Untitled string in SerializedParentAction Schema + +```txt +https://timelimit.io/SerializedParentAction#/definitions/SerializedTimeLimitRule/properties/ruleId +``` + + + + +| Abstract | Extensible | Status | Identifiable | Custom Properties | Additional Properties | Access Restrictions | Defined In | +| :------------------ | ---------- | -------------- | ----------------------- | :---------------- | --------------------- | ------------------- | ------------------------------------------------------------------------------------------------- | +| Can be instantiated | No | Unknown status | Unknown identifiability | Forbidden | Allowed | none | [SerializedParentAction.schema.json\*](SerializedParentAction.schema.json "open original schema") | + +## ruleId Type + +`string` diff --git a/docs/schema/serializedparentaction-definitions-serializedtimelimitrule-properties-time.md b/docs/schema/serializedparentaction-definitions-serializedtimelimitrule-properties-time.md new file mode 100644 index 0000000..1f14971 --- /dev/null +++ b/docs/schema/serializedparentaction-definitions-serializedtimelimitrule-properties-time.md @@ -0,0 +1,16 @@ +# Untitled number in SerializedParentAction Schema + +```txt +https://timelimit.io/SerializedParentAction#/definitions/SerializedTimeLimitRule/properties/time +``` + + + + +| Abstract | Extensible | Status | Identifiable | Custom Properties | Additional Properties | Access Restrictions | Defined In | +| :------------------ | ---------- | -------------- | ----------------------- | :---------------- | --------------------- | ------------------- | ------------------------------------------------------------------------------------------------- | +| Can be instantiated | No | Unknown status | Unknown identifiability | Forbidden | Allowed | none | [SerializedParentAction.schema.json\*](SerializedParentAction.schema.json "open original schema") | + +## time Type + +`number` diff --git a/docs/schema/serializedparentaction-definitions-serializedtimelimitrule-properties.md b/docs/schema/serializedparentaction-definitions-serializedtimelimitrule-properties.md new file mode 100644 index 0000000..33f702c --- /dev/null +++ b/docs/schema/serializedparentaction-definitions-serializedtimelimitrule-properties.md @@ -0,0 +1,16 @@ +# Untitled undefined type in SerializedParentAction Schema + +```txt +https://timelimit.io/SerializedParentAction#/definitions/SerializedTimeLimitRule/properties +``` + + + + +| Abstract | Extensible | Status | Identifiable | Custom Properties | Additional Properties | Access Restrictions | Defined In | +| :------------------ | ---------- | -------------- | ----------------------- | :---------------- | --------------------- | ------------------- | ------------------------------------------------------------------------------------------------- | +| Can be instantiated | No | Unknown status | Unknown identifiability | Forbidden | Allowed | none | [SerializedParentAction.schema.json\*](SerializedParentAction.schema.json "open original schema") | + +## properties Type + +unknown diff --git a/docs/schema/serializedparentaction-definitions-serializedtimelimitrule.md b/docs/schema/serializedparentaction-definitions-serializedtimelimitrule.md new file mode 100644 index 0000000..9c59e33 --- /dev/null +++ b/docs/schema/serializedparentaction-definitions-serializedtimelimitrule.md @@ -0,0 +1,106 @@ +# SerializedTimeLimitRule Schema + +```txt +https://timelimit.io/SerializedParentAction#/definitions/SerializedTimeLimitRule +``` + + + + +| Abstract | Extensible | Status | Identifiable | Custom Properties | Additional Properties | Access Restrictions | Defined In | +| :------------------ | ---------- | -------------- | ------------ | :---------------- | --------------------- | ------------------- | ------------------------------------------------------------------------------------------------- | +| Can be instantiated | No | Unknown status | No | Forbidden | Forbidden | none | [SerializedParentAction.schema.json\*](SerializedParentAction.schema.json "open original schema") | + +## SerializedTimeLimitRule Type + +`object` ([SerializedTimeLimitRule](serializedparentaction-definitions-serializedtimelimitrule.md)) + +# SerializedTimeLimitRule Properties + +| Property | Type | Required | Nullable | Defined by | +| :------------------------ | --------- | -------- | -------------- | :-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | +| [ruleId](#ruleId) | `string` | Required | cannot be null | [SerializedParentAction](serializedparentaction-definitions-serializedtimelimitrule-properties-ruleid.md "https://timelimit.io/SerializedParentAction#/definitions/SerializedTimeLimitRule/properties/ruleId") | +| [categoryId](#categoryId) | `string` | Required | cannot be null | [SerializedParentAction](serializedparentaction-definitions-serializedtimelimitrule-properties-categoryid.md "https://timelimit.io/SerializedParentAction#/definitions/SerializedTimeLimitRule/properties/categoryId") | +| [time](#time) | `number` | Required | cannot be null | [SerializedParentAction](serializedparentaction-definitions-serializedtimelimitrule-properties-time.md "https://timelimit.io/SerializedParentAction#/definitions/SerializedTimeLimitRule/properties/time") | +| [days](#days) | `number` | Required | cannot be null | [SerializedParentAction](serializedparentaction-definitions-serializedtimelimitrule-properties-days.md "https://timelimit.io/SerializedParentAction#/definitions/SerializedTimeLimitRule/properties/days") | +| [extraTime](#extraTime) | `boolean` | Required | cannot be null | [SerializedParentAction](serializedparentaction-definitions-serializedtimelimitrule-properties-extratime.md "https://timelimit.io/SerializedParentAction#/definitions/SerializedTimeLimitRule/properties/extraTime") | + +## ruleId + + + + +`ruleId` + +- is required +- Type: `string` +- cannot be null +- defined in: [SerializedParentAction](serializedparentaction-definitions-serializedtimelimitrule-properties-ruleid.md "https://timelimit.io/SerializedParentAction#/definitions/SerializedTimeLimitRule/properties/ruleId") + +### ruleId Type + +`string` + +## categoryId + + + + +`categoryId` + +- is required +- Type: `string` +- cannot be null +- defined in: [SerializedParentAction](serializedparentaction-definitions-serializedtimelimitrule-properties-categoryid.md "https://timelimit.io/SerializedParentAction#/definitions/SerializedTimeLimitRule/properties/categoryId") + +### categoryId Type + +`string` + +## time + + + + +`time` + +- is required +- Type: `number` +- cannot be null +- defined in: [SerializedParentAction](serializedparentaction-definitions-serializedtimelimitrule-properties-time.md "https://timelimit.io/SerializedParentAction#/definitions/SerializedTimeLimitRule/properties/time") + +### time Type + +`number` + +## days + + + + +`days` + +- is required +- Type: `number` +- cannot be null +- defined in: [SerializedParentAction](serializedparentaction-definitions-serializedtimelimitrule-properties-days.md "https://timelimit.io/SerializedParentAction#/definitions/SerializedTimeLimitRule/properties/days") + +### days Type + +`number` + +## extraTime + + + + +`extraTime` + +- is required +- Type: `boolean` +- cannot be null +- defined in: [SerializedParentAction](serializedparentaction-definitions-serializedtimelimitrule-properties-extratime.md "https://timelimit.io/SerializedParentAction#/definitions/SerializedTimeLimitRule/properties/extraTime") + +### extraTime Type + +`boolean` diff --git a/docs/schema/serializedparentaction-definitions-serializedupdatecategorybatterylimitaction-properties-categoryid.md b/docs/schema/serializedparentaction-definitions-serializedupdatecategorybatterylimitaction-properties-categoryid.md new file mode 100644 index 0000000..ab5532d --- /dev/null +++ b/docs/schema/serializedparentaction-definitions-serializedupdatecategorybatterylimitaction-properties-categoryid.md @@ -0,0 +1,16 @@ +# Untitled string in SerializedParentAction Schema + +```txt +https://timelimit.io/SerializedParentAction#/definitions/SerializedUpdateCategoryBatteryLimitAction/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 | [SerializedParentAction.schema.json\*](SerializedParentAction.schema.json "open original schema") | + +## categoryId Type + +`string` diff --git a/docs/schema/serializedparentaction-definitions-serializedupdatecategorybatterylimitaction-properties-chargelimit.md b/docs/schema/serializedparentaction-definitions-serializedupdatecategorybatterylimitaction-properties-chargelimit.md new file mode 100644 index 0000000..a6015c4 --- /dev/null +++ b/docs/schema/serializedparentaction-definitions-serializedupdatecategorybatterylimitaction-properties-chargelimit.md @@ -0,0 +1,16 @@ +# Untitled number in SerializedParentAction Schema + +```txt +https://timelimit.io/SerializedParentAction#/definitions/SerializedUpdateCategoryBatteryLimitAction/properties/chargeLimit +``` + + + + +| Abstract | Extensible | Status | Identifiable | Custom Properties | Additional Properties | Access Restrictions | Defined In | +| :------------------ | ---------- | -------------- | ----------------------- | :---------------- | --------------------- | ------------------- | ------------------------------------------------------------------------------------------------- | +| Can be instantiated | No | Unknown status | Unknown identifiability | Forbidden | Allowed | none | [SerializedParentAction.schema.json\*](SerializedParentAction.schema.json "open original schema") | + +## chargeLimit Type + +`number` diff --git a/docs/schema/serializedparentaction-definitions-serializedupdatecategorybatterylimitaction-properties-mobilelimit.md b/docs/schema/serializedparentaction-definitions-serializedupdatecategorybatterylimitaction-properties-mobilelimit.md new file mode 100644 index 0000000..e1805ec --- /dev/null +++ b/docs/schema/serializedparentaction-definitions-serializedupdatecategorybatterylimitaction-properties-mobilelimit.md @@ -0,0 +1,16 @@ +# Untitled number in SerializedParentAction Schema + +```txt +https://timelimit.io/SerializedParentAction#/definitions/SerializedUpdateCategoryBatteryLimitAction/properties/mobileLimit +``` + + + + +| Abstract | Extensible | Status | Identifiable | Custom Properties | Additional Properties | Access Restrictions | Defined In | +| :------------------ | ---------- | -------------- | ----------------------- | :---------------- | --------------------- | ------------------- | ------------------------------------------------------------------------------------------------- | +| Can be instantiated | No | Unknown status | Unknown identifiability | Forbidden | Allowed | none | [SerializedParentAction.schema.json\*](SerializedParentAction.schema.json "open original schema") | + +## mobileLimit Type + +`number` diff --git a/docs/schema/serializedparentaction-definitions-serializedupdatecategorybatterylimitaction-properties-type.md b/docs/schema/serializedparentaction-definitions-serializedupdatecategorybatterylimitaction-properties-type.md new file mode 100644 index 0000000..84ba13b --- /dev/null +++ b/docs/schema/serializedparentaction-definitions-serializedupdatecategorybatterylimitaction-properties-type.md @@ -0,0 +1,24 @@ +# Untitled string in SerializedParentAction Schema + +```txt +https://timelimit.io/SerializedParentAction#/definitions/SerializedUpdateCategoryBatteryLimitAction/properties/type +``` + + + + +| Abstract | Extensible | Status | Identifiable | Custom Properties | Additional Properties | Access Restrictions | Defined In | +| :------------------ | ---------- | -------------- | ----------------------- | :---------------- | --------------------- | ------------------- | ------------------------------------------------------------------------------------------------- | +| Can be instantiated | No | Unknown status | Unknown identifiability | Forbidden | Allowed | none | [SerializedParentAction.schema.json\*](SerializedParentAction.schema.json "open original schema") | + +## type Type + +`string` + +## type Constraints + +**enum**: the value of this property must be equal to one of the following values: + +| Value | Explanation | +| :-------------------------------- | ----------- | +| `"UPDATE_CATEGORY_BATTERY_LIMIT"` | | diff --git a/docs/schema/serializedparentaction-definitions-serializedupdatecategorybatterylimitaction-properties.md b/docs/schema/serializedparentaction-definitions-serializedupdatecategorybatterylimitaction-properties.md new file mode 100644 index 0000000..8a32038 --- /dev/null +++ b/docs/schema/serializedparentaction-definitions-serializedupdatecategorybatterylimitaction-properties.md @@ -0,0 +1,16 @@ +# Untitled undefined type in SerializedParentAction Schema + +```txt +https://timelimit.io/SerializedParentAction#/definitions/SerializedUpdateCategoryBatteryLimitAction/properties +``` + + + + +| Abstract | Extensible | Status | Identifiable | Custom Properties | Additional Properties | Access Restrictions | Defined In | +| :------------------ | ---------- | -------------- | ----------------------- | :---------------- | --------------------- | ------------------- | ------------------------------------------------------------------------------------------------- | +| Can be instantiated | No | Unknown status | Unknown identifiability | Forbidden | Allowed | none | [SerializedParentAction.schema.json\*](SerializedParentAction.schema.json "open original schema") | + +## properties Type + +unknown diff --git a/docs/schema/serializedparentaction-definitions-serializedupdatecategorybatterylimitaction.md b/docs/schema/serializedparentaction-definitions-serializedupdatecategorybatterylimitaction.md new file mode 100644 index 0000000..76a11c1 --- /dev/null +++ b/docs/schema/serializedparentaction-definitions-serializedupdatecategorybatterylimitaction.md @@ -0,0 +1,97 @@ +# SerializedUpdateCategoryBatteryLimitAction Schema + +```txt +https://timelimit.io/SerializedParentAction#/definitions/SerializedUpdateCategoryBatteryLimitAction +``` + + + + +| Abstract | Extensible | Status | Identifiable | Custom Properties | Additional Properties | Access Restrictions | Defined In | +| :------------------ | ---------- | -------------- | ------------ | :---------------- | --------------------- | ------------------- | ------------------------------------------------------------------------------------------------- | +| Can be instantiated | No | Unknown status | No | Forbidden | Forbidden | none | [SerializedParentAction.schema.json\*](SerializedParentAction.schema.json "open original schema") | + +## SerializedUpdateCategoryBatteryLimitAction Type + +`object` ([SerializedUpdateCategoryBatteryLimitAction](serializedparentaction-definitions-serializedupdatecategorybatterylimitaction.md)) + +# SerializedUpdateCategoryBatteryLimitAction Properties + +| Property | Type | Required | Nullable | Defined by | +| :-------------------------- | -------- | -------- | -------------- | :------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ | +| [type](#type) | `string` | Required | cannot be null | [SerializedParentAction](serializedparentaction-definitions-serializedupdatecategorybatterylimitaction-properties-type.md "https://timelimit.io/SerializedParentAction#/definitions/SerializedUpdateCategoryBatteryLimitAction/properties/type") | +| [categoryId](#categoryId) | `string` | Required | cannot be null | [SerializedParentAction](serializedparentaction-definitions-serializedupdatecategorybatterylimitaction-properties-categoryid.md "https://timelimit.io/SerializedParentAction#/definitions/SerializedUpdateCategoryBatteryLimitAction/properties/categoryId") | +| [chargeLimit](#chargeLimit) | `number` | Optional | cannot be null | [SerializedParentAction](serializedparentaction-definitions-serializedupdatecategorybatterylimitaction-properties-chargelimit.md "https://timelimit.io/SerializedParentAction#/definitions/SerializedUpdateCategoryBatteryLimitAction/properties/chargeLimit") | +| [mobileLimit](#mobileLimit) | `number` | Optional | cannot be null | [SerializedParentAction](serializedparentaction-definitions-serializedupdatecategorybatterylimitaction-properties-mobilelimit.md "https://timelimit.io/SerializedParentAction#/definitions/SerializedUpdateCategoryBatteryLimitAction/properties/mobileLimit") | + +## type + + + + +`type` + +- is required +- Type: `string` +- cannot be null +- defined in: [SerializedParentAction](serializedparentaction-definitions-serializedupdatecategorybatterylimitaction-properties-type.md "https://timelimit.io/SerializedParentAction#/definitions/SerializedUpdateCategoryBatteryLimitAction/properties/type") + +### type Type + +`string` + +### type Constraints + +**enum**: the value of this property must be equal to one of the following values: + +| Value | Explanation | +| :-------------------------------- | ----------- | +| `"UPDATE_CATEGORY_BATTERY_LIMIT"` | | + +## categoryId + + + + +`categoryId` + +- is required +- Type: `string` +- cannot be null +- defined in: [SerializedParentAction](serializedparentaction-definitions-serializedupdatecategorybatterylimitaction-properties-categoryid.md "https://timelimit.io/SerializedParentAction#/definitions/SerializedUpdateCategoryBatteryLimitAction/properties/categoryId") + +### categoryId Type + +`string` + +## chargeLimit + + + + +`chargeLimit` + +- is optional +- Type: `number` +- cannot be null +- defined in: [SerializedParentAction](serializedparentaction-definitions-serializedupdatecategorybatterylimitaction-properties-chargelimit.md "https://timelimit.io/SerializedParentAction#/definitions/SerializedUpdateCategoryBatteryLimitAction/properties/chargeLimit") + +### chargeLimit Type + +`number` + +## mobileLimit + + + + +`mobileLimit` + +- is optional +- Type: `number` +- cannot be null +- defined in: [SerializedParentAction](serializedparentaction-definitions-serializedupdatecategorybatterylimitaction-properties-mobilelimit.md "https://timelimit.io/SerializedParentAction#/definitions/SerializedUpdateCategoryBatteryLimitAction/properties/mobileLimit") + +### mobileLimit Type + +`number` diff --git a/docs/schema/serializedparentaction-definitions-serializedupdatecategoryblockallnotificationsaction-properties-blocked.md b/docs/schema/serializedparentaction-definitions-serializedupdatecategoryblockallnotificationsaction-properties-blocked.md new file mode 100644 index 0000000..100e348 --- /dev/null +++ b/docs/schema/serializedparentaction-definitions-serializedupdatecategoryblockallnotificationsaction-properties-blocked.md @@ -0,0 +1,16 @@ +# Untitled boolean in SerializedParentAction Schema + +```txt +https://timelimit.io/SerializedParentAction#/definitions/SerializedUpdateCategoryBlockAllNotificationsAction/properties/blocked +``` + + + + +| Abstract | Extensible | Status | Identifiable | Custom Properties | Additional Properties | Access Restrictions | Defined In | +| :------------------ | ---------- | -------------- | ----------------------- | :---------------- | --------------------- | ------------------- | ------------------------------------------------------------------------------------------------- | +| Can be instantiated | No | Unknown status | Unknown identifiability | Forbidden | Allowed | none | [SerializedParentAction.schema.json\*](SerializedParentAction.schema.json "open original schema") | + +## blocked Type + +`boolean` diff --git a/docs/schema/serializedparentaction-definitions-serializedupdatecategoryblockallnotificationsaction-properties-categoryid.md b/docs/schema/serializedparentaction-definitions-serializedupdatecategoryblockallnotificationsaction-properties-categoryid.md new file mode 100644 index 0000000..6224574 --- /dev/null +++ b/docs/schema/serializedparentaction-definitions-serializedupdatecategoryblockallnotificationsaction-properties-categoryid.md @@ -0,0 +1,16 @@ +# Untitled string in SerializedParentAction Schema + +```txt +https://timelimit.io/SerializedParentAction#/definitions/SerializedUpdateCategoryBlockAllNotificationsAction/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 | [SerializedParentAction.schema.json\*](SerializedParentAction.schema.json "open original schema") | + +## categoryId Type + +`string` diff --git a/docs/schema/serializedparentaction-definitions-serializedupdatecategoryblockallnotificationsaction-properties-type.md b/docs/schema/serializedparentaction-definitions-serializedupdatecategoryblockallnotificationsaction-properties-type.md new file mode 100644 index 0000000..0993025 --- /dev/null +++ b/docs/schema/serializedparentaction-definitions-serializedupdatecategoryblockallnotificationsaction-properties-type.md @@ -0,0 +1,24 @@ +# Untitled string in SerializedParentAction Schema + +```txt +https://timelimit.io/SerializedParentAction#/definitions/SerializedUpdateCategoryBlockAllNotificationsAction/properties/type +``` + + + + +| Abstract | Extensible | Status | Identifiable | Custom Properties | Additional Properties | Access Restrictions | Defined In | +| :------------------ | ---------- | -------------- | ----------------------- | :---------------- | --------------------- | ------------------- | ------------------------------------------------------------------------------------------------- | +| Can be instantiated | No | Unknown status | Unknown identifiability | Forbidden | Allowed | none | [SerializedParentAction.schema.json\*](SerializedParentAction.schema.json "open original schema") | + +## type Type + +`string` + +## type Constraints + +**enum**: the value of this property must be equal to one of the following values: + +| Value | Explanation | +| :------------------------------------------ | ----------- | +| `"UPDATE_CATEGORY_BLOCK_ALL_NOTIFICATIONS"` | | diff --git a/docs/schema/serializedparentaction-definitions-serializedupdatecategoryblockallnotificationsaction-properties.md b/docs/schema/serializedparentaction-definitions-serializedupdatecategoryblockallnotificationsaction-properties.md new file mode 100644 index 0000000..113f995 --- /dev/null +++ b/docs/schema/serializedparentaction-definitions-serializedupdatecategoryblockallnotificationsaction-properties.md @@ -0,0 +1,16 @@ +# Untitled undefined type in SerializedParentAction Schema + +```txt +https://timelimit.io/SerializedParentAction#/definitions/SerializedUpdateCategoryBlockAllNotificationsAction/properties +``` + + + + +| Abstract | Extensible | Status | Identifiable | Custom Properties | Additional Properties | Access Restrictions | Defined In | +| :------------------ | ---------- | -------------- | ----------------------- | :---------------- | --------------------- | ------------------- | ------------------------------------------------------------------------------------------------- | +| Can be instantiated | No | Unknown status | Unknown identifiability | Forbidden | Allowed | none | [SerializedParentAction.schema.json\*](SerializedParentAction.schema.json "open original schema") | + +## properties Type + +unknown diff --git a/docs/schema/serializedparentaction-definitions-serializedupdatecategoryblockallnotificationsaction.md b/docs/schema/serializedparentaction-definitions-serializedupdatecategoryblockallnotificationsaction.md new file mode 100644 index 0000000..b4d4e1a --- /dev/null +++ b/docs/schema/serializedparentaction-definitions-serializedupdatecategoryblockallnotificationsaction.md @@ -0,0 +1,80 @@ +# SerializedUpdateCategoryBlockAllNotificationsAction Schema + +```txt +https://timelimit.io/SerializedParentAction#/definitions/SerializedUpdateCategoryBlockAllNotificationsAction +``` + + + + +| Abstract | Extensible | Status | Identifiable | Custom Properties | Additional Properties | Access Restrictions | Defined In | +| :------------------ | ---------- | -------------- | ------------ | :---------------- | --------------------- | ------------------- | ------------------------------------------------------------------------------------------------- | +| Can be instantiated | No | Unknown status | No | Forbidden | Forbidden | none | [SerializedParentAction.schema.json\*](SerializedParentAction.schema.json "open original schema") | + +## SerializedUpdateCategoryBlockAllNotificationsAction Type + +`object` ([SerializedUpdateCategoryBlockAllNotificationsAction](serializedparentaction-definitions-serializedupdatecategoryblockallnotificationsaction.md)) + +# SerializedUpdateCategoryBlockAllNotificationsAction Properties + +| Property | Type | Required | Nullable | Defined by | +| :------------------------ | --------- | -------- | -------------- | :---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | +| [type](#type) | `string` | Required | cannot be null | [SerializedParentAction](serializedparentaction-definitions-serializedupdatecategoryblockallnotificationsaction-properties-type.md "https://timelimit.io/SerializedParentAction#/definitions/SerializedUpdateCategoryBlockAllNotificationsAction/properties/type") | +| [categoryId](#categoryId) | `string` | Required | cannot be null | [SerializedParentAction](serializedparentaction-definitions-serializedupdatecategoryblockallnotificationsaction-properties-categoryid.md "https://timelimit.io/SerializedParentAction#/definitions/SerializedUpdateCategoryBlockAllNotificationsAction/properties/categoryId") | +| [blocked](#blocked) | `boolean` | Required | cannot be null | [SerializedParentAction](serializedparentaction-definitions-serializedupdatecategoryblockallnotificationsaction-properties-blocked.md "https://timelimit.io/SerializedParentAction#/definitions/SerializedUpdateCategoryBlockAllNotificationsAction/properties/blocked") | + +## type + + + + +`type` + +- is required +- Type: `string` +- cannot be null +- defined in: [SerializedParentAction](serializedparentaction-definitions-serializedupdatecategoryblockallnotificationsaction-properties-type.md "https://timelimit.io/SerializedParentAction#/definitions/SerializedUpdateCategoryBlockAllNotificationsAction/properties/type") + +### type Type + +`string` + +### type Constraints + +**enum**: the value of this property must be equal to one of the following values: + +| Value | Explanation | +| :------------------------------------------ | ----------- | +| `"UPDATE_CATEGORY_BLOCK_ALL_NOTIFICATIONS"` | | + +## categoryId + + + + +`categoryId` + +- is required +- Type: `string` +- cannot be null +- defined in: [SerializedParentAction](serializedparentaction-definitions-serializedupdatecategoryblockallnotificationsaction-properties-categoryid.md "https://timelimit.io/SerializedParentAction#/definitions/SerializedUpdateCategoryBlockAllNotificationsAction/properties/categoryId") + +### categoryId Type + +`string` + +## blocked + + + + +`blocked` + +- is required +- Type: `boolean` +- cannot be null +- defined in: [SerializedParentAction](serializedparentaction-definitions-serializedupdatecategoryblockallnotificationsaction-properties-blocked.md "https://timelimit.io/SerializedParentAction#/definitions/SerializedUpdateCategoryBlockAllNotificationsAction/properties/blocked") + +### blocked Type + +`boolean` diff --git a/docs/schema/serializedparentaction-definitions-serializedupdatecategoryblockedtimesaction-properties-categoryid.md b/docs/schema/serializedparentaction-definitions-serializedupdatecategoryblockedtimesaction-properties-categoryid.md new file mode 100644 index 0000000..2e74a77 --- /dev/null +++ b/docs/schema/serializedparentaction-definitions-serializedupdatecategoryblockedtimesaction-properties-categoryid.md @@ -0,0 +1,16 @@ +# Untitled string in SerializedParentAction Schema + +```txt +https://timelimit.io/SerializedParentAction#/definitions/SerializedUpdateCategoryBlockedTimesAction/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 | [SerializedParentAction.schema.json\*](SerializedParentAction.schema.json "open original schema") | + +## categoryId Type + +`string` diff --git a/docs/schema/serializedparentaction-definitions-serializedupdatecategoryblockedtimesaction-properties-times.md b/docs/schema/serializedparentaction-definitions-serializedupdatecategoryblockedtimesaction-properties-times.md new file mode 100644 index 0000000..902b1a6 --- /dev/null +++ b/docs/schema/serializedparentaction-definitions-serializedupdatecategoryblockedtimesaction-properties-times.md @@ -0,0 +1,16 @@ +# Untitled string in SerializedParentAction Schema + +```txt +https://timelimit.io/SerializedParentAction#/definitions/SerializedUpdateCategoryBlockedTimesAction/properties/times +``` + + + + +| Abstract | Extensible | Status | Identifiable | Custom Properties | Additional Properties | Access Restrictions | Defined In | +| :------------------ | ---------- | -------------- | ----------------------- | :---------------- | --------------------- | ------------------- | ------------------------------------------------------------------------------------------------- | +| Can be instantiated | No | Unknown status | Unknown identifiability | Forbidden | Allowed | none | [SerializedParentAction.schema.json\*](SerializedParentAction.schema.json "open original schema") | + +## times Type + +`string` diff --git a/docs/schema/serializedparentaction-definitions-serializedupdatecategoryblockedtimesaction-properties-type.md b/docs/schema/serializedparentaction-definitions-serializedupdatecategoryblockedtimesaction-properties-type.md new file mode 100644 index 0000000..16008f0 --- /dev/null +++ b/docs/schema/serializedparentaction-definitions-serializedupdatecategoryblockedtimesaction-properties-type.md @@ -0,0 +1,24 @@ +# Untitled string in SerializedParentAction Schema + +```txt +https://timelimit.io/SerializedParentAction#/definitions/SerializedUpdateCategoryBlockedTimesAction/properties/type +``` + + + + +| Abstract | Extensible | Status | Identifiable | Custom Properties | Additional Properties | Access Restrictions | Defined In | +| :------------------ | ---------- | -------------- | ----------------------- | :---------------- | --------------------- | ------------------- | ------------------------------------------------------------------------------------------------- | +| Can be instantiated | No | Unknown status | Unknown identifiability | Forbidden | Allowed | none | [SerializedParentAction.schema.json\*](SerializedParentAction.schema.json "open original schema") | + +## type Type + +`string` + +## type Constraints + +**enum**: the value of this property must be equal to one of the following values: + +| Value | Explanation | +| :-------------------------------- | ----------- | +| `"UPDATE_CATEGORY_BLOCKED_TIMES"` | | diff --git a/docs/schema/serializedparentaction-definitions-serializedupdatecategoryblockedtimesaction-properties.md b/docs/schema/serializedparentaction-definitions-serializedupdatecategoryblockedtimesaction-properties.md new file mode 100644 index 0000000..ab37da7 --- /dev/null +++ b/docs/schema/serializedparentaction-definitions-serializedupdatecategoryblockedtimesaction-properties.md @@ -0,0 +1,16 @@ +# Untitled undefined type in SerializedParentAction Schema + +```txt +https://timelimit.io/SerializedParentAction#/definitions/SerializedUpdateCategoryBlockedTimesAction/properties +``` + + + + +| Abstract | Extensible | Status | Identifiable | Custom Properties | Additional Properties | Access Restrictions | Defined In | +| :------------------ | ---------- | -------------- | ----------------------- | :---------------- | --------------------- | ------------------- | ------------------------------------------------------------------------------------------------- | +| Can be instantiated | No | Unknown status | Unknown identifiability | Forbidden | Allowed | none | [SerializedParentAction.schema.json\*](SerializedParentAction.schema.json "open original schema") | + +## properties Type + +unknown diff --git a/docs/schema/serializedparentaction-definitions-serializedupdatecategoryblockedtimesaction.md b/docs/schema/serializedparentaction-definitions-serializedupdatecategoryblockedtimesaction.md new file mode 100644 index 0000000..c93c889 --- /dev/null +++ b/docs/schema/serializedparentaction-definitions-serializedupdatecategoryblockedtimesaction.md @@ -0,0 +1,80 @@ +# SerializedUpdateCategoryBlockedTimesAction Schema + +```txt +https://timelimit.io/SerializedParentAction#/definitions/SerializedUpdateCategoryBlockedTimesAction +``` + + + + +| Abstract | Extensible | Status | Identifiable | Custom Properties | Additional Properties | Access Restrictions | Defined In | +| :------------------ | ---------- | -------------- | ------------ | :---------------- | --------------------- | ------------------- | ------------------------------------------------------------------------------------------------- | +| Can be instantiated | No | Unknown status | No | Forbidden | Forbidden | none | [SerializedParentAction.schema.json\*](SerializedParentAction.schema.json "open original schema") | + +## SerializedUpdateCategoryBlockedTimesAction Type + +`object` ([SerializedUpdateCategoryBlockedTimesAction](serializedparentaction-definitions-serializedupdatecategoryblockedtimesaction.md)) + +# SerializedUpdateCategoryBlockedTimesAction Properties + +| Property | Type | Required | Nullable | Defined by | +| :------------------------ | -------- | -------- | -------------- | :---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | +| [type](#type) | `string` | Required | cannot be null | [SerializedParentAction](serializedparentaction-definitions-serializedupdatecategoryblockedtimesaction-properties-type.md "https://timelimit.io/SerializedParentAction#/definitions/SerializedUpdateCategoryBlockedTimesAction/properties/type") | +| [categoryId](#categoryId) | `string` | Required | cannot be null | [SerializedParentAction](serializedparentaction-definitions-serializedupdatecategoryblockedtimesaction-properties-categoryid.md "https://timelimit.io/SerializedParentAction#/definitions/SerializedUpdateCategoryBlockedTimesAction/properties/categoryId") | +| [times](#times) | `string` | Required | cannot be null | [SerializedParentAction](serializedparentaction-definitions-serializedupdatecategoryblockedtimesaction-properties-times.md "https://timelimit.io/SerializedParentAction#/definitions/SerializedUpdateCategoryBlockedTimesAction/properties/times") | + +## type + + + + +`type` + +- is required +- Type: `string` +- cannot be null +- defined in: [SerializedParentAction](serializedparentaction-definitions-serializedupdatecategoryblockedtimesaction-properties-type.md "https://timelimit.io/SerializedParentAction#/definitions/SerializedUpdateCategoryBlockedTimesAction/properties/type") + +### type Type + +`string` + +### type Constraints + +**enum**: the value of this property must be equal to one of the following values: + +| Value | Explanation | +| :-------------------------------- | ----------- | +| `"UPDATE_CATEGORY_BLOCKED_TIMES"` | | + +## categoryId + + + + +`categoryId` + +- is required +- Type: `string` +- cannot be null +- defined in: [SerializedParentAction](serializedparentaction-definitions-serializedupdatecategoryblockedtimesaction-properties-categoryid.md "https://timelimit.io/SerializedParentAction#/definitions/SerializedUpdateCategoryBlockedTimesAction/properties/categoryId") + +### categoryId Type + +`string` + +## times + + + + +`times` + +- is required +- Type: `string` +- cannot be null +- defined in: [SerializedParentAction](serializedparentaction-definitions-serializedupdatecategoryblockedtimesaction-properties-times.md "https://timelimit.io/SerializedParentAction#/definitions/SerializedUpdateCategoryBlockedTimesAction/properties/times") + +### times Type + +`string` diff --git a/docs/schema/serializedparentaction-definitions-serializedupdatecategorysortingaction-properties-categoryids-items.md b/docs/schema/serializedparentaction-definitions-serializedupdatecategorysortingaction-properties-categoryids-items.md new file mode 100644 index 0000000..e138f10 --- /dev/null +++ b/docs/schema/serializedparentaction-definitions-serializedupdatecategorysortingaction-properties-categoryids-items.md @@ -0,0 +1,16 @@ +# Untitled string in SerializedParentAction Schema + +```txt +https://timelimit.io/SerializedParentAction#/definitions/SerializedUpdateCategorySortingAction/properties/categoryIds/items +``` + + + + +| Abstract | Extensible | Status | Identifiable | Custom Properties | Additional Properties | Access Restrictions | Defined In | +| :------------------ | ---------- | -------------- | ----------------------- | :---------------- | --------------------- | ------------------- | ------------------------------------------------------------------------------------------------- | +| Can be instantiated | No | Unknown status | Unknown identifiability | Forbidden | Allowed | none | [SerializedParentAction.schema.json\*](SerializedParentAction.schema.json "open original schema") | + +## items Type + +`string` diff --git a/docs/schema/serializedparentaction-definitions-serializedupdatecategorysortingaction-properties-categoryids.md b/docs/schema/serializedparentaction-definitions-serializedupdatecategorysortingaction-properties-categoryids.md new file mode 100644 index 0000000..75f230d --- /dev/null +++ b/docs/schema/serializedparentaction-definitions-serializedupdatecategorysortingaction-properties-categoryids.md @@ -0,0 +1,16 @@ +# Untitled array in SerializedParentAction Schema + +```txt +https://timelimit.io/SerializedParentAction#/definitions/SerializedUpdateCategorySortingAction/properties/categoryIds +``` + + + + +| Abstract | Extensible | Status | Identifiable | Custom Properties | Additional Properties | Access Restrictions | Defined In | +| :------------------ | ---------- | -------------- | ----------------------- | :---------------- | --------------------- | ------------------- | ------------------------------------------------------------------------------------------------- | +| Can be instantiated | No | Unknown status | Unknown identifiability | Forbidden | Allowed | none | [SerializedParentAction.schema.json\*](SerializedParentAction.schema.json "open original schema") | + +## categoryIds Type + +`string[]` diff --git a/docs/schema/serializedparentaction-definitions-serializedupdatecategorysortingaction-properties-type.md b/docs/schema/serializedparentaction-definitions-serializedupdatecategorysortingaction-properties-type.md new file mode 100644 index 0000000..194c2e6 --- /dev/null +++ b/docs/schema/serializedparentaction-definitions-serializedupdatecategorysortingaction-properties-type.md @@ -0,0 +1,24 @@ +# Untitled string in SerializedParentAction Schema + +```txt +https://timelimit.io/SerializedParentAction#/definitions/SerializedUpdateCategorySortingAction/properties/type +``` + + + + +| Abstract | Extensible | Status | Identifiable | Custom Properties | Additional Properties | Access Restrictions | Defined In | +| :------------------ | ---------- | -------------- | ----------------------- | :---------------- | --------------------- | ------------------- | ------------------------------------------------------------------------------------------------- | +| Can be instantiated | No | Unknown status | Unknown identifiability | Forbidden | Allowed | none | [SerializedParentAction.schema.json\*](SerializedParentAction.schema.json "open original schema") | + +## type Type + +`string` + +## type Constraints + +**enum**: the value of this property must be equal to one of the following values: + +| Value | Explanation | +| :-------------------------- | ----------- | +| `"UPDATE_CATEGORY_SORTING"` | | diff --git a/docs/schema/serializedparentaction-definitions-serializedupdatecategorysortingaction-properties.md b/docs/schema/serializedparentaction-definitions-serializedupdatecategorysortingaction-properties.md new file mode 100644 index 0000000..ac78dd7 --- /dev/null +++ b/docs/schema/serializedparentaction-definitions-serializedupdatecategorysortingaction-properties.md @@ -0,0 +1,16 @@ +# Untitled undefined type in SerializedParentAction Schema + +```txt +https://timelimit.io/SerializedParentAction#/definitions/SerializedUpdateCategorySortingAction/properties +``` + + + + +| Abstract | Extensible | Status | Identifiable | Custom Properties | Additional Properties | Access Restrictions | Defined In | +| :------------------ | ---------- | -------------- | ----------------------- | :---------------- | --------------------- | ------------------- | ------------------------------------------------------------------------------------------------- | +| Can be instantiated | No | Unknown status | Unknown identifiability | Forbidden | Allowed | none | [SerializedParentAction.schema.json\*](SerializedParentAction.schema.json "open original schema") | + +## properties Type + +unknown diff --git a/docs/schema/serializedparentaction-definitions-serializedupdatecategorysortingaction.md b/docs/schema/serializedparentaction-definitions-serializedupdatecategorysortingaction.md new file mode 100644 index 0000000..f911b02 --- /dev/null +++ b/docs/schema/serializedparentaction-definitions-serializedupdatecategorysortingaction.md @@ -0,0 +1,63 @@ +# SerializedUpdateCategorySortingAction Schema + +```txt +https://timelimit.io/SerializedParentAction#/definitions/SerializedUpdateCategorySortingAction +``` + + + + +| Abstract | Extensible | Status | Identifiable | Custom Properties | Additional Properties | Access Restrictions | Defined In | +| :------------------ | ---------- | -------------- | ------------ | :---------------- | --------------------- | ------------------- | ------------------------------------------------------------------------------------------------- | +| Can be instantiated | No | Unknown status | No | Forbidden | Forbidden | none | [SerializedParentAction.schema.json\*](SerializedParentAction.schema.json "open original schema") | + +## SerializedUpdateCategorySortingAction Type + +`object` ([SerializedUpdateCategorySortingAction](serializedparentaction-definitions-serializedupdatecategorysortingaction.md)) + +# SerializedUpdateCategorySortingAction Properties + +| Property | Type | Required | Nullable | Defined by | +| :-------------------------- | -------- | -------- | -------------- | :-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | +| [type](#type) | `string` | Required | cannot be null | [SerializedParentAction](serializedparentaction-definitions-serializedupdatecategorysortingaction-properties-type.md "https://timelimit.io/SerializedParentAction#/definitions/SerializedUpdateCategorySortingAction/properties/type") | +| [categoryIds](#categoryIds) | `array` | Required | cannot be null | [SerializedParentAction](serializedparentaction-definitions-serializedupdatecategorysortingaction-properties-categoryids.md "https://timelimit.io/SerializedParentAction#/definitions/SerializedUpdateCategorySortingAction/properties/categoryIds") | + +## type + + + + +`type` + +- is required +- Type: `string` +- cannot be null +- defined in: [SerializedParentAction](serializedparentaction-definitions-serializedupdatecategorysortingaction-properties-type.md "https://timelimit.io/SerializedParentAction#/definitions/SerializedUpdateCategorySortingAction/properties/type") + +### type Type + +`string` + +### type Constraints + +**enum**: the value of this property must be equal to one of the following values: + +| Value | Explanation | +| :-------------------------- | ----------- | +| `"UPDATE_CATEGORY_SORTING"` | | + +## categoryIds + + + + +`categoryIds` + +- is required +- Type: `string[]` +- cannot be null +- defined in: [SerializedParentAction](serializedparentaction-definitions-serializedupdatecategorysortingaction-properties-categoryids.md "https://timelimit.io/SerializedParentAction#/definitions/SerializedUpdateCategorySortingAction/properties/categoryIds") + +### categoryIds Type + +`string[]` diff --git a/docs/schema/serializedparentaction-definitions-serializedupdatecategorytemporarilyblockedaction-properties-blocked.md b/docs/schema/serializedparentaction-definitions-serializedupdatecategorytemporarilyblockedaction-properties-blocked.md new file mode 100644 index 0000000..09e9134 --- /dev/null +++ b/docs/schema/serializedparentaction-definitions-serializedupdatecategorytemporarilyblockedaction-properties-blocked.md @@ -0,0 +1,16 @@ +# Untitled boolean in SerializedParentAction Schema + +```txt +https://timelimit.io/SerializedParentAction#/definitions/SerializedUpdateCategoryTemporarilyBlockedAction/properties/blocked +``` + + + + +| Abstract | Extensible | Status | Identifiable | Custom Properties | Additional Properties | Access Restrictions | Defined In | +| :------------------ | ---------- | -------------- | ----------------------- | :---------------- | --------------------- | ------------------- | ------------------------------------------------------------------------------------------------- | +| Can be instantiated | No | Unknown status | Unknown identifiability | Forbidden | Allowed | none | [SerializedParentAction.schema.json\*](SerializedParentAction.schema.json "open original schema") | + +## blocked Type + +`boolean` diff --git a/docs/schema/serializedparentaction-definitions-serializedupdatecategorytemporarilyblockedaction-properties-categoryid.md b/docs/schema/serializedparentaction-definitions-serializedupdatecategorytemporarilyblockedaction-properties-categoryid.md new file mode 100644 index 0000000..26e745b --- /dev/null +++ b/docs/schema/serializedparentaction-definitions-serializedupdatecategorytemporarilyblockedaction-properties-categoryid.md @@ -0,0 +1,16 @@ +# Untitled string in SerializedParentAction Schema + +```txt +https://timelimit.io/SerializedParentAction#/definitions/SerializedUpdateCategoryTemporarilyBlockedAction/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 | [SerializedParentAction.schema.json\*](SerializedParentAction.schema.json "open original schema") | + +## categoryId Type + +`string` diff --git a/docs/schema/serializedparentaction-definitions-serializedupdatecategorytemporarilyblockedaction-properties-endtime.md b/docs/schema/serializedparentaction-definitions-serializedupdatecategorytemporarilyblockedaction-properties-endtime.md new file mode 100644 index 0000000..afed6b2 --- /dev/null +++ b/docs/schema/serializedparentaction-definitions-serializedupdatecategorytemporarilyblockedaction-properties-endtime.md @@ -0,0 +1,16 @@ +# Untitled number in SerializedParentAction Schema + +```txt +https://timelimit.io/SerializedParentAction#/definitions/SerializedUpdateCategoryTemporarilyBlockedAction/properties/endTime +``` + + + + +| Abstract | Extensible | Status | Identifiable | Custom Properties | Additional Properties | Access Restrictions | Defined In | +| :------------------ | ---------- | -------------- | ----------------------- | :---------------- | --------------------- | ------------------- | ------------------------------------------------------------------------------------------------- | +| Can be instantiated | No | Unknown status | Unknown identifiability | Forbidden | Allowed | none | [SerializedParentAction.schema.json\*](SerializedParentAction.schema.json "open original schema") | + +## endTime Type + +`number` diff --git a/docs/schema/serializedparentaction-definitions-serializedupdatecategorytemporarilyblockedaction-properties-type.md b/docs/schema/serializedparentaction-definitions-serializedupdatecategorytemporarilyblockedaction-properties-type.md new file mode 100644 index 0000000..77172b6 --- /dev/null +++ b/docs/schema/serializedparentaction-definitions-serializedupdatecategorytemporarilyblockedaction-properties-type.md @@ -0,0 +1,24 @@ +# Untitled string in SerializedParentAction Schema + +```txt +https://timelimit.io/SerializedParentAction#/definitions/SerializedUpdateCategoryTemporarilyBlockedAction/properties/type +``` + + + + +| Abstract | Extensible | Status | Identifiable | Custom Properties | Additional Properties | Access Restrictions | Defined In | +| :------------------ | ---------- | -------------- | ----------------------- | :---------------- | --------------------- | ------------------- | ------------------------------------------------------------------------------------------------- | +| Can be instantiated | No | Unknown status | Unknown identifiability | Forbidden | Allowed | none | [SerializedParentAction.schema.json\*](SerializedParentAction.schema.json "open original schema") | + +## type Type + +`string` + +## type Constraints + +**enum**: the value of this property must be equal to one of the following values: + +| Value | Explanation | +| :-------------------------------------- | ----------- | +| `"UPDATE_CATEGORY_TEMPORARILY_BLOCKED"` | | diff --git a/docs/schema/serializedparentaction-definitions-serializedupdatecategorytemporarilyblockedaction-properties.md b/docs/schema/serializedparentaction-definitions-serializedupdatecategorytemporarilyblockedaction-properties.md new file mode 100644 index 0000000..d2b9691 --- /dev/null +++ b/docs/schema/serializedparentaction-definitions-serializedupdatecategorytemporarilyblockedaction-properties.md @@ -0,0 +1,16 @@ +# Untitled undefined type in SerializedParentAction Schema + +```txt +https://timelimit.io/SerializedParentAction#/definitions/SerializedUpdateCategoryTemporarilyBlockedAction/properties +``` + + + + +| Abstract | Extensible | Status | Identifiable | Custom Properties | Additional Properties | Access Restrictions | Defined In | +| :------------------ | ---------- | -------------- | ----------------------- | :---------------- | --------------------- | ------------------- | ------------------------------------------------------------------------------------------------- | +| Can be instantiated | No | Unknown status | Unknown identifiability | Forbidden | Allowed | none | [SerializedParentAction.schema.json\*](SerializedParentAction.schema.json "open original schema") | + +## properties Type + +unknown diff --git a/docs/schema/serializedparentaction-definitions-serializedupdatecategorytemporarilyblockedaction.md b/docs/schema/serializedparentaction-definitions-serializedupdatecategorytemporarilyblockedaction.md new file mode 100644 index 0000000..76b8f4a --- /dev/null +++ b/docs/schema/serializedparentaction-definitions-serializedupdatecategorytemporarilyblockedaction.md @@ -0,0 +1,97 @@ +# SerializedUpdateCategoryTemporarilyBlockedAction Schema + +```txt +https://timelimit.io/SerializedParentAction#/definitions/SerializedUpdateCategoryTemporarilyBlockedAction +``` + + + + +| Abstract | Extensible | Status | Identifiable | Custom Properties | Additional Properties | Access Restrictions | Defined In | +| :------------------ | ---------- | -------------- | ------------ | :---------------- | --------------------- | ------------------- | ------------------------------------------------------------------------------------------------- | +| Can be instantiated | No | Unknown status | No | Forbidden | Forbidden | none | [SerializedParentAction.schema.json\*](SerializedParentAction.schema.json "open original schema") | + +## SerializedUpdateCategoryTemporarilyBlockedAction Type + +`object` ([SerializedUpdateCategoryTemporarilyBlockedAction](serializedparentaction-definitions-serializedupdatecategorytemporarilyblockedaction.md)) + +# SerializedUpdateCategoryTemporarilyBlockedAction Properties + +| Property | Type | Required | Nullable | Defined by | +| :------------------------ | --------- | -------- | -------------- | :---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | +| [type](#type) | `string` | Required | cannot be null | [SerializedParentAction](serializedparentaction-definitions-serializedupdatecategorytemporarilyblockedaction-properties-type.md "https://timelimit.io/SerializedParentAction#/definitions/SerializedUpdateCategoryTemporarilyBlockedAction/properties/type") | +| [categoryId](#categoryId) | `string` | Required | cannot be null | [SerializedParentAction](serializedparentaction-definitions-serializedupdatecategorytemporarilyblockedaction-properties-categoryid.md "https://timelimit.io/SerializedParentAction#/definitions/SerializedUpdateCategoryTemporarilyBlockedAction/properties/categoryId") | +| [blocked](#blocked) | `boolean` | Required | cannot be null | [SerializedParentAction](serializedparentaction-definitions-serializedupdatecategorytemporarilyblockedaction-properties-blocked.md "https://timelimit.io/SerializedParentAction#/definitions/SerializedUpdateCategoryTemporarilyBlockedAction/properties/blocked") | +| [endTime](#endTime) | `number` | Optional | cannot be null | [SerializedParentAction](serializedparentaction-definitions-serializedupdatecategorytemporarilyblockedaction-properties-endtime.md "https://timelimit.io/SerializedParentAction#/definitions/SerializedUpdateCategoryTemporarilyBlockedAction/properties/endTime") | + +## type + + + + +`type` + +- is required +- Type: `string` +- cannot be null +- defined in: [SerializedParentAction](serializedparentaction-definitions-serializedupdatecategorytemporarilyblockedaction-properties-type.md "https://timelimit.io/SerializedParentAction#/definitions/SerializedUpdateCategoryTemporarilyBlockedAction/properties/type") + +### type Type + +`string` + +### type Constraints + +**enum**: the value of this property must be equal to one of the following values: + +| Value | Explanation | +| :-------------------------------------- | ----------- | +| `"UPDATE_CATEGORY_TEMPORARILY_BLOCKED"` | | + +## categoryId + + + + +`categoryId` + +- is required +- Type: `string` +- cannot be null +- defined in: [SerializedParentAction](serializedparentaction-definitions-serializedupdatecategorytemporarilyblockedaction-properties-categoryid.md "https://timelimit.io/SerializedParentAction#/definitions/SerializedUpdateCategoryTemporarilyBlockedAction/properties/categoryId") + +### categoryId Type + +`string` + +## blocked + + + + +`blocked` + +- is required +- Type: `boolean` +- cannot be null +- defined in: [SerializedParentAction](serializedparentaction-definitions-serializedupdatecategorytemporarilyblockedaction-properties-blocked.md "https://timelimit.io/SerializedParentAction#/definitions/SerializedUpdateCategoryTemporarilyBlockedAction/properties/blocked") + +### blocked Type + +`boolean` + +## endTime + + + + +`endTime` + +- is optional +- Type: `number` +- cannot be null +- defined in: [SerializedParentAction](serializedparentaction-definitions-serializedupdatecategorytemporarilyblockedaction-properties-endtime.md "https://timelimit.io/SerializedParentAction#/definitions/SerializedUpdateCategoryTemporarilyBlockedAction/properties/endTime") + +### endTime Type + +`number` diff --git a/docs/schema/serializedparentaction-definitions-serializedupdatecategorytimewarningsaction-properties-categoryid.md b/docs/schema/serializedparentaction-definitions-serializedupdatecategorytimewarningsaction-properties-categoryid.md new file mode 100644 index 0000000..5c10759 --- /dev/null +++ b/docs/schema/serializedparentaction-definitions-serializedupdatecategorytimewarningsaction-properties-categoryid.md @@ -0,0 +1,16 @@ +# Untitled string in SerializedParentAction Schema + +```txt +https://timelimit.io/SerializedParentAction#/definitions/SerializedUpdateCategoryTimeWarningsAction/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 | [SerializedParentAction.schema.json\*](SerializedParentAction.schema.json "open original schema") | + +## categoryId Type + +`string` diff --git a/docs/schema/serializedparentaction-definitions-serializedupdatecategorytimewarningsaction-properties-enable.md b/docs/schema/serializedparentaction-definitions-serializedupdatecategorytimewarningsaction-properties-enable.md new file mode 100644 index 0000000..b8fdd85 --- /dev/null +++ b/docs/schema/serializedparentaction-definitions-serializedupdatecategorytimewarningsaction-properties-enable.md @@ -0,0 +1,16 @@ +# Untitled boolean in SerializedParentAction Schema + +```txt +https://timelimit.io/SerializedParentAction#/definitions/SerializedUpdateCategoryTimeWarningsAction/properties/enable +``` + + + + +| Abstract | Extensible | Status | Identifiable | Custom Properties | Additional Properties | Access Restrictions | Defined In | +| :------------------ | ---------- | -------------- | ----------------------- | :---------------- | --------------------- | ------------------- | ------------------------------------------------------------------------------------------------- | +| Can be instantiated | No | Unknown status | Unknown identifiability | Forbidden | Allowed | none | [SerializedParentAction.schema.json\*](SerializedParentAction.schema.json "open original schema") | + +## enable Type + +`boolean` diff --git a/docs/schema/serializedparentaction-definitions-serializedupdatecategorytimewarningsaction-properties-flags.md b/docs/schema/serializedparentaction-definitions-serializedupdatecategorytimewarningsaction-properties-flags.md new file mode 100644 index 0000000..f0dca34 --- /dev/null +++ b/docs/schema/serializedparentaction-definitions-serializedupdatecategorytimewarningsaction-properties-flags.md @@ -0,0 +1,16 @@ +# Untitled number in SerializedParentAction Schema + +```txt +https://timelimit.io/SerializedParentAction#/definitions/SerializedUpdateCategoryTimeWarningsAction/properties/flags +``` + + + + +| Abstract | Extensible | Status | Identifiable | Custom Properties | Additional Properties | Access Restrictions | Defined In | +| :------------------ | ---------- | -------------- | ----------------------- | :---------------- | --------------------- | ------------------- | ------------------------------------------------------------------------------------------------- | +| Can be instantiated | No | Unknown status | Unknown identifiability | Forbidden | Allowed | none | [SerializedParentAction.schema.json\*](SerializedParentAction.schema.json "open original schema") | + +## flags Type + +`number` diff --git a/docs/schema/serializedparentaction-definitions-serializedupdatecategorytimewarningsaction-properties-type.md b/docs/schema/serializedparentaction-definitions-serializedupdatecategorytimewarningsaction-properties-type.md new file mode 100644 index 0000000..f9ee39a --- /dev/null +++ b/docs/schema/serializedparentaction-definitions-serializedupdatecategorytimewarningsaction-properties-type.md @@ -0,0 +1,24 @@ +# Untitled string in SerializedParentAction Schema + +```txt +https://timelimit.io/SerializedParentAction#/definitions/SerializedUpdateCategoryTimeWarningsAction/properties/type +``` + + + + +| Abstract | Extensible | Status | Identifiable | Custom Properties | Additional Properties | Access Restrictions | Defined In | +| :------------------ | ---------- | -------------- | ----------------------- | :---------------- | --------------------- | ------------------- | ------------------------------------------------------------------------------------------------- | +| Can be instantiated | No | Unknown status | Unknown identifiability | Forbidden | Allowed | none | [SerializedParentAction.schema.json\*](SerializedParentAction.schema.json "open original schema") | + +## type Type + +`string` + +## type Constraints + +**enum**: the value of this property must be equal to one of the following values: + +| Value | Explanation | +| :-------------------------------- | ----------- | +| `"UPDATE_CATEGORY_TIME_WARNINGS"` | | diff --git a/docs/schema/serializedparentaction-definitions-serializedupdatecategorytimewarningsaction-properties.md b/docs/schema/serializedparentaction-definitions-serializedupdatecategorytimewarningsaction-properties.md new file mode 100644 index 0000000..a62ad74 --- /dev/null +++ b/docs/schema/serializedparentaction-definitions-serializedupdatecategorytimewarningsaction-properties.md @@ -0,0 +1,16 @@ +# Untitled undefined type in SerializedParentAction Schema + +```txt +https://timelimit.io/SerializedParentAction#/definitions/SerializedUpdateCategoryTimeWarningsAction/properties +``` + + + + +| Abstract | Extensible | Status | Identifiable | Custom Properties | Additional Properties | Access Restrictions | Defined In | +| :------------------ | ---------- | -------------- | ----------------------- | :---------------- | --------------------- | ------------------- | ------------------------------------------------------------------------------------------------- | +| Can be instantiated | No | Unknown status | Unknown identifiability | Forbidden | Allowed | none | [SerializedParentAction.schema.json\*](SerializedParentAction.schema.json "open original schema") | + +## properties Type + +unknown diff --git a/docs/schema/serializedparentaction-definitions-serializedupdatecategorytimewarningsaction.md b/docs/schema/serializedparentaction-definitions-serializedupdatecategorytimewarningsaction.md new file mode 100644 index 0000000..edfd629 --- /dev/null +++ b/docs/schema/serializedparentaction-definitions-serializedupdatecategorytimewarningsaction.md @@ -0,0 +1,97 @@ +# SerializedUpdateCategoryTimeWarningsAction Schema + +```txt +https://timelimit.io/SerializedParentAction#/definitions/SerializedUpdateCategoryTimeWarningsAction +``` + + + + +| Abstract | Extensible | Status | Identifiable | Custom Properties | Additional Properties | Access Restrictions | Defined In | +| :------------------ | ---------- | -------------- | ------------ | :---------------- | --------------------- | ------------------- | ------------------------------------------------------------------------------------------------- | +| Can be instantiated | No | Unknown status | No | Forbidden | Forbidden | none | [SerializedParentAction.schema.json\*](SerializedParentAction.schema.json "open original schema") | + +## SerializedUpdateCategoryTimeWarningsAction Type + +`object` ([SerializedUpdateCategoryTimeWarningsAction](serializedparentaction-definitions-serializedupdatecategorytimewarningsaction.md)) + +# SerializedUpdateCategoryTimeWarningsAction Properties + +| Property | Type | Required | Nullable | Defined by | +| :------------------------ | --------- | -------- | -------------- | :---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | +| [type](#type) | `string` | Required | cannot be null | [SerializedParentAction](serializedparentaction-definitions-serializedupdatecategorytimewarningsaction-properties-type.md "https://timelimit.io/SerializedParentAction#/definitions/SerializedUpdateCategoryTimeWarningsAction/properties/type") | +| [categoryId](#categoryId) | `string` | Required | cannot be null | [SerializedParentAction](serializedparentaction-definitions-serializedupdatecategorytimewarningsaction-properties-categoryid.md "https://timelimit.io/SerializedParentAction#/definitions/SerializedUpdateCategoryTimeWarningsAction/properties/categoryId") | +| [enable](#enable) | `boolean` | Required | cannot be null | [SerializedParentAction](serializedparentaction-definitions-serializedupdatecategorytimewarningsaction-properties-enable.md "https://timelimit.io/SerializedParentAction#/definitions/SerializedUpdateCategoryTimeWarningsAction/properties/enable") | +| [flags](#flags) | `number` | Required | cannot be null | [SerializedParentAction](serializedparentaction-definitions-serializedupdatecategorytimewarningsaction-properties-flags.md "https://timelimit.io/SerializedParentAction#/definitions/SerializedUpdateCategoryTimeWarningsAction/properties/flags") | + +## type + + + + +`type` + +- is required +- Type: `string` +- cannot be null +- defined in: [SerializedParentAction](serializedparentaction-definitions-serializedupdatecategorytimewarningsaction-properties-type.md "https://timelimit.io/SerializedParentAction#/definitions/SerializedUpdateCategoryTimeWarningsAction/properties/type") + +### type Type + +`string` + +### type Constraints + +**enum**: the value of this property must be equal to one of the following values: + +| Value | Explanation | +| :-------------------------------- | ----------- | +| `"UPDATE_CATEGORY_TIME_WARNINGS"` | | + +## categoryId + + + + +`categoryId` + +- is required +- Type: `string` +- cannot be null +- defined in: [SerializedParentAction](serializedparentaction-definitions-serializedupdatecategorytimewarningsaction-properties-categoryid.md "https://timelimit.io/SerializedParentAction#/definitions/SerializedUpdateCategoryTimeWarningsAction/properties/categoryId") + +### categoryId Type + +`string` + +## enable + + + + +`enable` + +- is required +- Type: `boolean` +- cannot be null +- defined in: [SerializedParentAction](serializedparentaction-definitions-serializedupdatecategorytimewarningsaction-properties-enable.md "https://timelimit.io/SerializedParentAction#/definitions/SerializedUpdateCategoryTimeWarningsAction/properties/enable") + +### enable Type + +`boolean` + +## flags + + + + +`flags` + +- is required +- Type: `number` +- cannot be null +- defined in: [SerializedParentAction](serializedparentaction-definitions-serializedupdatecategorytimewarningsaction-properties-flags.md "https://timelimit.io/SerializedParentAction#/definitions/SerializedUpdateCategoryTimeWarningsAction/properties/flags") + +### flags Type + +`number` diff --git a/docs/schema/serializedparentaction-definitions-serializedupdatecategorytitleaction-properties-categoryid.md b/docs/schema/serializedparentaction-definitions-serializedupdatecategorytitleaction-properties-categoryid.md new file mode 100644 index 0000000..2a90868 --- /dev/null +++ b/docs/schema/serializedparentaction-definitions-serializedupdatecategorytitleaction-properties-categoryid.md @@ -0,0 +1,16 @@ +# Untitled string in SerializedParentAction Schema + +```txt +https://timelimit.io/SerializedParentAction#/definitions/SerializedUpdateCategoryTitleAction/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 | [SerializedParentAction.schema.json\*](SerializedParentAction.schema.json "open original schema") | + +## categoryId Type + +`string` diff --git a/docs/schema/serializedparentaction-definitions-serializedupdatecategorytitleaction-properties-newtitle.md b/docs/schema/serializedparentaction-definitions-serializedupdatecategorytitleaction-properties-newtitle.md new file mode 100644 index 0000000..7f6a693 --- /dev/null +++ b/docs/schema/serializedparentaction-definitions-serializedupdatecategorytitleaction-properties-newtitle.md @@ -0,0 +1,16 @@ +# Untitled string in SerializedParentAction Schema + +```txt +https://timelimit.io/SerializedParentAction#/definitions/SerializedUpdateCategoryTitleAction/properties/newTitle +``` + + + + +| Abstract | Extensible | Status | Identifiable | Custom Properties | Additional Properties | Access Restrictions | Defined In | +| :------------------ | ---------- | -------------- | ----------------------- | :---------------- | --------------------- | ------------------- | ------------------------------------------------------------------------------------------------- | +| Can be instantiated | No | Unknown status | Unknown identifiability | Forbidden | Allowed | none | [SerializedParentAction.schema.json\*](SerializedParentAction.schema.json "open original schema") | + +## newTitle Type + +`string` diff --git a/docs/schema/serializedparentaction-definitions-serializedupdatecategorytitleaction-properties-type.md b/docs/schema/serializedparentaction-definitions-serializedupdatecategorytitleaction-properties-type.md new file mode 100644 index 0000000..4000a33 --- /dev/null +++ b/docs/schema/serializedparentaction-definitions-serializedupdatecategorytitleaction-properties-type.md @@ -0,0 +1,24 @@ +# Untitled string in SerializedParentAction Schema + +```txt +https://timelimit.io/SerializedParentAction#/definitions/SerializedUpdateCategoryTitleAction/properties/type +``` + + + + +| Abstract | Extensible | Status | Identifiable | Custom Properties | Additional Properties | Access Restrictions | Defined In | +| :------------------ | ---------- | -------------- | ----------------------- | :---------------- | --------------------- | ------------------- | ------------------------------------------------------------------------------------------------- | +| Can be instantiated | No | Unknown status | Unknown identifiability | Forbidden | Allowed | none | [SerializedParentAction.schema.json\*](SerializedParentAction.schema.json "open original schema") | + +## type Type + +`string` + +## type Constraints + +**enum**: the value of this property must be equal to one of the following values: + +| Value | Explanation | +| :------------------------ | ----------- | +| `"UPDATE_CATEGORY_TITLE"` | | diff --git a/docs/schema/serializedparentaction-definitions-serializedupdatecategorytitleaction-properties.md b/docs/schema/serializedparentaction-definitions-serializedupdatecategorytitleaction-properties.md new file mode 100644 index 0000000..9150909 --- /dev/null +++ b/docs/schema/serializedparentaction-definitions-serializedupdatecategorytitleaction-properties.md @@ -0,0 +1,16 @@ +# Untitled undefined type in SerializedParentAction Schema + +```txt +https://timelimit.io/SerializedParentAction#/definitions/SerializedUpdateCategoryTitleAction/properties +``` + + + + +| Abstract | Extensible | Status | Identifiable | Custom Properties | Additional Properties | Access Restrictions | Defined In | +| :------------------ | ---------- | -------------- | ----------------------- | :---------------- | --------------------- | ------------------- | ------------------------------------------------------------------------------------------------- | +| Can be instantiated | No | Unknown status | Unknown identifiability | Forbidden | Allowed | none | [SerializedParentAction.schema.json\*](SerializedParentAction.schema.json "open original schema") | + +## properties Type + +unknown diff --git a/docs/schema/serializedparentaction-definitions-serializedupdatecategorytitleaction.md b/docs/schema/serializedparentaction-definitions-serializedupdatecategorytitleaction.md new file mode 100644 index 0000000..049ea3e --- /dev/null +++ b/docs/schema/serializedparentaction-definitions-serializedupdatecategorytitleaction.md @@ -0,0 +1,80 @@ +# SerializedUpdateCategoryTitleAction Schema + +```txt +https://timelimit.io/SerializedParentAction#/definitions/SerializedUpdateCategoryTitleAction +``` + + + + +| Abstract | Extensible | Status | Identifiable | Custom Properties | Additional Properties | Access Restrictions | Defined In | +| :------------------ | ---------- | -------------- | ------------ | :---------------- | --------------------- | ------------------- | ------------------------------------------------------------------------------------------------- | +| Can be instantiated | No | Unknown status | No | Forbidden | Forbidden | none | [SerializedParentAction.schema.json\*](SerializedParentAction.schema.json "open original schema") | + +## SerializedUpdateCategoryTitleAction Type + +`object` ([SerializedUpdateCategoryTitleAction](serializedparentaction-definitions-serializedupdatecategorytitleaction.md)) + +# SerializedUpdateCategoryTitleAction Properties + +| Property | Type | Required | Nullable | Defined by | +| :------------------------ | -------- | -------- | -------------- | :-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | +| [type](#type) | `string` | Required | cannot be null | [SerializedParentAction](serializedparentaction-definitions-serializedupdatecategorytitleaction-properties-type.md "https://timelimit.io/SerializedParentAction#/definitions/SerializedUpdateCategoryTitleAction/properties/type") | +| [categoryId](#categoryId) | `string` | Required | cannot be null | [SerializedParentAction](serializedparentaction-definitions-serializedupdatecategorytitleaction-properties-categoryid.md "https://timelimit.io/SerializedParentAction#/definitions/SerializedUpdateCategoryTitleAction/properties/categoryId") | +| [newTitle](#newTitle) | `string` | Required | cannot be null | [SerializedParentAction](serializedparentaction-definitions-serializedupdatecategorytitleaction-properties-newtitle.md "https://timelimit.io/SerializedParentAction#/definitions/SerializedUpdateCategoryTitleAction/properties/newTitle") | + +## type + + + + +`type` + +- is required +- Type: `string` +- cannot be null +- defined in: [SerializedParentAction](serializedparentaction-definitions-serializedupdatecategorytitleaction-properties-type.md "https://timelimit.io/SerializedParentAction#/definitions/SerializedUpdateCategoryTitleAction/properties/type") + +### type Type + +`string` + +### type Constraints + +**enum**: the value of this property must be equal to one of the following values: + +| Value | Explanation | +| :------------------------ | ----------- | +| `"UPDATE_CATEGORY_TITLE"` | | + +## categoryId + + + + +`categoryId` + +- is required +- Type: `string` +- cannot be null +- defined in: [SerializedParentAction](serializedparentaction-definitions-serializedupdatecategorytitleaction-properties-categoryid.md "https://timelimit.io/SerializedParentAction#/definitions/SerializedUpdateCategoryTitleAction/properties/categoryId") + +### categoryId Type + +`string` + +## newTitle + + + + +`newTitle` + +- is required +- Type: `string` +- cannot be null +- defined in: [SerializedParentAction](serializedparentaction-definitions-serializedupdatecategorytitleaction-properties-newtitle.md "https://timelimit.io/SerializedParentAction#/definitions/SerializedUpdateCategoryTitleAction/properties/newTitle") + +### newTitle Type + +`string` diff --git a/docs/schema/serializedparentaction-definitions-serializedupdatedevicenameaction-properties-deviceid.md b/docs/schema/serializedparentaction-definitions-serializedupdatedevicenameaction-properties-deviceid.md new file mode 100644 index 0000000..c7d9df0 --- /dev/null +++ b/docs/schema/serializedparentaction-definitions-serializedupdatedevicenameaction-properties-deviceid.md @@ -0,0 +1,16 @@ +# Untitled string in SerializedParentAction Schema + +```txt +https://timelimit.io/SerializedParentAction#/definitions/SerializedUpdateDeviceNameAction/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 | [SerializedParentAction.schema.json\*](SerializedParentAction.schema.json "open original schema") | + +## deviceId Type + +`string` diff --git a/docs/schema/serializedparentaction-definitions-serializedupdatedevicenameaction-properties-name.md b/docs/schema/serializedparentaction-definitions-serializedupdatedevicenameaction-properties-name.md new file mode 100644 index 0000000..6075f01 --- /dev/null +++ b/docs/schema/serializedparentaction-definitions-serializedupdatedevicenameaction-properties-name.md @@ -0,0 +1,16 @@ +# Untitled string in SerializedParentAction Schema + +```txt +https://timelimit.io/SerializedParentAction#/definitions/SerializedUpdateDeviceNameAction/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 | [SerializedParentAction.schema.json\*](SerializedParentAction.schema.json "open original schema") | + +## name Type + +`string` diff --git a/docs/schema/serializedparentaction-definitions-serializedupdatedevicenameaction-properties-type.md b/docs/schema/serializedparentaction-definitions-serializedupdatedevicenameaction-properties-type.md new file mode 100644 index 0000000..0abc845 --- /dev/null +++ b/docs/schema/serializedparentaction-definitions-serializedupdatedevicenameaction-properties-type.md @@ -0,0 +1,24 @@ +# Untitled string in SerializedParentAction Schema + +```txt +https://timelimit.io/SerializedParentAction#/definitions/SerializedUpdateDeviceNameAction/properties/type +``` + + + + +| Abstract | Extensible | Status | Identifiable | Custom Properties | Additional Properties | Access Restrictions | Defined In | +| :------------------ | ---------- | -------------- | ----------------------- | :---------------- | --------------------- | ------------------- | ------------------------------------------------------------------------------------------------- | +| Can be instantiated | No | Unknown status | Unknown identifiability | Forbidden | Allowed | none | [SerializedParentAction.schema.json\*](SerializedParentAction.schema.json "open original schema") | + +## type Type + +`string` + +## type Constraints + +**enum**: the value of this property must be equal to one of the following values: + +| Value | Explanation | +| :--------------------- | ----------- | +| `"UPDATE_DEVICE_NAME"` | | diff --git a/docs/schema/serializedparentaction-definitions-serializedupdatedevicenameaction-properties.md b/docs/schema/serializedparentaction-definitions-serializedupdatedevicenameaction-properties.md new file mode 100644 index 0000000..c077a29 --- /dev/null +++ b/docs/schema/serializedparentaction-definitions-serializedupdatedevicenameaction-properties.md @@ -0,0 +1,16 @@ +# Untitled undefined type in SerializedParentAction Schema + +```txt +https://timelimit.io/SerializedParentAction#/definitions/SerializedUpdateDeviceNameAction/properties +``` + + + + +| Abstract | Extensible | Status | Identifiable | Custom Properties | Additional Properties | Access Restrictions | Defined In | +| :------------------ | ---------- | -------------- | ----------------------- | :---------------- | --------------------- | ------------------- | ------------------------------------------------------------------------------------------------- | +| Can be instantiated | No | Unknown status | Unknown identifiability | Forbidden | Allowed | none | [SerializedParentAction.schema.json\*](SerializedParentAction.schema.json "open original schema") | + +## properties Type + +unknown diff --git a/docs/schema/serializedparentaction-definitions-serializedupdatedevicenameaction.md b/docs/schema/serializedparentaction-definitions-serializedupdatedevicenameaction.md new file mode 100644 index 0000000..0c660b2 --- /dev/null +++ b/docs/schema/serializedparentaction-definitions-serializedupdatedevicenameaction.md @@ -0,0 +1,80 @@ +# SerializedUpdateDeviceNameAction Schema + +```txt +https://timelimit.io/SerializedParentAction#/definitions/SerializedUpdateDeviceNameAction +``` + + + + +| Abstract | Extensible | Status | Identifiable | Custom Properties | Additional Properties | Access Restrictions | Defined In | +| :------------------ | ---------- | -------------- | ------------ | :---------------- | --------------------- | ------------------- | ------------------------------------------------------------------------------------------------- | +| Can be instantiated | No | Unknown status | No | Forbidden | Forbidden | none | [SerializedParentAction.schema.json\*](SerializedParentAction.schema.json "open original schema") | + +## SerializedUpdateDeviceNameAction Type + +`object` ([SerializedUpdateDeviceNameAction](serializedparentaction-definitions-serializedupdatedevicenameaction.md)) + +# SerializedUpdateDeviceNameAction Properties + +| Property | Type | Required | Nullable | Defined by | +| :-------------------- | -------- | -------- | -------------- | :---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | +| [type](#type) | `string` | Required | cannot be null | [SerializedParentAction](serializedparentaction-definitions-serializedupdatedevicenameaction-properties-type.md "https://timelimit.io/SerializedParentAction#/definitions/SerializedUpdateDeviceNameAction/properties/type") | +| [deviceId](#deviceId) | `string` | Required | cannot be null | [SerializedParentAction](serializedparentaction-definitions-serializedupdatedevicenameaction-properties-deviceid.md "https://timelimit.io/SerializedParentAction#/definitions/SerializedUpdateDeviceNameAction/properties/deviceId") | +| [name](#name) | `string` | Required | cannot be null | [SerializedParentAction](serializedparentaction-definitions-serializedupdatedevicenameaction-properties-name.md "https://timelimit.io/SerializedParentAction#/definitions/SerializedUpdateDeviceNameAction/properties/name") | + +## type + + + + +`type` + +- is required +- Type: `string` +- cannot be null +- defined in: [SerializedParentAction](serializedparentaction-definitions-serializedupdatedevicenameaction-properties-type.md "https://timelimit.io/SerializedParentAction#/definitions/SerializedUpdateDeviceNameAction/properties/type") + +### type Type + +`string` + +### type Constraints + +**enum**: the value of this property must be equal to one of the following values: + +| Value | Explanation | +| :--------------------- | ----------- | +| `"UPDATE_DEVICE_NAME"` | | + +## deviceId + + + + +`deviceId` + +- is required +- Type: `string` +- cannot be null +- defined in: [SerializedParentAction](serializedparentaction-definitions-serializedupdatedevicenameaction-properties-deviceid.md "https://timelimit.io/SerializedParentAction#/definitions/SerializedUpdateDeviceNameAction/properties/deviceId") + +### deviceId Type + +`string` + +## name + + + + +`name` + +- is required +- Type: `string` +- cannot be null +- defined in: [SerializedParentAction](serializedparentaction-definitions-serializedupdatedevicenameaction-properties-name.md "https://timelimit.io/SerializedParentAction#/definitions/SerializedUpdateDeviceNameAction/properties/name") + +### name Type + +`string` diff --git a/docs/schema/serializedparentaction-definitions-serializedupdateenableactivitylevelblockingaction-properties-deviceid.md b/docs/schema/serializedparentaction-definitions-serializedupdateenableactivitylevelblockingaction-properties-deviceid.md new file mode 100644 index 0000000..009fbad --- /dev/null +++ b/docs/schema/serializedparentaction-definitions-serializedupdateenableactivitylevelblockingaction-properties-deviceid.md @@ -0,0 +1,16 @@ +# Untitled string in SerializedParentAction Schema + +```txt +https://timelimit.io/SerializedParentAction#/definitions/SerializedUpdateEnableActivityLevelBlockingAction/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 | [SerializedParentAction.schema.json\*](SerializedParentAction.schema.json "open original schema") | + +## deviceId Type + +`string` diff --git a/docs/schema/serializedparentaction-definitions-serializedupdateenableactivitylevelblockingaction-properties-enable.md b/docs/schema/serializedparentaction-definitions-serializedupdateenableactivitylevelblockingaction-properties-enable.md new file mode 100644 index 0000000..5ef5f13 --- /dev/null +++ b/docs/schema/serializedparentaction-definitions-serializedupdateenableactivitylevelblockingaction-properties-enable.md @@ -0,0 +1,16 @@ +# Untitled boolean in SerializedParentAction Schema + +```txt +https://timelimit.io/SerializedParentAction#/definitions/SerializedUpdateEnableActivityLevelBlockingAction/properties/enable +``` + + + + +| Abstract | Extensible | Status | Identifiable | Custom Properties | Additional Properties | Access Restrictions | Defined In | +| :------------------ | ---------- | -------------- | ----------------------- | :---------------- | --------------------- | ------------------- | ------------------------------------------------------------------------------------------------- | +| Can be instantiated | No | Unknown status | Unknown identifiability | Forbidden | Allowed | none | [SerializedParentAction.schema.json\*](SerializedParentAction.schema.json "open original schema") | + +## enable Type + +`boolean` diff --git a/docs/schema/serializedparentaction-definitions-serializedupdateenableactivitylevelblockingaction-properties-type.md b/docs/schema/serializedparentaction-definitions-serializedupdateenableactivitylevelblockingaction-properties-type.md new file mode 100644 index 0000000..0154b6c --- /dev/null +++ b/docs/schema/serializedparentaction-definitions-serializedupdateenableactivitylevelblockingaction-properties-type.md @@ -0,0 +1,24 @@ +# Untitled string in SerializedParentAction Schema + +```txt +https://timelimit.io/SerializedParentAction#/definitions/SerializedUpdateEnableActivityLevelBlockingAction/properties/type +``` + + + + +| Abstract | Extensible | Status | Identifiable | Custom Properties | Additional Properties | Access Restrictions | Defined In | +| :------------------ | ---------- | -------------- | ----------------------- | :---------------- | --------------------- | ------------------- | ------------------------------------------------------------------------------------------------- | +| Can be instantiated | No | Unknown status | Unknown identifiability | Forbidden | Allowed | none | [SerializedParentAction.schema.json\*](SerializedParentAction.schema.json "open original schema") | + +## type Type + +`string` + +## type Constraints + +**enum**: the value of this property must be equal to one of the following values: + +| Value | Explanation | +| :---------------------------------------- | ----------- | +| `"UPDATE_ENABLE_ACTIVITY_LEVEL_BLOCKING"` | | diff --git a/docs/schema/serializedparentaction-definitions-serializedupdateenableactivitylevelblockingaction-properties.md b/docs/schema/serializedparentaction-definitions-serializedupdateenableactivitylevelblockingaction-properties.md new file mode 100644 index 0000000..6b8b788 --- /dev/null +++ b/docs/schema/serializedparentaction-definitions-serializedupdateenableactivitylevelblockingaction-properties.md @@ -0,0 +1,16 @@ +# Untitled undefined type in SerializedParentAction Schema + +```txt +https://timelimit.io/SerializedParentAction#/definitions/SerializedUpdateEnableActivityLevelBlockingAction/properties +``` + + + + +| Abstract | Extensible | Status | Identifiable | Custom Properties | Additional Properties | Access Restrictions | Defined In | +| :------------------ | ---------- | -------------- | ----------------------- | :---------------- | --------------------- | ------------------- | ------------------------------------------------------------------------------------------------- | +| Can be instantiated | No | Unknown status | Unknown identifiability | Forbidden | Allowed | none | [SerializedParentAction.schema.json\*](SerializedParentAction.schema.json "open original schema") | + +## properties Type + +unknown diff --git a/docs/schema/serializedparentaction-definitions-serializedupdateenableactivitylevelblockingaction.md b/docs/schema/serializedparentaction-definitions-serializedupdateenableactivitylevelblockingaction.md new file mode 100644 index 0000000..33f9baa --- /dev/null +++ b/docs/schema/serializedparentaction-definitions-serializedupdateenableactivitylevelblockingaction.md @@ -0,0 +1,80 @@ +# SerializedUpdateEnableActivityLevelBlockingAction Schema + +```txt +https://timelimit.io/SerializedParentAction#/definitions/SerializedUpdateEnableActivityLevelBlockingAction +``` + + + + +| Abstract | Extensible | Status | Identifiable | Custom Properties | Additional Properties | Access Restrictions | Defined In | +| :------------------ | ---------- | -------------- | ------------ | :---------------- | --------------------- | ------------------- | ------------------------------------------------------------------------------------------------- | +| Can be instantiated | No | Unknown status | No | Forbidden | Forbidden | none | [SerializedParentAction.schema.json\*](SerializedParentAction.schema.json "open original schema") | + +## SerializedUpdateEnableActivityLevelBlockingAction Type + +`object` ([SerializedUpdateEnableActivityLevelBlockingAction](serializedparentaction-definitions-serializedupdateenableactivitylevelblockingaction.md)) + +# SerializedUpdateEnableActivityLevelBlockingAction Properties + +| Property | Type | Required | Nullable | Defined by | +| :-------------------- | --------- | -------- | -------------- | :-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | +| [type](#type) | `string` | Required | cannot be null | [SerializedParentAction](serializedparentaction-definitions-serializedupdateenableactivitylevelblockingaction-properties-type.md "https://timelimit.io/SerializedParentAction#/definitions/SerializedUpdateEnableActivityLevelBlockingAction/properties/type") | +| [deviceId](#deviceId) | `string` | Required | cannot be null | [SerializedParentAction](serializedparentaction-definitions-serializedupdateenableactivitylevelblockingaction-properties-deviceid.md "https://timelimit.io/SerializedParentAction#/definitions/SerializedUpdateEnableActivityLevelBlockingAction/properties/deviceId") | +| [enable](#enable) | `boolean` | Required | cannot be null | [SerializedParentAction](serializedparentaction-definitions-serializedupdateenableactivitylevelblockingaction-properties-enable.md "https://timelimit.io/SerializedParentAction#/definitions/SerializedUpdateEnableActivityLevelBlockingAction/properties/enable") | + +## type + + + + +`type` + +- is required +- Type: `string` +- cannot be null +- defined in: [SerializedParentAction](serializedparentaction-definitions-serializedupdateenableactivitylevelblockingaction-properties-type.md "https://timelimit.io/SerializedParentAction#/definitions/SerializedUpdateEnableActivityLevelBlockingAction/properties/type") + +### type Type + +`string` + +### type Constraints + +**enum**: the value of this property must be equal to one of the following values: + +| Value | Explanation | +| :---------------------------------------- | ----------- | +| `"UPDATE_ENABLE_ACTIVITY_LEVEL_BLOCKING"` | | + +## deviceId + + + + +`deviceId` + +- is required +- Type: `string` +- cannot be null +- defined in: [SerializedParentAction](serializedparentaction-definitions-serializedupdateenableactivitylevelblockingaction-properties-deviceid.md "https://timelimit.io/SerializedParentAction#/definitions/SerializedUpdateEnableActivityLevelBlockingAction/properties/deviceId") + +### deviceId Type + +`string` + +## enable + + + + +`enable` + +- is required +- Type: `boolean` +- cannot be null +- defined in: [SerializedParentAction](serializedparentaction-definitions-serializedupdateenableactivitylevelblockingaction-properties-enable.md "https://timelimit.io/SerializedParentAction#/definitions/SerializedUpdateEnableActivityLevelBlockingAction/properties/enable") + +### enable Type + +`boolean` diff --git a/docs/schema/serializedparentaction-definitions-serializedupdateparentblockedtimesaction-properties-parentid.md b/docs/schema/serializedparentaction-definitions-serializedupdateparentblockedtimesaction-properties-parentid.md new file mode 100644 index 0000000..992e1d9 --- /dev/null +++ b/docs/schema/serializedparentaction-definitions-serializedupdateparentblockedtimesaction-properties-parentid.md @@ -0,0 +1,16 @@ +# Untitled string in SerializedParentAction Schema + +```txt +https://timelimit.io/SerializedParentAction#/definitions/SerializedUpdateParentBlockedTimesAction/properties/parentId +``` + + + + +| Abstract | Extensible | Status | Identifiable | Custom Properties | Additional Properties | Access Restrictions | Defined In | +| :------------------ | ---------- | -------------- | ----------------------- | :---------------- | --------------------- | ------------------- | ------------------------------------------------------------------------------------------------- | +| Can be instantiated | No | Unknown status | Unknown identifiability | Forbidden | Allowed | none | [SerializedParentAction.schema.json\*](SerializedParentAction.schema.json "open original schema") | + +## parentId Type + +`string` diff --git a/docs/schema/serializedparentaction-definitions-serializedupdateparentblockedtimesaction-properties-times.md b/docs/schema/serializedparentaction-definitions-serializedupdateparentblockedtimesaction-properties-times.md new file mode 100644 index 0000000..382450a --- /dev/null +++ b/docs/schema/serializedparentaction-definitions-serializedupdateparentblockedtimesaction-properties-times.md @@ -0,0 +1,16 @@ +# Untitled string in SerializedParentAction Schema + +```txt +https://timelimit.io/SerializedParentAction#/definitions/SerializedUpdateParentBlockedTimesAction/properties/times +``` + + + + +| Abstract | Extensible | Status | Identifiable | Custom Properties | Additional Properties | Access Restrictions | Defined In | +| :------------------ | ---------- | -------------- | ----------------------- | :---------------- | --------------------- | ------------------- | ------------------------------------------------------------------------------------------------- | +| Can be instantiated | No | Unknown status | Unknown identifiability | Forbidden | Allowed | none | [SerializedParentAction.schema.json\*](SerializedParentAction.schema.json "open original schema") | + +## times Type + +`string` diff --git a/docs/schema/serializedparentaction-definitions-serializedupdateparentblockedtimesaction-properties-type.md b/docs/schema/serializedparentaction-definitions-serializedupdateparentblockedtimesaction-properties-type.md new file mode 100644 index 0000000..c24bbdb --- /dev/null +++ b/docs/schema/serializedparentaction-definitions-serializedupdateparentblockedtimesaction-properties-type.md @@ -0,0 +1,24 @@ +# Untitled string in SerializedParentAction Schema + +```txt +https://timelimit.io/SerializedParentAction#/definitions/SerializedUpdateParentBlockedTimesAction/properties/type +``` + + + + +| Abstract | Extensible | Status | Identifiable | Custom Properties | Additional Properties | Access Restrictions | Defined In | +| :------------------ | ---------- | -------------- | ----------------------- | :---------------- | --------------------- | ------------------- | ------------------------------------------------------------------------------------------------- | +| Can be instantiated | No | Unknown status | Unknown identifiability | Forbidden | Allowed | none | [SerializedParentAction.schema.json\*](SerializedParentAction.schema.json "open original schema") | + +## type Type + +`string` + +## type Constraints + +**enum**: the value of this property must be equal to one of the following values: + +| Value | Explanation | +| :------------------------------ | ----------- | +| `"UPDATE_PARENT_BLOCKED_TIMES"` | | diff --git a/docs/schema/serializedparentaction-definitions-serializedupdateparentblockedtimesaction-properties.md b/docs/schema/serializedparentaction-definitions-serializedupdateparentblockedtimesaction-properties.md new file mode 100644 index 0000000..ed0914f --- /dev/null +++ b/docs/schema/serializedparentaction-definitions-serializedupdateparentblockedtimesaction-properties.md @@ -0,0 +1,16 @@ +# Untitled undefined type in SerializedParentAction Schema + +```txt +https://timelimit.io/SerializedParentAction#/definitions/SerializedUpdateParentBlockedTimesAction/properties +``` + + + + +| Abstract | Extensible | Status | Identifiable | Custom Properties | Additional Properties | Access Restrictions | Defined In | +| :------------------ | ---------- | -------------- | ----------------------- | :---------------- | --------------------- | ------------------- | ------------------------------------------------------------------------------------------------- | +| Can be instantiated | No | Unknown status | Unknown identifiability | Forbidden | Allowed | none | [SerializedParentAction.schema.json\*](SerializedParentAction.schema.json "open original schema") | + +## properties Type + +unknown diff --git a/docs/schema/serializedparentaction-definitions-serializedupdateparentblockedtimesaction.md b/docs/schema/serializedparentaction-definitions-serializedupdateparentblockedtimesaction.md new file mode 100644 index 0000000..f62a28f --- /dev/null +++ b/docs/schema/serializedparentaction-definitions-serializedupdateparentblockedtimesaction.md @@ -0,0 +1,80 @@ +# SerializedUpdateParentBlockedTimesAction Schema + +```txt +https://timelimit.io/SerializedParentAction#/definitions/SerializedUpdateParentBlockedTimesAction +``` + + + + +| Abstract | Extensible | Status | Identifiable | Custom Properties | Additional Properties | Access Restrictions | Defined In | +| :------------------ | ---------- | -------------- | ------------ | :---------------- | --------------------- | ------------------- | ------------------------------------------------------------------------------------------------- | +| Can be instantiated | No | Unknown status | No | Forbidden | Forbidden | none | [SerializedParentAction.schema.json\*](SerializedParentAction.schema.json "open original schema") | + +## SerializedUpdateParentBlockedTimesAction Type + +`object` ([SerializedUpdateParentBlockedTimesAction](serializedparentaction-definitions-serializedupdateparentblockedtimesaction.md)) + +# SerializedUpdateParentBlockedTimesAction Properties + +| Property | Type | Required | Nullable | Defined by | +| :-------------------- | -------- | -------- | -------------- | :-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | +| [type](#type) | `string` | Required | cannot be null | [SerializedParentAction](serializedparentaction-definitions-serializedupdateparentblockedtimesaction-properties-type.md "https://timelimit.io/SerializedParentAction#/definitions/SerializedUpdateParentBlockedTimesAction/properties/type") | +| [parentId](#parentId) | `string` | Required | cannot be null | [SerializedParentAction](serializedparentaction-definitions-serializedupdateparentblockedtimesaction-properties-parentid.md "https://timelimit.io/SerializedParentAction#/definitions/SerializedUpdateParentBlockedTimesAction/properties/parentId") | +| [times](#times) | `string` | Required | cannot be null | [SerializedParentAction](serializedparentaction-definitions-serializedupdateparentblockedtimesaction-properties-times.md "https://timelimit.io/SerializedParentAction#/definitions/SerializedUpdateParentBlockedTimesAction/properties/times") | + +## type + + + + +`type` + +- is required +- Type: `string` +- cannot be null +- defined in: [SerializedParentAction](serializedparentaction-definitions-serializedupdateparentblockedtimesaction-properties-type.md "https://timelimit.io/SerializedParentAction#/definitions/SerializedUpdateParentBlockedTimesAction/properties/type") + +### type Type + +`string` + +### type Constraints + +**enum**: the value of this property must be equal to one of the following values: + +| Value | Explanation | +| :------------------------------ | ----------- | +| `"UPDATE_PARENT_BLOCKED_TIMES"` | | + +## parentId + + + + +`parentId` + +- is required +- Type: `string` +- cannot be null +- defined in: [SerializedParentAction](serializedparentaction-definitions-serializedupdateparentblockedtimesaction-properties-parentid.md "https://timelimit.io/SerializedParentAction#/definitions/SerializedUpdateParentBlockedTimesAction/properties/parentId") + +### parentId Type + +`string` + +## times + + + + +`times` + +- is required +- Type: `string` +- cannot be null +- defined in: [SerializedParentAction](serializedparentaction-definitions-serializedupdateparentblockedtimesaction-properties-times.md "https://timelimit.io/SerializedParentAction#/definitions/SerializedUpdateParentBlockedTimesAction/properties/times") + +### times Type + +`string` diff --git a/docs/schema/serializedparentaction-definitions-serializedupdateparentnotificationflagsaction-properties-flags.md b/docs/schema/serializedparentaction-definitions-serializedupdateparentnotificationflagsaction-properties-flags.md new file mode 100644 index 0000000..7939498 --- /dev/null +++ b/docs/schema/serializedparentaction-definitions-serializedupdateparentnotificationflagsaction-properties-flags.md @@ -0,0 +1,16 @@ +# Untitled number in SerializedParentAction Schema + +```txt +https://timelimit.io/SerializedParentAction#/definitions/SerializedUpdateParentNotificationFlagsAction/properties/flags +``` + + + + +| Abstract | Extensible | Status | Identifiable | Custom Properties | Additional Properties | Access Restrictions | Defined In | +| :------------------ | ---------- | -------------- | ----------------------- | :---------------- | --------------------- | ------------------- | ------------------------------------------------------------------------------------------------- | +| Can be instantiated | No | Unknown status | Unknown identifiability | Forbidden | Allowed | none | [SerializedParentAction.schema.json\*](SerializedParentAction.schema.json "open original schema") | + +## flags Type + +`number` diff --git a/docs/schema/serializedparentaction-definitions-serializedupdateparentnotificationflagsaction-properties-parentid.md b/docs/schema/serializedparentaction-definitions-serializedupdateparentnotificationflagsaction-properties-parentid.md new file mode 100644 index 0000000..4fd401e --- /dev/null +++ b/docs/schema/serializedparentaction-definitions-serializedupdateparentnotificationflagsaction-properties-parentid.md @@ -0,0 +1,16 @@ +# Untitled string in SerializedParentAction Schema + +```txt +https://timelimit.io/SerializedParentAction#/definitions/SerializedUpdateParentNotificationFlagsAction/properties/parentId +``` + + + + +| Abstract | Extensible | Status | Identifiable | Custom Properties | Additional Properties | Access Restrictions | Defined In | +| :------------------ | ---------- | -------------- | ----------------------- | :---------------- | --------------------- | ------------------- | ------------------------------------------------------------------------------------------------- | +| Can be instantiated | No | Unknown status | Unknown identifiability | Forbidden | Allowed | none | [SerializedParentAction.schema.json\*](SerializedParentAction.schema.json "open original schema") | + +## parentId Type + +`string` diff --git a/docs/schema/serializedparentaction-definitions-serializedupdateparentnotificationflagsaction-properties-set.md b/docs/schema/serializedparentaction-definitions-serializedupdateparentnotificationflagsaction-properties-set.md new file mode 100644 index 0000000..cf3772d --- /dev/null +++ b/docs/schema/serializedparentaction-definitions-serializedupdateparentnotificationflagsaction-properties-set.md @@ -0,0 +1,16 @@ +# Untitled boolean in SerializedParentAction Schema + +```txt +https://timelimit.io/SerializedParentAction#/definitions/SerializedUpdateParentNotificationFlagsAction/properties/set +``` + + + + +| Abstract | Extensible | Status | Identifiable | Custom Properties | Additional Properties | Access Restrictions | Defined In | +| :------------------ | ---------- | -------------- | ----------------------- | :---------------- | --------------------- | ------------------- | ------------------------------------------------------------------------------------------------- | +| Can be instantiated | No | Unknown status | Unknown identifiability | Forbidden | Allowed | none | [SerializedParentAction.schema.json\*](SerializedParentAction.schema.json "open original schema") | + +## set Type + +`boolean` diff --git a/docs/schema/serializedparentaction-definitions-serializedupdateparentnotificationflagsaction-properties-type.md b/docs/schema/serializedparentaction-definitions-serializedupdateparentnotificationflagsaction-properties-type.md new file mode 100644 index 0000000..31b491c --- /dev/null +++ b/docs/schema/serializedparentaction-definitions-serializedupdateparentnotificationflagsaction-properties-type.md @@ -0,0 +1,24 @@ +# Untitled string in SerializedParentAction Schema + +```txt +https://timelimit.io/SerializedParentAction#/definitions/SerializedUpdateParentNotificationFlagsAction/properties/type +``` + + + + +| Abstract | Extensible | Status | Identifiable | Custom Properties | Additional Properties | Access Restrictions | Defined In | +| :------------------ | ---------- | -------------- | ----------------------- | :---------------- | --------------------- | ------------------- | ------------------------------------------------------------------------------------------------- | +| Can be instantiated | No | Unknown status | Unknown identifiability | Forbidden | Allowed | none | [SerializedParentAction.schema.json\*](SerializedParentAction.schema.json "open original schema") | + +## type Type + +`string` + +## type Constraints + +**enum**: the value of this property must be equal to one of the following values: + +| Value | Explanation | +| :----------------------------------- | ----------- | +| `"UPDATE_PARENT_NOTIFICATION_FLAGS"` | | diff --git a/docs/schema/serializedparentaction-definitions-serializedupdateparentnotificationflagsaction-properties.md b/docs/schema/serializedparentaction-definitions-serializedupdateparentnotificationflagsaction-properties.md new file mode 100644 index 0000000..63e1fac --- /dev/null +++ b/docs/schema/serializedparentaction-definitions-serializedupdateparentnotificationflagsaction-properties.md @@ -0,0 +1,16 @@ +# Untitled undefined type in SerializedParentAction Schema + +```txt +https://timelimit.io/SerializedParentAction#/definitions/SerializedUpdateParentNotificationFlagsAction/properties +``` + + + + +| Abstract | Extensible | Status | Identifiable | Custom Properties | Additional Properties | Access Restrictions | Defined In | +| :------------------ | ---------- | -------------- | ----------------------- | :---------------- | --------------------- | ------------------- | ------------------------------------------------------------------------------------------------- | +| Can be instantiated | No | Unknown status | Unknown identifiability | Forbidden | Allowed | none | [SerializedParentAction.schema.json\*](SerializedParentAction.schema.json "open original schema") | + +## properties Type + +unknown diff --git a/docs/schema/serializedparentaction-definitions-serializedupdateparentnotificationflagsaction.md b/docs/schema/serializedparentaction-definitions-serializedupdateparentnotificationflagsaction.md new file mode 100644 index 0000000..b1d8ef2 --- /dev/null +++ b/docs/schema/serializedparentaction-definitions-serializedupdateparentnotificationflagsaction.md @@ -0,0 +1,97 @@ +# SerializedUpdateParentNotificationFlagsAction Schema + +```txt +https://timelimit.io/SerializedParentAction#/definitions/SerializedUpdateParentNotificationFlagsAction +``` + + + + +| Abstract | Extensible | Status | Identifiable | Custom Properties | Additional Properties | Access Restrictions | Defined In | +| :------------------ | ---------- | -------------- | ------------ | :---------------- | --------------------- | ------------------- | ------------------------------------------------------------------------------------------------- | +| Can be instantiated | No | Unknown status | No | Forbidden | Forbidden | none | [SerializedParentAction.schema.json\*](SerializedParentAction.schema.json "open original schema") | + +## SerializedUpdateParentNotificationFlagsAction Type + +`object` ([SerializedUpdateParentNotificationFlagsAction](serializedparentaction-definitions-serializedupdateparentnotificationflagsaction.md)) + +# SerializedUpdateParentNotificationFlagsAction Properties + +| Property | Type | Required | Nullable | Defined by | +| :-------------------- | --------- | -------- | -------------- | :------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ | +| [type](#type) | `string` | Required | cannot be null | [SerializedParentAction](serializedparentaction-definitions-serializedupdateparentnotificationflagsaction-properties-type.md "https://timelimit.io/SerializedParentAction#/definitions/SerializedUpdateParentNotificationFlagsAction/properties/type") | +| [parentId](#parentId) | `string` | Required | cannot be null | [SerializedParentAction](serializedparentaction-definitions-serializedupdateparentnotificationflagsaction-properties-parentid.md "https://timelimit.io/SerializedParentAction#/definitions/SerializedUpdateParentNotificationFlagsAction/properties/parentId") | +| [flags](#flags) | `number` | Required | cannot be null | [SerializedParentAction](serializedparentaction-definitions-serializedupdateparentnotificationflagsaction-properties-flags.md "https://timelimit.io/SerializedParentAction#/definitions/SerializedUpdateParentNotificationFlagsAction/properties/flags") | +| [set](#set) | `boolean` | Required | cannot be null | [SerializedParentAction](serializedparentaction-definitions-serializedupdateparentnotificationflagsaction-properties-set.md "https://timelimit.io/SerializedParentAction#/definitions/SerializedUpdateParentNotificationFlagsAction/properties/set") | + +## type + + + + +`type` + +- is required +- Type: `string` +- cannot be null +- defined in: [SerializedParentAction](serializedparentaction-definitions-serializedupdateparentnotificationflagsaction-properties-type.md "https://timelimit.io/SerializedParentAction#/definitions/SerializedUpdateParentNotificationFlagsAction/properties/type") + +### type Type + +`string` + +### type Constraints + +**enum**: the value of this property must be equal to one of the following values: + +| Value | Explanation | +| :----------------------------------- | ----------- | +| `"UPDATE_PARENT_NOTIFICATION_FLAGS"` | | + +## parentId + + + + +`parentId` + +- is required +- Type: `string` +- cannot be null +- defined in: [SerializedParentAction](serializedparentaction-definitions-serializedupdateparentnotificationflagsaction-properties-parentid.md "https://timelimit.io/SerializedParentAction#/definitions/SerializedUpdateParentNotificationFlagsAction/properties/parentId") + +### parentId Type + +`string` + +## flags + + + + +`flags` + +- is required +- Type: `number` +- cannot be null +- defined in: [SerializedParentAction](serializedparentaction-definitions-serializedupdateparentnotificationflagsaction-properties-flags.md "https://timelimit.io/SerializedParentAction#/definitions/SerializedUpdateParentNotificationFlagsAction/properties/flags") + +### flags Type + +`number` + +## set + + + + +`set` + +- is required +- Type: `boolean` +- cannot be null +- defined in: [SerializedParentAction](serializedparentaction-definitions-serializedupdateparentnotificationflagsaction-properties-set.md "https://timelimit.io/SerializedParentAction#/definitions/SerializedUpdateParentNotificationFlagsAction/properties/set") + +### set Type + +`boolean` diff --git a/docs/schema/serializedparentaction-definitions-serializedupdatetimelimitruleaction-properties-days.md b/docs/schema/serializedparentaction-definitions-serializedupdatetimelimitruleaction-properties-days.md new file mode 100644 index 0000000..a89f479 --- /dev/null +++ b/docs/schema/serializedparentaction-definitions-serializedupdatetimelimitruleaction-properties-days.md @@ -0,0 +1,16 @@ +# Untitled number in SerializedParentAction Schema + +```txt +https://timelimit.io/SerializedParentAction#/definitions/SerializedUpdateTimelimitRuleAction/properties/days +``` + + + + +| Abstract | Extensible | Status | Identifiable | Custom Properties | Additional Properties | Access Restrictions | Defined In | +| :------------------ | ---------- | -------------- | ----------------------- | :---------------- | --------------------- | ------------------- | ------------------------------------------------------------------------------------------------- | +| Can be instantiated | No | Unknown status | Unknown identifiability | Forbidden | Allowed | none | [SerializedParentAction.schema.json\*](SerializedParentAction.schema.json "open original schema") | + +## days Type + +`number` diff --git a/docs/schema/serializedparentaction-definitions-serializedupdatetimelimitruleaction-properties-extratime.md b/docs/schema/serializedparentaction-definitions-serializedupdatetimelimitruleaction-properties-extratime.md new file mode 100644 index 0000000..f03132b --- /dev/null +++ b/docs/schema/serializedparentaction-definitions-serializedupdatetimelimitruleaction-properties-extratime.md @@ -0,0 +1,16 @@ +# Untitled boolean in SerializedParentAction Schema + +```txt +https://timelimit.io/SerializedParentAction#/definitions/SerializedUpdateTimelimitRuleAction/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 | [SerializedParentAction.schema.json\*](SerializedParentAction.schema.json "open original schema") | + +## extraTime Type + +`boolean` diff --git a/docs/schema/serializedparentaction-definitions-serializedupdatetimelimitruleaction-properties-ruleid.md b/docs/schema/serializedparentaction-definitions-serializedupdatetimelimitruleaction-properties-ruleid.md new file mode 100644 index 0000000..19550fd --- /dev/null +++ b/docs/schema/serializedparentaction-definitions-serializedupdatetimelimitruleaction-properties-ruleid.md @@ -0,0 +1,16 @@ +# Untitled string in SerializedParentAction Schema + +```txt +https://timelimit.io/SerializedParentAction#/definitions/SerializedUpdateTimelimitRuleAction/properties/ruleId +``` + + + + +| Abstract | Extensible | Status | Identifiable | Custom Properties | Additional Properties | Access Restrictions | Defined In | +| :------------------ | ---------- | -------------- | ----------------------- | :---------------- | --------------------- | ------------------- | ------------------------------------------------------------------------------------------------- | +| Can be instantiated | No | Unknown status | Unknown identifiability | Forbidden | Allowed | none | [SerializedParentAction.schema.json\*](SerializedParentAction.schema.json "open original schema") | + +## ruleId Type + +`string` diff --git a/docs/schema/serializedparentaction-definitions-serializedupdatetimelimitruleaction-properties-time.md b/docs/schema/serializedparentaction-definitions-serializedupdatetimelimitruleaction-properties-time.md new file mode 100644 index 0000000..32be0ef --- /dev/null +++ b/docs/schema/serializedparentaction-definitions-serializedupdatetimelimitruleaction-properties-time.md @@ -0,0 +1,16 @@ +# Untitled number in SerializedParentAction Schema + +```txt +https://timelimit.io/SerializedParentAction#/definitions/SerializedUpdateTimelimitRuleAction/properties/time +``` + + + + +| Abstract | Extensible | Status | Identifiable | Custom Properties | Additional Properties | Access Restrictions | Defined In | +| :------------------ | ---------- | -------------- | ----------------------- | :---------------- | --------------------- | ------------------- | ------------------------------------------------------------------------------------------------- | +| Can be instantiated | No | Unknown status | Unknown identifiability | Forbidden | Allowed | none | [SerializedParentAction.schema.json\*](SerializedParentAction.schema.json "open original schema") | + +## time Type + +`number` diff --git a/docs/schema/serializedparentaction-definitions-serializedupdatetimelimitruleaction-properties-type.md b/docs/schema/serializedparentaction-definitions-serializedupdatetimelimitruleaction-properties-type.md new file mode 100644 index 0000000..d894c07 --- /dev/null +++ b/docs/schema/serializedparentaction-definitions-serializedupdatetimelimitruleaction-properties-type.md @@ -0,0 +1,24 @@ +# Untitled string in SerializedParentAction Schema + +```txt +https://timelimit.io/SerializedParentAction#/definitions/SerializedUpdateTimelimitRuleAction/properties/type +``` + + + + +| Abstract | Extensible | Status | Identifiable | Custom Properties | Additional Properties | Access Restrictions | Defined In | +| :------------------ | ---------- | -------------- | ----------------------- | :---------------- | --------------------- | ------------------- | ------------------------------------------------------------------------------------------------- | +| Can be instantiated | No | Unknown status | Unknown identifiability | Forbidden | Allowed | none | [SerializedParentAction.schema.json\*](SerializedParentAction.schema.json "open original schema") | + +## type Type + +`string` + +## type Constraints + +**enum**: the value of this property must be equal to one of the following values: + +| Value | Explanation | +| :------------------------ | ----------- | +| `"UPDATE_TIMELIMIT_RULE"` | | diff --git a/docs/schema/serializedparentaction-definitions-serializedupdatetimelimitruleaction-properties.md b/docs/schema/serializedparentaction-definitions-serializedupdatetimelimitruleaction-properties.md new file mode 100644 index 0000000..384de28 --- /dev/null +++ b/docs/schema/serializedparentaction-definitions-serializedupdatetimelimitruleaction-properties.md @@ -0,0 +1,16 @@ +# Untitled undefined type in SerializedParentAction Schema + +```txt +https://timelimit.io/SerializedParentAction#/definitions/SerializedUpdateTimelimitRuleAction/properties +``` + + + + +| Abstract | Extensible | Status | Identifiable | Custom Properties | Additional Properties | Access Restrictions | Defined In | +| :------------------ | ---------- | -------------- | ----------------------- | :---------------- | --------------------- | ------------------- | ------------------------------------------------------------------------------------------------- | +| Can be instantiated | No | Unknown status | Unknown identifiability | Forbidden | Allowed | none | [SerializedParentAction.schema.json\*](SerializedParentAction.schema.json "open original schema") | + +## properties Type + +unknown diff --git a/docs/schema/serializedparentaction-definitions-serializedupdatetimelimitruleaction.md b/docs/schema/serializedparentaction-definitions-serializedupdatetimelimitruleaction.md new file mode 100644 index 0000000..0d9ed44 --- /dev/null +++ b/docs/schema/serializedparentaction-definitions-serializedupdatetimelimitruleaction.md @@ -0,0 +1,114 @@ +# SerializedUpdateTimelimitRuleAction Schema + +```txt +https://timelimit.io/SerializedParentAction#/definitions/SerializedUpdateTimelimitRuleAction +``` + + + + +| Abstract | Extensible | Status | Identifiable | Custom Properties | Additional Properties | Access Restrictions | Defined In | +| :------------------ | ---------- | -------------- | ------------ | :---------------- | --------------------- | ------------------- | ------------------------------------------------------------------------------------------------- | +| Can be instantiated | No | Unknown status | No | Forbidden | Forbidden | none | [SerializedParentAction.schema.json\*](SerializedParentAction.schema.json "open original schema") | + +## SerializedUpdateTimelimitRuleAction Type + +`object` ([SerializedUpdateTimelimitRuleAction](serializedparentaction-definitions-serializedupdatetimelimitruleaction.md)) + +# SerializedUpdateTimelimitRuleAction Properties + +| Property | Type | Required | Nullable | Defined by | +| :---------------------- | --------- | -------- | -------------- | :------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ | +| [type](#type) | `string` | Required | cannot be null | [SerializedParentAction](serializedparentaction-definitions-serializedupdatetimelimitruleaction-properties-type.md "https://timelimit.io/SerializedParentAction#/definitions/SerializedUpdateTimelimitRuleAction/properties/type") | +| [ruleId](#ruleId) | `string` | Required | cannot be null | [SerializedParentAction](serializedparentaction-definitions-serializedupdatetimelimitruleaction-properties-ruleid.md "https://timelimit.io/SerializedParentAction#/definitions/SerializedUpdateTimelimitRuleAction/properties/ruleId") | +| [time](#time) | `number` | Required | cannot be null | [SerializedParentAction](serializedparentaction-definitions-serializedupdatetimelimitruleaction-properties-time.md "https://timelimit.io/SerializedParentAction#/definitions/SerializedUpdateTimelimitRuleAction/properties/time") | +| [days](#days) | `number` | Required | cannot be null | [SerializedParentAction](serializedparentaction-definitions-serializedupdatetimelimitruleaction-properties-days.md "https://timelimit.io/SerializedParentAction#/definitions/SerializedUpdateTimelimitRuleAction/properties/days") | +| [extraTime](#extraTime) | `boolean` | Required | cannot be null | [SerializedParentAction](serializedparentaction-definitions-serializedupdatetimelimitruleaction-properties-extratime.md "https://timelimit.io/SerializedParentAction#/definitions/SerializedUpdateTimelimitRuleAction/properties/extraTime") | + +## type + + + + +`type` + +- is required +- Type: `string` +- cannot be null +- defined in: [SerializedParentAction](serializedparentaction-definitions-serializedupdatetimelimitruleaction-properties-type.md "https://timelimit.io/SerializedParentAction#/definitions/SerializedUpdateTimelimitRuleAction/properties/type") + +### type Type + +`string` + +### type Constraints + +**enum**: the value of this property must be equal to one of the following values: + +| Value | Explanation | +| :------------------------ | ----------- | +| `"UPDATE_TIMELIMIT_RULE"` | | + +## ruleId + + + + +`ruleId` + +- is required +- Type: `string` +- cannot be null +- defined in: [SerializedParentAction](serializedparentaction-definitions-serializedupdatetimelimitruleaction-properties-ruleid.md "https://timelimit.io/SerializedParentAction#/definitions/SerializedUpdateTimelimitRuleAction/properties/ruleId") + +### ruleId Type + +`string` + +## time + + + + +`time` + +- is required +- Type: `number` +- cannot be null +- defined in: [SerializedParentAction](serializedparentaction-definitions-serializedupdatetimelimitruleaction-properties-time.md "https://timelimit.io/SerializedParentAction#/definitions/SerializedUpdateTimelimitRuleAction/properties/time") + +### time Type + +`number` + +## days + + + + +`days` + +- is required +- Type: `number` +- cannot be null +- defined in: [SerializedParentAction](serializedparentaction-definitions-serializedupdatetimelimitruleaction-properties-days.md "https://timelimit.io/SerializedParentAction#/definitions/SerializedUpdateTimelimitRuleAction/properties/days") + +### days Type + +`number` + +## extraTime + + + + +`extraTime` + +- is required +- Type: `boolean` +- cannot be null +- defined in: [SerializedParentAction](serializedparentaction-definitions-serializedupdatetimelimitruleaction-properties-extratime.md "https://timelimit.io/SerializedParentAction#/definitions/SerializedUpdateTimelimitRuleAction/properties/extraTime") + +### extraTime Type + +`boolean` diff --git a/docs/schema/serializedparentaction-definitions.md b/docs/schema/serializedparentaction-definitions.md new file mode 100644 index 0000000..d7a65bc --- /dev/null +++ b/docs/schema/serializedparentaction-definitions.md @@ -0,0 +1,16 @@ +# Untitled undefined type in SerializedParentAction Schema + +```txt +https://timelimit.io/SerializedParentAction#/definitions +``` + + + + +| Abstract | Extensible | Status | Identifiable | Custom Properties | Additional Properties | Access Restrictions | Defined In | +| :------------------ | ---------- | -------------- | ----------------------- | :---------------- | --------------------- | ------------------- | ------------------------------------------------------------------------------------------------- | +| Can be instantiated | No | Unknown status | Unknown identifiability | Forbidden | Allowed | none | [SerializedParentAction.schema.json\*](SerializedParentAction.schema.json "open original schema") | + +## definitions Type + +unknown diff --git a/docs/schema/serializedparentaction.md b/docs/schema/serializedparentaction.md new file mode 100644 index 0000000..553bd70 --- /dev/null +++ b/docs/schema/serializedparentaction.md @@ -0,0 +1,3290 @@ +# SerializedParentAction Schema + +```txt +https://timelimit.io/SerializedParentAction +``` + + + + +| Abstract | Extensible | Status | Identifiable | Custom Properties | Additional Properties | Access Restrictions | Defined In | +| :--------------------- | ---------- | -------------- | ----------------------- | :---------------- | --------------------- | ------------------- | ----------------------------------------------------------------------------------------------- | +| Cannot be instantiated | Yes | Unknown status | Unknown identifiability | Forbidden | Allowed | none | [SerializedParentAction.schema.json](SerializedParentAction.schema.json "open original schema") | + +## SerializedParentAction Type + +merged type ([SerializedParentAction](serializedparentaction.md)) + +any of + +- [SerializedAddCategoryAppsAction](serializedparentaction-definitions-serializedaddcategoryappsaction.md "check type definition") +- [SerializedAddUserAction](serializedparentaction-definitions-serializedadduseraction.md "check type definition") +- [SerializedChangeParentPasswordAction](serializedparentaction-definitions-serializedchangeparentpasswordaction.md "check type definition") +- [SerializedCreateCategoryAction](serializedparentaction-definitions-serializedcreatecategoryaction.md "check type definition") +- [SerializedCreateTimelimtRuleAction](serializedparentaction-definitions-serializedcreatetimelimtruleaction.md "check type definition") +- [SerializedDeleteCategoryAction](serializedparentaction-definitions-serializeddeletecategoryaction.md "check type definition") +- [SerializedDeleteTimeLimitRuleAction](serializedparentaction-definitions-serializeddeletetimelimitruleaction.md "check type definition") +- [SerializedIgnoreManipulationAction](serializedparentaction-definitions-serializedignoremanipulationaction.md "check type definition") +- [SerializedIncrementCategoryExtraTimeAction](serializedparentaction-definitions-serializedincrementcategoryextratimeaction.md "check type definition") +- [SerializedRemoveCategoryAppsAction](serializedparentaction-definitions-serializedremovecategoryappsaction.md "check type definition") +- [SerializedRemoveUserAction](serializedparentaction-definitions-serializedremoveuseraction.md "check type definition") +- [SerializedRenameChildAction](serializedparentaction-definitions-serializedrenamechildaction.md "check type definition") +- [SerializedResetParentBlockedTimesAction](serializedparentaction-definitions-serializedresetparentblockedtimesaction.md "check type definition") +- [SerializedSetCategoryExtraTimeAction](serializedparentaction-definitions-serializedsetcategoryextratimeaction.md "check type definition") +- [SerializedSetCategoryForUnassignedAppsAction](serializedparentaction-definitions-serializedsetcategoryforunassignedappsaction.md "check type definition") +- [SerializedSetChildPasswordAction](serializedparentaction-definitions-serializedsetchildpasswordaction.md "check type definition") +- [SerializedSetConsiderRebootManipulationAction](serializedparentaction-definitions-serializedsetconsiderrebootmanipulationaction.md "check type definition") +- [SerializedSetDeviceDefaultUserAction](serializedparentaction-definitions-serializedsetdevicedefaultuseraction.md "check type definition") +- [SerializedSetDeviceDefaultUserTimeoutAction](serializedparentaction-definitions-serializedsetdevicedefaultusertimeoutaction.md "check type definition") +- [SerializedSetDeviceUserAction](serializedparentaction-definitions-serializedsetdeviceuseraction.md "check type definition") +- [SerializedSetKeepSignedInAction](serializedparentaction-definitions-serializedsetkeepsignedinaction.md "check type definition") +- [SerializedSetParentCategoryAction](serializedparentaction-definitions-serializedsetparentcategoryaction.md "check type definition") +- [SerializedSetRelaxPrimaryDeviceAction](serializedparentaction-definitions-serializedsetrelaxprimarydeviceaction.md "check type definition") +- [SerializedSetSendDeviceConnected](serializedparentaction-definitions-serializedsetsenddeviceconnected.md "check type definition") +- [SerializedSetUserDisableLimitsUntilAction](serializedparentaction-definitions-serializedsetuserdisablelimitsuntilaction.md "check type definition") +- [SerializedSetUserTimezoneAction](serializedparentaction-definitions-serializedsetusertimezoneaction.md "check type definition") +- [SerializedUpdateCategoryBatteryLimitAction](serializedparentaction-definitions-serializedupdatecategorybatterylimitaction.md "check type definition") +- [SerializedUpdateCategoryBlockAllNotificationsAction](serializedparentaction-definitions-serializedupdatecategoryblockallnotificationsaction.md "check type definition") +- [SerializedUpdateCategoryBlockedTimesAction](serializedparentaction-definitions-serializedupdatecategoryblockedtimesaction.md "check type definition") +- [SerializedUpdateCategorySortingAction](serializedparentaction-definitions-serializedupdatecategorysortingaction.md "check type definition") +- [SerializedUpdateCategoryTemporarilyBlockedAction](serializedparentaction-definitions-serializedupdatecategorytemporarilyblockedaction.md "check type definition") +- [SerializedUpdateCategoryTimeWarningsAction](serializedparentaction-definitions-serializedupdatecategorytimewarningsaction.md "check type definition") +- [SerializedUpdateCategoryTitleAction](serializedparentaction-definitions-serializedupdatecategorytitleaction.md "check type definition") +- [SerializedUpdateDeviceNameAction](serializedparentaction-definitions-serializedupdatedevicenameaction.md "check type definition") +- [SerializedUpdateEnableActivityLevelBlockingAction](serializedparentaction-definitions-serializedupdateenableactivitylevelblockingaction.md "check type definition") +- [SerialiizedUpdateNetworkTimeVerificationAction](serializedparentaction-definitions-serialiizedupdatenetworktimeverificationaction.md "check type definition") +- [SerializedUpdateParentBlockedTimesAction](serializedparentaction-definitions-serializedupdateparentblockedtimesaction.md "check type definition") +- [SerializedUpdateParentNotificationFlagsAction](serializedparentaction-definitions-serializedupdateparentnotificationflagsaction.md "check type definition") +- [SerializedUpdateTimelimitRuleAction](serializedparentaction-definitions-serializedupdatetimelimitruleaction.md "check type definition") + +# SerializedParentAction Definitions + +## Definitions group SerializedAddCategoryAppsAction + +Reference this group by using + +```json +{"$ref":"https://timelimit.io/SerializedParentAction#/definitions/SerializedAddCategoryAppsAction"} +``` + +| Property | Type | Required | Nullable | Defined by | +| :---------------------------- | -------- | -------- | -------------- | :---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | +| [type](#type) | `string` | Required | cannot be null | [SerializedParentAction](serializedparentaction-definitions-serializedaddcategoryappsaction-properties-type.md "https://timelimit.io/SerializedParentAction#/definitions/SerializedAddCategoryAppsAction/properties/type") | +| [categoryId](#categoryId) | `string` | Required | cannot be null | [SerializedParentAction](serializedparentaction-definitions-serializedaddcategoryappsaction-properties-categoryid.md "https://timelimit.io/SerializedParentAction#/definitions/SerializedAddCategoryAppsAction/properties/categoryId") | +| [packageNames](#packageNames) | `array` | Required | cannot be null | [SerializedParentAction](serializedparentaction-definitions-serializedaddcategoryappsaction-properties-packagenames.md "https://timelimit.io/SerializedParentAction#/definitions/SerializedAddCategoryAppsAction/properties/packageNames") | + +### type + + + + +`type` + +- is required +- Type: `string` +- cannot be null +- defined in: [SerializedParentAction](serializedparentaction-definitions-serializedaddcategoryappsaction-properties-type.md "https://timelimit.io/SerializedParentAction#/definitions/SerializedAddCategoryAppsAction/properties/type") + +#### type Type + +`string` + +#### type Constraints + +**enum**: the value of this property must be equal to one of the following values: + +| Value | Explanation | +| :-------------------- | ----------- | +| `"ADD_CATEGORY_APPS"` | | + +### categoryId + + + + +`categoryId` + +- is required +- Type: `string` +- cannot be null +- defined in: [SerializedParentAction](serializedparentaction-definitions-serializedaddcategoryappsaction-properties-categoryid.md "https://timelimit.io/SerializedParentAction#/definitions/SerializedAddCategoryAppsAction/properties/categoryId") + +#### categoryId Type + +`string` + +### packageNames + + + + +`packageNames` + +- is required +- Type: `string[]` +- cannot be null +- defined in: [SerializedParentAction](serializedparentaction-definitions-serializedaddcategoryappsaction-properties-packagenames.md "https://timelimit.io/SerializedParentAction#/definitions/SerializedAddCategoryAppsAction/properties/packageNames") + +#### packageNames Type + +`string[]` + +## Definitions group SerializedAddUserAction + +Reference this group by using + +```json +{"$ref":"https://timelimit.io/SerializedParentAction#/definitions/SerializedAddUserAction"} +``` + +| Property | Type | Required | Nullable | Defined by | +| :-------------------- | -------- | -------- | -------------- | :---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | +| [type](#type) | `string` | Required | cannot be null | [SerializedParentAction](serializedparentaction-definitions-serializedadduseraction-properties-type.md "https://timelimit.io/SerializedParentAction#/definitions/SerializedAddUserAction/properties/type") | +| [name](#name) | `string` | Required | cannot be null | [SerializedParentAction](serializedparentaction-definitions-serializedadduseraction-properties-name.md "https://timelimit.io/SerializedParentAction#/definitions/SerializedAddUserAction/properties/name") | +| [userType](#userType) | `string` | Required | cannot be null | [SerializedParentAction](serializedparentaction-definitions-serializedadduseraction-properties-usertype.md "https://timelimit.io/SerializedParentAction#/definitions/SerializedAddUserAction/properties/userType") | +| [userId](#userId) | `string` | Required | cannot be null | [SerializedParentAction](serializedparentaction-definitions-serializedadduseraction-properties-userid.md "https://timelimit.io/SerializedParentAction#/definitions/SerializedAddUserAction/properties/userId") | +| [password](#password) | `object` | Optional | cannot be null | [SerializedParentAction](serializedparentaction-definitions-parentpassword.md "https://timelimit.io/SerializedParentAction#/definitions/SerializedAddUserAction/properties/password") | +| [timeZone](#timeZone) | `string` | Required | cannot be null | [SerializedParentAction](serializedparentaction-definitions-serializedadduseraction-properties-timezone.md "https://timelimit.io/SerializedParentAction#/definitions/SerializedAddUserAction/properties/timeZone") | + +### type + + + + +`type` + +- is required +- Type: `string` +- cannot be null +- defined in: [SerializedParentAction](serializedparentaction-definitions-serializedadduseraction-properties-type.md "https://timelimit.io/SerializedParentAction#/definitions/SerializedAddUserAction/properties/type") + +#### type Type + +`string` + +#### type Constraints + +**enum**: the value of this property must be equal to one of the following values: + +| Value | Explanation | +| :----------- | ----------- | +| `"ADD_USER"` | | + +### name + + + + +`name` + +- is required +- Type: `string` +- cannot be null +- defined in: [SerializedParentAction](serializedparentaction-definitions-serializedadduseraction-properties-name.md "https://timelimit.io/SerializedParentAction#/definitions/SerializedAddUserAction/properties/name") + +#### name Type + +`string` + +### userType + + + + +`userType` + +- is required +- Type: `string` +- cannot be null +- defined in: [SerializedParentAction](serializedparentaction-definitions-serializedadduseraction-properties-usertype.md "https://timelimit.io/SerializedParentAction#/definitions/SerializedAddUserAction/properties/userType") + +#### userType Type + +`string` + +#### userType Constraints + +**enum**: the value of this property must be equal to one of the following values: + +| Value | Explanation | +| :--------- | ----------- | +| `"child"` | | +| `"parent"` | | + +### userId + + + + +`userId` + +- is required +- Type: `string` +- cannot be null +- defined in: [SerializedParentAction](serializedparentaction-definitions-serializedadduseraction-properties-userid.md "https://timelimit.io/SerializedParentAction#/definitions/SerializedAddUserAction/properties/userId") + +#### userId Type + +`string` + +### password + + + + +`password` + +- is optional +- Type: `object` ([ParentPassword](serializedparentaction-definitions-parentpassword.md)) +- cannot be null +- defined in: [SerializedParentAction](serializedparentaction-definitions-parentpassword.md "https://timelimit.io/SerializedParentAction#/definitions/SerializedAddUserAction/properties/password") + +#### password Type + +`object` ([ParentPassword](serializedparentaction-definitions-parentpassword.md)) + +### timeZone + + + + +`timeZone` + +- is required +- Type: `string` +- cannot be null +- defined in: [SerializedParentAction](serializedparentaction-definitions-serializedadduseraction-properties-timezone.md "https://timelimit.io/SerializedParentAction#/definitions/SerializedAddUserAction/properties/timeZone") + +#### timeZone Type + +`string` + +## Definitions group ParentPassword + +Reference this group by using + +```json +{"$ref":"https://timelimit.io/SerializedParentAction#/definitions/ParentPassword"} +``` + +| Property | Type | Required | Nullable | Defined by | +| :------------------------ | -------- | -------- | -------------- | :-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | +| [hash](#hash) | `string` | Required | cannot be null | [SerializedParentAction](serializedparentaction-definitions-parentpassword-properties-hash.md "https://timelimit.io/SerializedParentAction#/definitions/ParentPassword/properties/hash") | +| [secondHash](#secondHash) | `string` | Required | cannot be null | [SerializedParentAction](serializedparentaction-definitions-parentpassword-properties-secondhash.md "https://timelimit.io/SerializedParentAction#/definitions/ParentPassword/properties/secondHash") | +| [secondSalt](#secondSalt) | `string` | Required | cannot be null | [SerializedParentAction](serializedparentaction-definitions-parentpassword-properties-secondsalt.md "https://timelimit.io/SerializedParentAction#/definitions/ParentPassword/properties/secondSalt") | + +### hash + + + + +`hash` + +- is required +- Type: `string` +- cannot be null +- defined in: [SerializedParentAction](serializedparentaction-definitions-parentpassword-properties-hash.md "https://timelimit.io/SerializedParentAction#/definitions/ParentPassword/properties/hash") + +#### hash Type + +`string` + +### secondHash + + + + +`secondHash` + +- is required +- Type: `string` +- cannot be null +- defined in: [SerializedParentAction](serializedparentaction-definitions-parentpassword-properties-secondhash.md "https://timelimit.io/SerializedParentAction#/definitions/ParentPassword/properties/secondHash") + +#### secondHash Type + +`string` + +### secondSalt + + + + +`secondSalt` + +- is required +- Type: `string` +- cannot be null +- defined in: [SerializedParentAction](serializedparentaction-definitions-parentpassword-properties-secondsalt.md "https://timelimit.io/SerializedParentAction#/definitions/ParentPassword/properties/secondSalt") + +#### secondSalt Type + +`string` + +## Definitions group SerializedChangeParentPasswordAction + +Reference this group by using + +```json +{"$ref":"https://timelimit.io/SerializedParentAction#/definitions/SerializedChangeParentPasswordAction"} +``` + +| Property | Type | Required | Nullable | Defined by | +| :------------------------------------------ | -------- | -------- | -------------- | :---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | +| [type](#type) | `string` | Required | cannot be null | [SerializedParentAction](serializedparentaction-definitions-serializedchangeparentpasswordaction-properties-type.md "https://timelimit.io/SerializedParentAction#/definitions/SerializedChangeParentPasswordAction/properties/type") | +| [userId](#userId) | `string` | Required | cannot be null | [SerializedParentAction](serializedparentaction-definitions-serializedchangeparentpasswordaction-properties-userid.md "https://timelimit.io/SerializedParentAction#/definitions/SerializedChangeParentPasswordAction/properties/userId") | +| [hash](#hash) | `string` | Required | cannot be null | [SerializedParentAction](serializedparentaction-definitions-serializedchangeparentpasswordaction-properties-hash.md "https://timelimit.io/SerializedParentAction#/definitions/SerializedChangeParentPasswordAction/properties/hash") | +| [secondSalt](#secondSalt) | `string` | Required | cannot be null | [SerializedParentAction](serializedparentaction-definitions-serializedchangeparentpasswordaction-properties-secondsalt.md "https://timelimit.io/SerializedParentAction#/definitions/SerializedChangeParentPasswordAction/properties/secondSalt") | +| [secondHashEncrypted](#secondHashEncrypted) | `string` | Required | cannot be null | [SerializedParentAction](serializedparentaction-definitions-serializedchangeparentpasswordaction-properties-secondhashencrypted.md "https://timelimit.io/SerializedParentAction#/definitions/SerializedChangeParentPasswordAction/properties/secondHashEncrypted") | +| [integrity](#integrity) | `string` | Required | cannot be null | [SerializedParentAction](serializedparentaction-definitions-serializedchangeparentpasswordaction-properties-integrity.md "https://timelimit.io/SerializedParentAction#/definitions/SerializedChangeParentPasswordAction/properties/integrity") | + +### type + + + + +`type` + +- is required +- Type: `string` +- cannot be null +- defined in: [SerializedParentAction](serializedparentaction-definitions-serializedchangeparentpasswordaction-properties-type.md "https://timelimit.io/SerializedParentAction#/definitions/SerializedChangeParentPasswordAction/properties/type") + +#### type Type + +`string` + +#### type Constraints + +**enum**: the value of this property must be equal to one of the following values: + +| Value | Explanation | +| :------------------------- | ----------- | +| `"CHANGE_PARENT_PASSWORD"` | | + +### userId + + + + +`userId` + +- is required +- Type: `string` +- cannot be null +- defined in: [SerializedParentAction](serializedparentaction-definitions-serializedchangeparentpasswordaction-properties-userid.md "https://timelimit.io/SerializedParentAction#/definitions/SerializedChangeParentPasswordAction/properties/userId") + +#### userId Type + +`string` + +### hash + + + + +`hash` + +- is required +- Type: `string` +- cannot be null +- defined in: [SerializedParentAction](serializedparentaction-definitions-serializedchangeparentpasswordaction-properties-hash.md "https://timelimit.io/SerializedParentAction#/definitions/SerializedChangeParentPasswordAction/properties/hash") + +#### hash Type + +`string` + +### secondSalt + + + + +`secondSalt` + +- is required +- Type: `string` +- cannot be null +- defined in: [SerializedParentAction](serializedparentaction-definitions-serializedchangeparentpasswordaction-properties-secondsalt.md "https://timelimit.io/SerializedParentAction#/definitions/SerializedChangeParentPasswordAction/properties/secondSalt") + +#### secondSalt Type + +`string` + +### secondHashEncrypted + + + + +`secondHashEncrypted` + +- is required +- Type: `string` +- cannot be null +- defined in: [SerializedParentAction](serializedparentaction-definitions-serializedchangeparentpasswordaction-properties-secondhashencrypted.md "https://timelimit.io/SerializedParentAction#/definitions/SerializedChangeParentPasswordAction/properties/secondHashEncrypted") + +#### secondHashEncrypted Type + +`string` + +### integrity + + + + +`integrity` + +- is required +- Type: `string` +- cannot be null +- defined in: [SerializedParentAction](serializedparentaction-definitions-serializedchangeparentpasswordaction-properties-integrity.md "https://timelimit.io/SerializedParentAction#/definitions/SerializedChangeParentPasswordAction/properties/integrity") + +#### integrity Type + +`string` + +## Definitions group SerializedCreateCategoryAction + +Reference this group by using + +```json +{"$ref":"https://timelimit.io/SerializedParentAction#/definitions/SerializedCreateCategoryAction"} +``` + +| Property | Type | Required | Nullable | Defined by | +| :------------------------ | -------- | -------- | -------------- | :---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | +| [type](#type) | `string` | Required | cannot be null | [SerializedParentAction](serializedparentaction-definitions-serializedcreatecategoryaction-properties-type.md "https://timelimit.io/SerializedParentAction#/definitions/SerializedCreateCategoryAction/properties/type") | +| [childId](#childId) | `string` | Required | cannot be null | [SerializedParentAction](serializedparentaction-definitions-serializedcreatecategoryaction-properties-childid.md "https://timelimit.io/SerializedParentAction#/definitions/SerializedCreateCategoryAction/properties/childId") | +| [categoryId](#categoryId) | `string` | Required | cannot be null | [SerializedParentAction](serializedparentaction-definitions-serializedcreatecategoryaction-properties-categoryid.md "https://timelimit.io/SerializedParentAction#/definitions/SerializedCreateCategoryAction/properties/categoryId") | +| [title](#title) | `string` | Required | cannot be null | [SerializedParentAction](serializedparentaction-definitions-serializedcreatecategoryaction-properties-title.md "https://timelimit.io/SerializedParentAction#/definitions/SerializedCreateCategoryAction/properties/title") | + +### type + + + + +`type` + +- is required +- Type: `string` +- cannot be null +- defined in: [SerializedParentAction](serializedparentaction-definitions-serializedcreatecategoryaction-properties-type.md "https://timelimit.io/SerializedParentAction#/definitions/SerializedCreateCategoryAction/properties/type") + +#### type Type + +`string` + +#### type Constraints + +**enum**: the value of this property must be equal to one of the following values: + +| Value | Explanation | +| :------------------ | ----------- | +| `"CREATE_CATEGORY"` | | + +### childId + + + + +`childId` + +- is required +- Type: `string` +- cannot be null +- defined in: [SerializedParentAction](serializedparentaction-definitions-serializedcreatecategoryaction-properties-childid.md "https://timelimit.io/SerializedParentAction#/definitions/SerializedCreateCategoryAction/properties/childId") + +#### childId Type + +`string` + +### categoryId + + + + +`categoryId` + +- is required +- Type: `string` +- cannot be null +- defined in: [SerializedParentAction](serializedparentaction-definitions-serializedcreatecategoryaction-properties-categoryid.md "https://timelimit.io/SerializedParentAction#/definitions/SerializedCreateCategoryAction/properties/categoryId") + +#### categoryId Type + +`string` + +### title + + + + +`title` + +- is required +- Type: `string` +- cannot be null +- defined in: [SerializedParentAction](serializedparentaction-definitions-serializedcreatecategoryaction-properties-title.md "https://timelimit.io/SerializedParentAction#/definitions/SerializedCreateCategoryAction/properties/title") + +#### title Type + +`string` + +## Definitions group SerializedCreateTimelimtRuleAction + +Reference this group by using + +```json +{"$ref":"https://timelimit.io/SerializedParentAction#/definitions/SerializedCreateTimelimtRuleAction"} +``` + +| Property | Type | Required | Nullable | Defined by | +| :------------ | -------- | -------- | -------------- | :------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ | +| [type](#type) | `string` | Required | cannot be null | [SerializedParentAction](serializedparentaction-definitions-serializedcreatetimelimtruleaction-properties-type.md "https://timelimit.io/SerializedParentAction#/definitions/SerializedCreateTimelimtRuleAction/properties/type") | +| [rule](#rule) | `object` | Required | cannot be null | [SerializedParentAction](serializedparentaction-definitions-serializedtimelimitrule.md "https://timelimit.io/SerializedParentAction#/definitions/SerializedCreateTimelimtRuleAction/properties/rule") | + +### type + + + + +`type` + +- is required +- Type: `string` +- cannot be null +- defined in: [SerializedParentAction](serializedparentaction-definitions-serializedcreatetimelimtruleaction-properties-type.md "https://timelimit.io/SerializedParentAction#/definitions/SerializedCreateTimelimtRuleAction/properties/type") + +#### type Type + +`string` + +#### type Constraints + +**enum**: the value of this property must be equal to one of the following values: + +| Value | Explanation | +| :------------------------ | ----------- | +| `"CREATE_TIMELIMIT_RULE"` | | + +### rule + + + + +`rule` + +- is required +- Type: `object` ([SerializedTimeLimitRule](serializedparentaction-definitions-serializedtimelimitrule.md)) +- cannot be null +- defined in: [SerializedParentAction](serializedparentaction-definitions-serializedtimelimitrule.md "https://timelimit.io/SerializedParentAction#/definitions/SerializedCreateTimelimtRuleAction/properties/rule") + +#### rule Type + +`object` ([SerializedTimeLimitRule](serializedparentaction-definitions-serializedtimelimitrule.md)) + +## Definitions group SerializedTimeLimitRule + +Reference this group by using + +```json +{"$ref":"https://timelimit.io/SerializedParentAction#/definitions/SerializedTimeLimitRule"} +``` + +| Property | Type | Required | Nullable | Defined by | +| :------------------------ | --------- | -------- | -------------- | :-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | +| [ruleId](#ruleId) | `string` | Required | cannot be null | [SerializedParentAction](serializedparentaction-definitions-serializedtimelimitrule-properties-ruleid.md "https://timelimit.io/SerializedParentAction#/definitions/SerializedTimeLimitRule/properties/ruleId") | +| [categoryId](#categoryId) | `string` | Required | cannot be null | [SerializedParentAction](serializedparentaction-definitions-serializedtimelimitrule-properties-categoryid.md "https://timelimit.io/SerializedParentAction#/definitions/SerializedTimeLimitRule/properties/categoryId") | +| [time](#time) | `number` | Required | cannot be null | [SerializedParentAction](serializedparentaction-definitions-serializedtimelimitrule-properties-time.md "https://timelimit.io/SerializedParentAction#/definitions/SerializedTimeLimitRule/properties/time") | +| [days](#days) | `number` | Required | cannot be null | [SerializedParentAction](serializedparentaction-definitions-serializedtimelimitrule-properties-days.md "https://timelimit.io/SerializedParentAction#/definitions/SerializedTimeLimitRule/properties/days") | +| [extraTime](#extraTime) | `boolean` | Required | cannot be null | [SerializedParentAction](serializedparentaction-definitions-serializedtimelimitrule-properties-extratime.md "https://timelimit.io/SerializedParentAction#/definitions/SerializedTimeLimitRule/properties/extraTime") | + +### ruleId + + + + +`ruleId` + +- is required +- Type: `string` +- cannot be null +- defined in: [SerializedParentAction](serializedparentaction-definitions-serializedtimelimitrule-properties-ruleid.md "https://timelimit.io/SerializedParentAction#/definitions/SerializedTimeLimitRule/properties/ruleId") + +#### ruleId Type + +`string` + +### categoryId + + + + +`categoryId` + +- is required +- Type: `string` +- cannot be null +- defined in: [SerializedParentAction](serializedparentaction-definitions-serializedtimelimitrule-properties-categoryid.md "https://timelimit.io/SerializedParentAction#/definitions/SerializedTimeLimitRule/properties/categoryId") + +#### categoryId Type + +`string` + +### time + + + + +`time` + +- is required +- Type: `number` +- cannot be null +- defined in: [SerializedParentAction](serializedparentaction-definitions-serializedtimelimitrule-properties-time.md "https://timelimit.io/SerializedParentAction#/definitions/SerializedTimeLimitRule/properties/time") + +#### time Type + +`number` + +### days + + + + +`days` + +- is required +- Type: `number` +- cannot be null +- defined in: [SerializedParentAction](serializedparentaction-definitions-serializedtimelimitrule-properties-days.md "https://timelimit.io/SerializedParentAction#/definitions/SerializedTimeLimitRule/properties/days") + +#### days Type + +`number` + +### extraTime + + + + +`extraTime` + +- is required +- Type: `boolean` +- cannot be null +- defined in: [SerializedParentAction](serializedparentaction-definitions-serializedtimelimitrule-properties-extratime.md "https://timelimit.io/SerializedParentAction#/definitions/SerializedTimeLimitRule/properties/extraTime") + +#### extraTime Type + +`boolean` + +## Definitions group SerializedDeleteCategoryAction + +Reference this group by using + +```json +{"$ref":"https://timelimit.io/SerializedParentAction#/definitions/SerializedDeleteCategoryAction"} +``` + +| Property | Type | Required | Nullable | Defined by | +| :------------------------ | -------- | -------- | -------------- | :---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | +| [type](#type) | `string` | Required | cannot be null | [SerializedParentAction](serializedparentaction-definitions-serializeddeletecategoryaction-properties-type.md "https://timelimit.io/SerializedParentAction#/definitions/SerializedDeleteCategoryAction/properties/type") | +| [categoryId](#categoryId) | `string` | Required | cannot be null | [SerializedParentAction](serializedparentaction-definitions-serializeddeletecategoryaction-properties-categoryid.md "https://timelimit.io/SerializedParentAction#/definitions/SerializedDeleteCategoryAction/properties/categoryId") | + +### type + + + + +`type` + +- is required +- Type: `string` +- cannot be null +- defined in: [SerializedParentAction](serializedparentaction-definitions-serializeddeletecategoryaction-properties-type.md "https://timelimit.io/SerializedParentAction#/definitions/SerializedDeleteCategoryAction/properties/type") + +#### type Type + +`string` + +#### type Constraints + +**enum**: the value of this property must be equal to one of the following values: + +| Value | Explanation | +| :------------------ | ----------- | +| `"DELETE_CATEGORY"` | | + +### categoryId + + + + +`categoryId` + +- is required +- Type: `string` +- cannot be null +- defined in: [SerializedParentAction](serializedparentaction-definitions-serializeddeletecategoryaction-properties-categoryid.md "https://timelimit.io/SerializedParentAction#/definitions/SerializedDeleteCategoryAction/properties/categoryId") + +#### categoryId Type + +`string` + +## Definitions group SerializedDeleteTimeLimitRuleAction + +Reference this group by using + +```json +{"$ref":"https://timelimit.io/SerializedParentAction#/definitions/SerializedDeleteTimeLimitRuleAction"} +``` + +| Property | Type | Required | Nullable | Defined by | +| :---------------- | -------- | -------- | -------------- | :------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ | +| [type](#type) | `string` | Required | cannot be null | [SerializedParentAction](serializedparentaction-definitions-serializeddeletetimelimitruleaction-properties-type.md "https://timelimit.io/SerializedParentAction#/definitions/SerializedDeleteTimeLimitRuleAction/properties/type") | +| [ruleId](#ruleId) | `string` | Required | cannot be null | [SerializedParentAction](serializedparentaction-definitions-serializeddeletetimelimitruleaction-properties-ruleid.md "https://timelimit.io/SerializedParentAction#/definitions/SerializedDeleteTimeLimitRuleAction/properties/ruleId") | + +### type + + + + +`type` + +- is required +- Type: `string` +- cannot be null +- defined in: [SerializedParentAction](serializedparentaction-definitions-serializeddeletetimelimitruleaction-properties-type.md "https://timelimit.io/SerializedParentAction#/definitions/SerializedDeleteTimeLimitRuleAction/properties/type") + +#### type Type + +`string` + +#### type Constraints + +**enum**: the value of this property must be equal to one of the following values: + +| Value | Explanation | +| :------------------------ | ----------- | +| `"DELETE_TIMELIMIT_RULE"` | | + +### ruleId + + + + +`ruleId` + +- is required +- Type: `string` +- cannot be null +- defined in: [SerializedParentAction](serializedparentaction-definitions-serializeddeletetimelimitruleaction-properties-ruleid.md "https://timelimit.io/SerializedParentAction#/definitions/SerializedDeleteTimeLimitRuleAction/properties/ruleId") + +#### ruleId Type + +`string` + +## Definitions group SerializedIgnoreManipulationAction + +Reference this group by using + +```json +{"$ref":"https://timelimit.io/SerializedParentAction#/definitions/SerializedIgnoreManipulationAction"} +``` + +| Property | Type | Required | Nullable | Defined by | +| :-------------------------------------------------------- | --------- | -------- | -------------- | :-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | +| [type](#type) | `string` | Required | cannot be null | [SerializedParentAction](serializedparentaction-definitions-serializedignoremanipulationaction-properties-type.md "https://timelimit.io/SerializedParentAction#/definitions/SerializedIgnoreManipulationAction/properties/type") | +| [deviceId](#deviceId) | `string` | Required | cannot be null | [SerializedParentAction](serializedparentaction-definitions-serializedignoremanipulationaction-properties-deviceid.md "https://timelimit.io/SerializedParentAction#/definitions/SerializedIgnoreManipulationAction/properties/deviceId") | +| [admin](#admin) | `boolean` | Required | cannot be null | [SerializedParentAction](serializedparentaction-definitions-serializedignoremanipulationaction-properties-admin.md "https://timelimit.io/SerializedParentAction#/definitions/SerializedIgnoreManipulationAction/properties/admin") | +| [adminA](#adminA) | `boolean` | Required | cannot be null | [SerializedParentAction](serializedparentaction-definitions-serializedignoremanipulationaction-properties-admina.md "https://timelimit.io/SerializedParentAction#/definitions/SerializedIgnoreManipulationAction/properties/adminA") | +| [downgrade](#downgrade) | `boolean` | Required | cannot be null | [SerializedParentAction](serializedparentaction-definitions-serializedignoremanipulationaction-properties-downgrade.md "https://timelimit.io/SerializedParentAction#/definitions/SerializedIgnoreManipulationAction/properties/downgrade") | +| [notification](#notification) | `boolean` | Required | cannot be null | [SerializedParentAction](serializedparentaction-definitions-serializedignoremanipulationaction-properties-notification.md "https://timelimit.io/SerializedParentAction#/definitions/SerializedIgnoreManipulationAction/properties/notification") | +| [usageStats](#usageStats) | `boolean` | Required | cannot be null | [SerializedParentAction](serializedparentaction-definitions-serializedignoremanipulationaction-properties-usagestats.md "https://timelimit.io/SerializedParentAction#/definitions/SerializedIgnoreManipulationAction/properties/usageStats") | +| [hadManipulation](#hadManipulation) | `boolean` | Required | cannot be null | [SerializedParentAction](serializedparentaction-definitions-serializedignoremanipulationaction-properties-hadmanipulation.md "https://timelimit.io/SerializedParentAction#/definitions/SerializedIgnoreManipulationAction/properties/hadManipulation") | +| [reboot](#reboot) | `boolean` | Optional | cannot be null | [SerializedParentAction](serializedparentaction-definitions-serializedignoremanipulationaction-properties-reboot.md "https://timelimit.io/SerializedParentAction#/definitions/SerializedIgnoreManipulationAction/properties/reboot") | +| [overlay](#overlay) | `boolean` | Optional | cannot be null | [SerializedParentAction](serializedparentaction-definitions-serializedignoremanipulationaction-properties-overlay.md "https://timelimit.io/SerializedParentAction#/definitions/SerializedIgnoreManipulationAction/properties/overlay") | +| [accessibilityService](#accessibilityService) | `boolean` | Optional | cannot be null | [SerializedParentAction](serializedparentaction-definitions-serializedignoremanipulationaction-properties-accessibilityservice.md "https://timelimit.io/SerializedParentAction#/definitions/SerializedIgnoreManipulationAction/properties/accessibilityService") | +| [ignoreHadManipulationFlags](#ignoreHadManipulationFlags) | `number` | Optional | cannot be null | [SerializedParentAction](serializedparentaction-definitions-serializedignoremanipulationaction-properties-ignorehadmanipulationflags.md "https://timelimit.io/SerializedParentAction#/definitions/SerializedIgnoreManipulationAction/properties/ignoreHadManipulationFlags") | + +### type + + + + +`type` + +- is required +- Type: `string` +- cannot be null +- defined in: [SerializedParentAction](serializedparentaction-definitions-serializedignoremanipulationaction-properties-type.md "https://timelimit.io/SerializedParentAction#/definitions/SerializedIgnoreManipulationAction/properties/type") + +#### type Type + +`string` + +#### type Constraints + +**enum**: the value of this property must be equal to one of the following values: + +| Value | Explanation | +| :---------------------- | ----------- | +| `"IGNORE_MANIPULATION"` | | + +### deviceId + + + + +`deviceId` + +- is required +- Type: `string` +- cannot be null +- defined in: [SerializedParentAction](serializedparentaction-definitions-serializedignoremanipulationaction-properties-deviceid.md "https://timelimit.io/SerializedParentAction#/definitions/SerializedIgnoreManipulationAction/properties/deviceId") + +#### deviceId Type + +`string` + +### admin + + + + +`admin` + +- is required +- Type: `boolean` +- cannot be null +- defined in: [SerializedParentAction](serializedparentaction-definitions-serializedignoremanipulationaction-properties-admin.md "https://timelimit.io/SerializedParentAction#/definitions/SerializedIgnoreManipulationAction/properties/admin") + +#### admin Type + +`boolean` + +### adminA + + + + +`adminA` + +- is required +- Type: `boolean` +- cannot be null +- defined in: [SerializedParentAction](serializedparentaction-definitions-serializedignoremanipulationaction-properties-admina.md "https://timelimit.io/SerializedParentAction#/definitions/SerializedIgnoreManipulationAction/properties/adminA") + +#### adminA Type + +`boolean` + +### downgrade + + + + +`downgrade` + +- is required +- Type: `boolean` +- cannot be null +- defined in: [SerializedParentAction](serializedparentaction-definitions-serializedignoremanipulationaction-properties-downgrade.md "https://timelimit.io/SerializedParentAction#/definitions/SerializedIgnoreManipulationAction/properties/downgrade") + +#### downgrade Type + +`boolean` + +### notification + + + + +`notification` + +- is required +- Type: `boolean` +- cannot be null +- defined in: [SerializedParentAction](serializedparentaction-definitions-serializedignoremanipulationaction-properties-notification.md "https://timelimit.io/SerializedParentAction#/definitions/SerializedIgnoreManipulationAction/properties/notification") + +#### notification Type + +`boolean` + +### usageStats + + + + +`usageStats` + +- is required +- Type: `boolean` +- cannot be null +- defined in: [SerializedParentAction](serializedparentaction-definitions-serializedignoremanipulationaction-properties-usagestats.md "https://timelimit.io/SerializedParentAction#/definitions/SerializedIgnoreManipulationAction/properties/usageStats") + +#### usageStats Type + +`boolean` + +### hadManipulation + + + + +`hadManipulation` + +- is required +- Type: `boolean` +- cannot be null +- defined in: [SerializedParentAction](serializedparentaction-definitions-serializedignoremanipulationaction-properties-hadmanipulation.md "https://timelimit.io/SerializedParentAction#/definitions/SerializedIgnoreManipulationAction/properties/hadManipulation") + +#### hadManipulation Type + +`boolean` + +### reboot + + + + +`reboot` + +- is optional +- Type: `boolean` +- cannot be null +- defined in: [SerializedParentAction](serializedparentaction-definitions-serializedignoremanipulationaction-properties-reboot.md "https://timelimit.io/SerializedParentAction#/definitions/SerializedIgnoreManipulationAction/properties/reboot") + +#### reboot Type + +`boolean` + +### overlay + + + + +`overlay` + +- is optional +- Type: `boolean` +- cannot be null +- defined in: [SerializedParentAction](serializedparentaction-definitions-serializedignoremanipulationaction-properties-overlay.md "https://timelimit.io/SerializedParentAction#/definitions/SerializedIgnoreManipulationAction/properties/overlay") + +#### overlay Type + +`boolean` + +### accessibilityService + + + + +`accessibilityService` + +- is optional +- Type: `boolean` +- cannot be null +- defined in: [SerializedParentAction](serializedparentaction-definitions-serializedignoremanipulationaction-properties-accessibilityservice.md "https://timelimit.io/SerializedParentAction#/definitions/SerializedIgnoreManipulationAction/properties/accessibilityService") + +#### accessibilityService Type + +`boolean` + +### ignoreHadManipulationFlags + + + + +`ignoreHadManipulationFlags` + +- is optional +- Type: `number` +- cannot be null +- defined in: [SerializedParentAction](serializedparentaction-definitions-serializedignoremanipulationaction-properties-ignorehadmanipulationflags.md "https://timelimit.io/SerializedParentAction#/definitions/SerializedIgnoreManipulationAction/properties/ignoreHadManipulationFlags") + +#### ignoreHadManipulationFlags Type + +`number` + +## Definitions group SerializedIncrementCategoryExtraTimeAction + +Reference this group by using + +```json +{"$ref":"https://timelimit.io/SerializedParentAction#/definitions/SerializedIncrementCategoryExtraTimeAction"} +``` + +| Property | Type | Required | Nullable | Defined by | +| :-------------------------------- | -------- | -------- | -------------- | :------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ | +| [type](#type) | `string` | Required | cannot be null | [SerializedParentAction](serializedparentaction-definitions-serializedincrementcategoryextratimeaction-properties-type.md "https://timelimit.io/SerializedParentAction#/definitions/SerializedIncrementCategoryExtraTimeAction/properties/type") | +| [categoryId](#categoryId) | `string` | Required | cannot be null | [SerializedParentAction](serializedparentaction-definitions-serializedincrementcategoryextratimeaction-properties-categoryid.md "https://timelimit.io/SerializedParentAction#/definitions/SerializedIncrementCategoryExtraTimeAction/properties/categoryId") | +| [addedExtraTime](#addedExtraTime) | `number` | Required | cannot be null | [SerializedParentAction](serializedparentaction-definitions-serializedincrementcategoryextratimeaction-properties-addedextratime.md "https://timelimit.io/SerializedParentAction#/definitions/SerializedIncrementCategoryExtraTimeAction/properties/addedExtraTime") | +| [day](#day) | `number` | Optional | cannot be null | [SerializedParentAction](serializedparentaction-definitions-serializedincrementcategoryextratimeaction-properties-day.md "https://timelimit.io/SerializedParentAction#/definitions/SerializedIncrementCategoryExtraTimeAction/properties/day") | + +### type + + + + +`type` + +- is required +- Type: `string` +- cannot be null +- defined in: [SerializedParentAction](serializedparentaction-definitions-serializedincrementcategoryextratimeaction-properties-type.md "https://timelimit.io/SerializedParentAction#/definitions/SerializedIncrementCategoryExtraTimeAction/properties/type") + +#### type Type + +`string` + +#### type Constraints + +**enum**: the value of this property must be equal to one of the following values: + +| Value | Explanation | +| :------------------------------- | ----------- | +| `"INCREMENT_CATEGORY_EXTRATIME"` | | + +### categoryId + + + + +`categoryId` + +- is required +- Type: `string` +- cannot be null +- defined in: [SerializedParentAction](serializedparentaction-definitions-serializedincrementcategoryextratimeaction-properties-categoryid.md "https://timelimit.io/SerializedParentAction#/definitions/SerializedIncrementCategoryExtraTimeAction/properties/categoryId") + +#### categoryId Type + +`string` + +### addedExtraTime + + + + +`addedExtraTime` + +- is required +- Type: `number` +- cannot be null +- defined in: [SerializedParentAction](serializedparentaction-definitions-serializedincrementcategoryextratimeaction-properties-addedextratime.md "https://timelimit.io/SerializedParentAction#/definitions/SerializedIncrementCategoryExtraTimeAction/properties/addedExtraTime") + +#### addedExtraTime Type + +`number` + +### day + + + + +`day` + +- is optional +- Type: `number` +- cannot be null +- defined in: [SerializedParentAction](serializedparentaction-definitions-serializedincrementcategoryextratimeaction-properties-day.md "https://timelimit.io/SerializedParentAction#/definitions/SerializedIncrementCategoryExtraTimeAction/properties/day") + +#### day Type + +`number` + +## Definitions group SerializedRemoveCategoryAppsAction + +Reference this group by using + +```json +{"$ref":"https://timelimit.io/SerializedParentAction#/definitions/SerializedRemoveCategoryAppsAction"} +``` + +| Property | Type | Required | Nullable | Defined by | +| :---------------------------- | -------- | -------- | -------------- | :---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | +| [type](#type) | `string` | Required | cannot be null | [SerializedParentAction](serializedparentaction-definitions-serializedremovecategoryappsaction-properties-type.md "https://timelimit.io/SerializedParentAction#/definitions/SerializedRemoveCategoryAppsAction/properties/type") | +| [categoryId](#categoryId) | `string` | Required | cannot be null | [SerializedParentAction](serializedparentaction-definitions-serializedremovecategoryappsaction-properties-categoryid.md "https://timelimit.io/SerializedParentAction#/definitions/SerializedRemoveCategoryAppsAction/properties/categoryId") | +| [packageNames](#packageNames) | `array` | Required | cannot be null | [SerializedParentAction](serializedparentaction-definitions-serializedremovecategoryappsaction-properties-packagenames.md "https://timelimit.io/SerializedParentAction#/definitions/SerializedRemoveCategoryAppsAction/properties/packageNames") | + +### type + + + + +`type` + +- is required +- Type: `string` +- cannot be null +- defined in: [SerializedParentAction](serializedparentaction-definitions-serializedremovecategoryappsaction-properties-type.md "https://timelimit.io/SerializedParentAction#/definitions/SerializedRemoveCategoryAppsAction/properties/type") + +#### type Type + +`string` + +#### type Constraints + +**enum**: the value of this property must be equal to one of the following values: + +| Value | Explanation | +| :----------------------- | ----------- | +| `"REMOVE_CATEGORY_APPS"` | | + +### categoryId + + + + +`categoryId` + +- is required +- Type: `string` +- cannot be null +- defined in: [SerializedParentAction](serializedparentaction-definitions-serializedremovecategoryappsaction-properties-categoryid.md "https://timelimit.io/SerializedParentAction#/definitions/SerializedRemoveCategoryAppsAction/properties/categoryId") + +#### categoryId Type + +`string` + +### packageNames + + + + +`packageNames` + +- is required +- Type: `string[]` +- cannot be null +- defined in: [SerializedParentAction](serializedparentaction-definitions-serializedremovecategoryappsaction-properties-packagenames.md "https://timelimit.io/SerializedParentAction#/definitions/SerializedRemoveCategoryAppsAction/properties/packageNames") + +#### packageNames Type + +`string[]` + +## Definitions group SerializedRemoveUserAction + +Reference this group by using + +```json +{"$ref":"https://timelimit.io/SerializedParentAction#/definitions/SerializedRemoveUserAction"} +``` + +| Property | Type | Required | Nullable | Defined by | +| :-------------------------------- | -------- | -------- | -------------- | :---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | +| [type](#type) | `string` | Required | cannot be null | [SerializedParentAction](serializedparentaction-definitions-serializedremoveuseraction-properties-type.md "https://timelimit.io/SerializedParentAction#/definitions/SerializedRemoveUserAction/properties/type") | +| [userId](#userId) | `string` | Required | cannot be null | [SerializedParentAction](serializedparentaction-definitions-serializedremoveuseraction-properties-userid.md "https://timelimit.io/SerializedParentAction#/definitions/SerializedRemoveUserAction/properties/userId") | +| [authentication](#authentication) | `string` | Optional | cannot be null | [SerializedParentAction](serializedparentaction-definitions-serializedremoveuseraction-properties-authentication.md "https://timelimit.io/SerializedParentAction#/definitions/SerializedRemoveUserAction/properties/authentication") | + +### type + + + + +`type` + +- is required +- Type: `string` +- cannot be null +- defined in: [SerializedParentAction](serializedparentaction-definitions-serializedremoveuseraction-properties-type.md "https://timelimit.io/SerializedParentAction#/definitions/SerializedRemoveUserAction/properties/type") + +#### type Type + +`string` + +#### type Constraints + +**enum**: the value of this property must be equal to one of the following values: + +| Value | Explanation | +| :-------------- | ----------- | +| `"REMOVE_USER"` | | + +### userId + + + + +`userId` + +- is required +- Type: `string` +- cannot be null +- defined in: [SerializedParentAction](serializedparentaction-definitions-serializedremoveuseraction-properties-userid.md "https://timelimit.io/SerializedParentAction#/definitions/SerializedRemoveUserAction/properties/userId") + +#### userId Type + +`string` + +### authentication + + + + +`authentication` + +- is optional +- Type: `string` +- cannot be null +- defined in: [SerializedParentAction](serializedparentaction-definitions-serializedremoveuseraction-properties-authentication.md "https://timelimit.io/SerializedParentAction#/definitions/SerializedRemoveUserAction/properties/authentication") + +#### authentication Type + +`string` + +## Definitions group SerializedRenameChildAction + +Reference this group by using + +```json +{"$ref":"https://timelimit.io/SerializedParentAction#/definitions/SerializedRenameChildAction"} +``` + +| Property | Type | Required | Nullable | Defined by | +| :------------------ | -------- | -------- | -------------- | :---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | +| [type](#type) | `string` | Required | cannot be null | [SerializedParentAction](serializedparentaction-definitions-serializedrenamechildaction-properties-type.md "https://timelimit.io/SerializedParentAction#/definitions/SerializedRenameChildAction/properties/type") | +| [childId](#childId) | `string` | Required | cannot be null | [SerializedParentAction](serializedparentaction-definitions-serializedrenamechildaction-properties-childid.md "https://timelimit.io/SerializedParentAction#/definitions/SerializedRenameChildAction/properties/childId") | +| [newName](#newName) | `string` | Required | cannot be null | [SerializedParentAction](serializedparentaction-definitions-serializedrenamechildaction-properties-newname.md "https://timelimit.io/SerializedParentAction#/definitions/SerializedRenameChildAction/properties/newName") | + +### type + + + + +`type` + +- is required +- Type: `string` +- cannot be null +- defined in: [SerializedParentAction](serializedparentaction-definitions-serializedrenamechildaction-properties-type.md "https://timelimit.io/SerializedParentAction#/definitions/SerializedRenameChildAction/properties/type") + +#### type Type + +`string` + +#### type Constraints + +**enum**: the value of this property must be equal to one of the following values: + +| Value | Explanation | +| :--------------- | ----------- | +| `"RENAME_CHILD"` | | + +### childId + + + + +`childId` + +- is required +- Type: `string` +- cannot be null +- defined in: [SerializedParentAction](serializedparentaction-definitions-serializedrenamechildaction-properties-childid.md "https://timelimit.io/SerializedParentAction#/definitions/SerializedRenameChildAction/properties/childId") + +#### childId Type + +`string` + +### newName + + + + +`newName` + +- is required +- Type: `string` +- cannot be null +- defined in: [SerializedParentAction](serializedparentaction-definitions-serializedrenamechildaction-properties-newname.md "https://timelimit.io/SerializedParentAction#/definitions/SerializedRenameChildAction/properties/newName") + +#### newName Type + +`string` + +## Definitions group SerializedResetParentBlockedTimesAction + +Reference this group by using + +```json +{"$ref":"https://timelimit.io/SerializedParentAction#/definitions/SerializedResetParentBlockedTimesAction"} +``` + +| Property | Type | Required | Nullable | Defined by | +| :-------------------- | -------- | -------- | -------------- | :------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ | +| [type](#type) | `string` | Required | cannot be null | [SerializedParentAction](serializedparentaction-definitions-serializedresetparentblockedtimesaction-properties-type.md "https://timelimit.io/SerializedParentAction#/definitions/SerializedResetParentBlockedTimesAction/properties/type") | +| [parentId](#parentId) | `string` | Required | cannot be null | [SerializedParentAction](serializedparentaction-definitions-serializedresetparentblockedtimesaction-properties-parentid.md "https://timelimit.io/SerializedParentAction#/definitions/SerializedResetParentBlockedTimesAction/properties/parentId") | + +### type + + + + +`type` + +- is required +- Type: `string` +- cannot be null +- defined in: [SerializedParentAction](serializedparentaction-definitions-serializedresetparentblockedtimesaction-properties-type.md "https://timelimit.io/SerializedParentAction#/definitions/SerializedResetParentBlockedTimesAction/properties/type") + +#### type Type + +`string` + +#### type Constraints + +**enum**: the value of this property must be equal to one of the following values: + +| Value | Explanation | +| :----------------------------- | ----------- | +| `"RESET_PARENT_BLOCKED_TIMES"` | | + +### parentId + + + + +`parentId` + +- is required +- Type: `string` +- cannot be null +- defined in: [SerializedParentAction](serializedparentaction-definitions-serializedresetparentblockedtimesaction-properties-parentid.md "https://timelimit.io/SerializedParentAction#/definitions/SerializedResetParentBlockedTimesAction/properties/parentId") + +#### parentId Type + +`string` + +## Definitions group SerializedSetCategoryExtraTimeAction + +Reference this group by using + +```json +{"$ref":"https://timelimit.io/SerializedParentAction#/definitions/SerializedSetCategoryExtraTimeAction"} +``` + +| Property | Type | Required | Nullable | Defined by | +| :---------------------------- | -------- | -------- | -------------- | :-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | +| [type](#type) | `string` | Required | cannot be null | [SerializedParentAction](serializedparentaction-definitions-serializedsetcategoryextratimeaction-properties-type.md "https://timelimit.io/SerializedParentAction#/definitions/SerializedSetCategoryExtraTimeAction/properties/type") | +| [categoryId](#categoryId) | `string` | Required | cannot be null | [SerializedParentAction](serializedparentaction-definitions-serializedsetcategoryextratimeaction-properties-categoryid.md "https://timelimit.io/SerializedParentAction#/definitions/SerializedSetCategoryExtraTimeAction/properties/categoryId") | +| [newExtraTime](#newExtraTime) | `number` | Required | cannot be null | [SerializedParentAction](serializedparentaction-definitions-serializedsetcategoryextratimeaction-properties-newextratime.md "https://timelimit.io/SerializedParentAction#/definitions/SerializedSetCategoryExtraTimeAction/properties/newExtraTime") | +| [day](#day) | `number` | Optional | cannot be null | [SerializedParentAction](serializedparentaction-definitions-serializedsetcategoryextratimeaction-properties-day.md "https://timelimit.io/SerializedParentAction#/definitions/SerializedSetCategoryExtraTimeAction/properties/day") | + +### type + + + + +`type` + +- is required +- Type: `string` +- cannot be null +- defined in: [SerializedParentAction](serializedparentaction-definitions-serializedsetcategoryextratimeaction-properties-type.md "https://timelimit.io/SerializedParentAction#/definitions/SerializedSetCategoryExtraTimeAction/properties/type") + +#### type Type + +`string` + +#### type Constraints + +**enum**: the value of this property must be equal to one of the following values: + +| Value | Explanation | +| :-------------------------- | ----------- | +| `"SET_CATEGORY_EXTRA_TIME"` | | + +### categoryId + + + + +`categoryId` + +- is required +- Type: `string` +- cannot be null +- defined in: [SerializedParentAction](serializedparentaction-definitions-serializedsetcategoryextratimeaction-properties-categoryid.md "https://timelimit.io/SerializedParentAction#/definitions/SerializedSetCategoryExtraTimeAction/properties/categoryId") + +#### categoryId Type + +`string` + +### newExtraTime + + + + +`newExtraTime` + +- is required +- Type: `number` +- cannot be null +- defined in: [SerializedParentAction](serializedparentaction-definitions-serializedsetcategoryextratimeaction-properties-newextratime.md "https://timelimit.io/SerializedParentAction#/definitions/SerializedSetCategoryExtraTimeAction/properties/newExtraTime") + +#### newExtraTime Type + +`number` + +### day + + + + +`day` + +- is optional +- Type: `number` +- cannot be null +- defined in: [SerializedParentAction](serializedparentaction-definitions-serializedsetcategoryextratimeaction-properties-day.md "https://timelimit.io/SerializedParentAction#/definitions/SerializedSetCategoryExtraTimeAction/properties/day") + +#### day Type + +`number` + +## Definitions group SerializedSetCategoryForUnassignedAppsAction + +Reference this group by using + +```json +{"$ref":"https://timelimit.io/SerializedParentAction#/definitions/SerializedSetCategoryForUnassignedAppsAction"} +``` + +| Property | Type | Required | Nullable | Defined by | +| :------------------------ | -------- | -------- | -------------- | :-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | +| [type](#type) | `string` | Required | cannot be null | [SerializedParentAction](serializedparentaction-definitions-serializedsetcategoryforunassignedappsaction-properties-type.md "https://timelimit.io/SerializedParentAction#/definitions/SerializedSetCategoryForUnassignedAppsAction/properties/type") | +| [childId](#childId) | `string` | Required | cannot be null | [SerializedParentAction](serializedparentaction-definitions-serializedsetcategoryforunassignedappsaction-properties-childid.md "https://timelimit.io/SerializedParentAction#/definitions/SerializedSetCategoryForUnassignedAppsAction/properties/childId") | +| [categoryId](#categoryId) | `string` | Required | cannot be null | [SerializedParentAction](serializedparentaction-definitions-serializedsetcategoryforunassignedappsaction-properties-categoryid.md "https://timelimit.io/SerializedParentAction#/definitions/SerializedSetCategoryForUnassignedAppsAction/properties/categoryId") | + +### type + + + + +`type` + +- is required +- Type: `string` +- cannot be null +- defined in: [SerializedParentAction](serializedparentaction-definitions-serializedsetcategoryforunassignedappsaction-properties-type.md "https://timelimit.io/SerializedParentAction#/definitions/SerializedSetCategoryForUnassignedAppsAction/properties/type") + +#### type Type + +`string` + +#### type Constraints + +**enum**: the value of this property must be equal to one of the following values: + +| Value | Explanation | +| :----------------------------------- | ----------- | +| `"SET_CATEGORY_FOR_UNASSIGNED_APPS"` | | + +### childId + + + + +`childId` + +- is required +- Type: `string` +- cannot be null +- defined in: [SerializedParentAction](serializedparentaction-definitions-serializedsetcategoryforunassignedappsaction-properties-childid.md "https://timelimit.io/SerializedParentAction#/definitions/SerializedSetCategoryForUnassignedAppsAction/properties/childId") + +#### childId Type + +`string` + +### categoryId + + + + +`categoryId` + +- is required +- Type: `string` +- cannot be null +- defined in: [SerializedParentAction](serializedparentaction-definitions-serializedsetcategoryforunassignedappsaction-properties-categoryid.md "https://timelimit.io/SerializedParentAction#/definitions/SerializedSetCategoryForUnassignedAppsAction/properties/categoryId") + +#### categoryId Type + +`string` + +## Definitions group SerializedSetChildPasswordAction + +Reference this group by using + +```json +{"$ref":"https://timelimit.io/SerializedParentAction#/definitions/SerializedSetChildPasswordAction"} +``` + +| Property | Type | Required | Nullable | Defined by | +| :-------------------------- | -------- | -------- | -------------- | :-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | +| [type](#type) | `string` | Required | cannot be null | [SerializedParentAction](serializedparentaction-definitions-serializedsetchildpasswordaction-properties-type.md "https://timelimit.io/SerializedParentAction#/definitions/SerializedSetChildPasswordAction/properties/type") | +| [childId](#childId) | `string` | Required | cannot be null | [SerializedParentAction](serializedparentaction-definitions-serializedsetchildpasswordaction-properties-childid.md "https://timelimit.io/SerializedParentAction#/definitions/SerializedSetChildPasswordAction/properties/childId") | +| [newPassword](#newPassword) | `object` | Required | cannot be null | [SerializedParentAction](serializedparentaction-definitions-parentpassword.md "https://timelimit.io/SerializedParentAction#/definitions/SerializedSetChildPasswordAction/properties/newPassword") | + +### type + + + + +`type` + +- is required +- Type: `string` +- cannot be null +- defined in: [SerializedParentAction](serializedparentaction-definitions-serializedsetchildpasswordaction-properties-type.md "https://timelimit.io/SerializedParentAction#/definitions/SerializedSetChildPasswordAction/properties/type") + +#### type Type + +`string` + +#### type Constraints + +**enum**: the value of this property must be equal to one of the following values: + +| Value | Explanation | +| :--------------------- | ----------- | +| `"SET_CHILD_PASSWORD"` | | + +### childId + + + + +`childId` + +- is required +- Type: `string` +- cannot be null +- defined in: [SerializedParentAction](serializedparentaction-definitions-serializedsetchildpasswordaction-properties-childid.md "https://timelimit.io/SerializedParentAction#/definitions/SerializedSetChildPasswordAction/properties/childId") + +#### childId Type + +`string` + +### newPassword + + + + +`newPassword` + +- is required +- Type: `object` ([ParentPassword](serializedparentaction-definitions-parentpassword.md)) +- cannot be null +- defined in: [SerializedParentAction](serializedparentaction-definitions-parentpassword.md "https://timelimit.io/SerializedParentAction#/definitions/SerializedSetChildPasswordAction/properties/newPassword") + +#### newPassword Type + +`object` ([ParentPassword](serializedparentaction-definitions-parentpassword.md)) + +## Definitions group SerializedSetConsiderRebootManipulationAction + +Reference this group by using + +```json +{"$ref":"https://timelimit.io/SerializedParentAction#/definitions/SerializedSetConsiderRebootManipulationAction"} +``` + +| Property | Type | Required | Nullable | Defined by | +| :-------------------- | --------- | -------- | -------------- | :------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ | +| [type](#type) | `string` | Required | cannot be null | [SerializedParentAction](serializedparentaction-definitions-serializedsetconsiderrebootmanipulationaction-properties-type.md "https://timelimit.io/SerializedParentAction#/definitions/SerializedSetConsiderRebootManipulationAction/properties/type") | +| [deviceId](#deviceId) | `string` | Required | cannot be null | [SerializedParentAction](serializedparentaction-definitions-serializedsetconsiderrebootmanipulationaction-properties-deviceid.md "https://timelimit.io/SerializedParentAction#/definitions/SerializedSetConsiderRebootManipulationAction/properties/deviceId") | +| [enable](#enable) | `boolean` | Required | cannot be null | [SerializedParentAction](serializedparentaction-definitions-serializedsetconsiderrebootmanipulationaction-properties-enable.md "https://timelimit.io/SerializedParentAction#/definitions/SerializedSetConsiderRebootManipulationAction/properties/enable") | + +### type + + + + +`type` + +- is required +- Type: `string` +- cannot be null +- defined in: [SerializedParentAction](serializedparentaction-definitions-serializedsetconsiderrebootmanipulationaction-properties-type.md "https://timelimit.io/SerializedParentAction#/definitions/SerializedSetConsiderRebootManipulationAction/properties/type") + +#### type Type + +`string` + +#### type Constraints + +**enum**: the value of this property must be equal to one of the following values: + +| Value | Explanation | +| :----------------------------------- | ----------- | +| `"SET_CONSIDER_REBOOT_MANIPULATION"` | | + +### deviceId + + + + +`deviceId` + +- is required +- Type: `string` +- cannot be null +- defined in: [SerializedParentAction](serializedparentaction-definitions-serializedsetconsiderrebootmanipulationaction-properties-deviceid.md "https://timelimit.io/SerializedParentAction#/definitions/SerializedSetConsiderRebootManipulationAction/properties/deviceId") + +#### deviceId Type + +`string` + +### enable + + + + +`enable` + +- is required +- Type: `boolean` +- cannot be null +- defined in: [SerializedParentAction](serializedparentaction-definitions-serializedsetconsiderrebootmanipulationaction-properties-enable.md "https://timelimit.io/SerializedParentAction#/definitions/SerializedSetConsiderRebootManipulationAction/properties/enable") + +#### enable Type + +`boolean` + +## Definitions group SerializedSetDeviceDefaultUserAction + +Reference this group by using + +```json +{"$ref":"https://timelimit.io/SerializedParentAction#/definitions/SerializedSetDeviceDefaultUserAction"} +``` + +| Property | Type | Required | Nullable | Defined by | +| :------------------------------ | -------- | -------- | -------------- | :---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | +| [type](#type) | `string` | Required | cannot be null | [SerializedParentAction](serializedparentaction-definitions-serializedsetdevicedefaultuseraction-properties-type.md "https://timelimit.io/SerializedParentAction#/definitions/SerializedSetDeviceDefaultUserAction/properties/type") | +| [deviceId](#deviceId) | `string` | Required | cannot be null | [SerializedParentAction](serializedparentaction-definitions-serializedsetdevicedefaultuseraction-properties-deviceid.md "https://timelimit.io/SerializedParentAction#/definitions/SerializedSetDeviceDefaultUserAction/properties/deviceId") | +| [defaultUserId](#defaultUserId) | `string` | Required | cannot be null | [SerializedParentAction](serializedparentaction-definitions-serializedsetdevicedefaultuseraction-properties-defaultuserid.md "https://timelimit.io/SerializedParentAction#/definitions/SerializedSetDeviceDefaultUserAction/properties/defaultUserId") | + +### type + + + + +`type` + +- is required +- Type: `string` +- cannot be null +- defined in: [SerializedParentAction](serializedparentaction-definitions-serializedsetdevicedefaultuseraction-properties-type.md "https://timelimit.io/SerializedParentAction#/definitions/SerializedSetDeviceDefaultUserAction/properties/type") + +#### type Type + +`string` + +#### type Constraints + +**enum**: the value of this property must be equal to one of the following values: + +| Value | Explanation | +| :-------------------------- | ----------- | +| `"SET_DEVICE_DEFAULT_USER"` | | + +### deviceId + + + + +`deviceId` + +- is required +- Type: `string` +- cannot be null +- defined in: [SerializedParentAction](serializedparentaction-definitions-serializedsetdevicedefaultuseraction-properties-deviceid.md "https://timelimit.io/SerializedParentAction#/definitions/SerializedSetDeviceDefaultUserAction/properties/deviceId") + +#### deviceId Type + +`string` + +### defaultUserId + + + + +`defaultUserId` + +- is required +- Type: `string` +- cannot be null +- defined in: [SerializedParentAction](serializedparentaction-definitions-serializedsetdevicedefaultuseraction-properties-defaultuserid.md "https://timelimit.io/SerializedParentAction#/definitions/SerializedSetDeviceDefaultUserAction/properties/defaultUserId") + +#### defaultUserId Type + +`string` + +## Definitions group SerializedSetDeviceDefaultUserTimeoutAction + +Reference this group by using + +```json +{"$ref":"https://timelimit.io/SerializedParentAction#/definitions/SerializedSetDeviceDefaultUserTimeoutAction"} +``` + +| Property | Type | Required | Nullable | Defined by | +| :-------------------- | -------- | -------- | -------------- | :-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | +| [type](#type) | `string` | Required | cannot be null | [SerializedParentAction](serializedparentaction-definitions-serializedsetdevicedefaultusertimeoutaction-properties-type.md "https://timelimit.io/SerializedParentAction#/definitions/SerializedSetDeviceDefaultUserTimeoutAction/properties/type") | +| [deviceId](#deviceId) | `string` | Required | cannot be null | [SerializedParentAction](serializedparentaction-definitions-serializedsetdevicedefaultusertimeoutaction-properties-deviceid.md "https://timelimit.io/SerializedParentAction#/definitions/SerializedSetDeviceDefaultUserTimeoutAction/properties/deviceId") | +| [timeout](#timeout) | `number` | Required | cannot be null | [SerializedParentAction](serializedparentaction-definitions-serializedsetdevicedefaultusertimeoutaction-properties-timeout.md "https://timelimit.io/SerializedParentAction#/definitions/SerializedSetDeviceDefaultUserTimeoutAction/properties/timeout") | + +### type + + + + +`type` + +- is required +- Type: `string` +- cannot be null +- defined in: [SerializedParentAction](serializedparentaction-definitions-serializedsetdevicedefaultusertimeoutaction-properties-type.md "https://timelimit.io/SerializedParentAction#/definitions/SerializedSetDeviceDefaultUserTimeoutAction/properties/type") + +#### type Type + +`string` + +#### type Constraints + +**enum**: the value of this property must be equal to one of the following values: + +| Value | Explanation | +| :---------------------------------- | ----------- | +| `"SET_DEVICE_DEFAULT_USER_TIMEOUT"` | | + +### deviceId + + + + +`deviceId` + +- is required +- Type: `string` +- cannot be null +- defined in: [SerializedParentAction](serializedparentaction-definitions-serializedsetdevicedefaultusertimeoutaction-properties-deviceid.md "https://timelimit.io/SerializedParentAction#/definitions/SerializedSetDeviceDefaultUserTimeoutAction/properties/deviceId") + +#### deviceId Type + +`string` + +### timeout + + + + +`timeout` + +- is required +- Type: `number` +- cannot be null +- defined in: [SerializedParentAction](serializedparentaction-definitions-serializedsetdevicedefaultusertimeoutaction-properties-timeout.md "https://timelimit.io/SerializedParentAction#/definitions/SerializedSetDeviceDefaultUserTimeoutAction/properties/timeout") + +#### timeout Type + +`number` + +## Definitions group SerializedSetDeviceUserAction + +Reference this group by using + +```json +{"$ref":"https://timelimit.io/SerializedParentAction#/definitions/SerializedSetDeviceUserAction"} +``` + +| Property | Type | Required | Nullable | Defined by | +| :-------------------- | -------- | -------- | -------------- | :---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | +| [type](#type) | `string` | Required | cannot be null | [SerializedParentAction](serializedparentaction-definitions-serializedsetdeviceuseraction-properties-type.md "https://timelimit.io/SerializedParentAction#/definitions/SerializedSetDeviceUserAction/properties/type") | +| [deviceId](#deviceId) | `string` | Required | cannot be null | [SerializedParentAction](serializedparentaction-definitions-serializedsetdeviceuseraction-properties-deviceid.md "https://timelimit.io/SerializedParentAction#/definitions/SerializedSetDeviceUserAction/properties/deviceId") | +| [userId](#userId) | `string` | Required | cannot be null | [SerializedParentAction](serializedparentaction-definitions-serializedsetdeviceuseraction-properties-userid.md "https://timelimit.io/SerializedParentAction#/definitions/SerializedSetDeviceUserAction/properties/userId") | + +### type + + + + +`type` + +- is required +- Type: `string` +- cannot be null +- defined in: [SerializedParentAction](serializedparentaction-definitions-serializedsetdeviceuseraction-properties-type.md "https://timelimit.io/SerializedParentAction#/definitions/SerializedSetDeviceUserAction/properties/type") + +#### type Type + +`string` + +#### type Constraints + +**enum**: the value of this property must be equal to one of the following values: + +| Value | Explanation | +| :------------------ | ----------- | +| `"SET_DEVICE_USER"` | | + +### deviceId + + + + +`deviceId` + +- is required +- Type: `string` +- cannot be null +- defined in: [SerializedParentAction](serializedparentaction-definitions-serializedsetdeviceuseraction-properties-deviceid.md "https://timelimit.io/SerializedParentAction#/definitions/SerializedSetDeviceUserAction/properties/deviceId") + +#### deviceId Type + +`string` + +### userId + + + + +`userId` + +- is required +- Type: `string` +- cannot be null +- defined in: [SerializedParentAction](serializedparentaction-definitions-serializedsetdeviceuseraction-properties-userid.md "https://timelimit.io/SerializedParentAction#/definitions/SerializedSetDeviceUserAction/properties/userId") + +#### userId Type + +`string` + +## Definitions group SerializedSetKeepSignedInAction + +Reference this group by using + +```json +{"$ref":"https://timelimit.io/SerializedParentAction#/definitions/SerializedSetKeepSignedInAction"} +``` + +| Property | Type | Required | Nullable | Defined by | +| :---------------------------- | --------- | -------- | -------------- | :---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | +| [type](#type) | `string` | Required | cannot be null | [SerializedParentAction](serializedparentaction-definitions-serializedsetkeepsignedinaction-properties-type.md "https://timelimit.io/SerializedParentAction#/definitions/SerializedSetKeepSignedInAction/properties/type") | +| [deviceId](#deviceId) | `string` | Required | cannot be null | [SerializedParentAction](serializedparentaction-definitions-serializedsetkeepsignedinaction-properties-deviceid.md "https://timelimit.io/SerializedParentAction#/definitions/SerializedSetKeepSignedInAction/properties/deviceId") | +| [keepSignedIn](#keepSignedIn) | `boolean` | Required | cannot be null | [SerializedParentAction](serializedparentaction-definitions-serializedsetkeepsignedinaction-properties-keepsignedin.md "https://timelimit.io/SerializedParentAction#/definitions/SerializedSetKeepSignedInAction/properties/keepSignedIn") | + +### type + + + + +`type` + +- is required +- Type: `string` +- cannot be null +- defined in: [SerializedParentAction](serializedparentaction-definitions-serializedsetkeepsignedinaction-properties-type.md "https://timelimit.io/SerializedParentAction#/definitions/SerializedSetKeepSignedInAction/properties/type") + +#### type Type + +`string` + +#### type Constraints + +**enum**: the value of this property must be equal to one of the following values: + +| Value | Explanation | +| :--------------------- | ----------- | +| `"SET_KEEP_SIGNED_IN"` | | + +### deviceId + + + + +`deviceId` + +- is required +- Type: `string` +- cannot be null +- defined in: [SerializedParentAction](serializedparentaction-definitions-serializedsetkeepsignedinaction-properties-deviceid.md "https://timelimit.io/SerializedParentAction#/definitions/SerializedSetKeepSignedInAction/properties/deviceId") + +#### deviceId Type + +`string` + +### keepSignedIn + + + + +`keepSignedIn` + +- is required +- Type: `boolean` +- cannot be null +- defined in: [SerializedParentAction](serializedparentaction-definitions-serializedsetkeepsignedinaction-properties-keepsignedin.md "https://timelimit.io/SerializedParentAction#/definitions/SerializedSetKeepSignedInAction/properties/keepSignedIn") + +#### keepSignedIn Type + +`boolean` + +## Definitions group SerializedSetParentCategoryAction + +Reference this group by using + +```json +{"$ref":"https://timelimit.io/SerializedParentAction#/definitions/SerializedSetParentCategoryAction"} +``` + +| Property | Type | Required | Nullable | Defined by | +| :-------------------------------- | -------- | -------- | -------------- | :------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ | +| [type](#type) | `string` | Required | cannot be null | [SerializedParentAction](serializedparentaction-definitions-serializedsetparentcategoryaction-properties-type.md "https://timelimit.io/SerializedParentAction#/definitions/SerializedSetParentCategoryAction/properties/type") | +| [categoryId](#categoryId) | `string` | Required | cannot be null | [SerializedParentAction](serializedparentaction-definitions-serializedsetparentcategoryaction-properties-categoryid.md "https://timelimit.io/SerializedParentAction#/definitions/SerializedSetParentCategoryAction/properties/categoryId") | +| [parentCategory](#parentCategory) | `string` | Required | cannot be null | [SerializedParentAction](serializedparentaction-definitions-serializedsetparentcategoryaction-properties-parentcategory.md "https://timelimit.io/SerializedParentAction#/definitions/SerializedSetParentCategoryAction/properties/parentCategory") | + +### type + + + + +`type` + +- is required +- Type: `string` +- cannot be null +- defined in: [SerializedParentAction](serializedparentaction-definitions-serializedsetparentcategoryaction-properties-type.md "https://timelimit.io/SerializedParentAction#/definitions/SerializedSetParentCategoryAction/properties/type") + +#### type Type + +`string` + +#### type Constraints + +**enum**: the value of this property must be equal to one of the following values: + +| Value | Explanation | +| :---------------------- | ----------- | +| `"SET_PARENT_CATEGORY"` | | + +### categoryId + + + + +`categoryId` + +- is required +- Type: `string` +- cannot be null +- defined in: [SerializedParentAction](serializedparentaction-definitions-serializedsetparentcategoryaction-properties-categoryid.md "https://timelimit.io/SerializedParentAction#/definitions/SerializedSetParentCategoryAction/properties/categoryId") + +#### categoryId Type + +`string` + +### parentCategory + + + + +`parentCategory` + +- is required +- Type: `string` +- cannot be null +- defined in: [SerializedParentAction](serializedparentaction-definitions-serializedsetparentcategoryaction-properties-parentcategory.md "https://timelimit.io/SerializedParentAction#/definitions/SerializedSetParentCategoryAction/properties/parentCategory") + +#### parentCategory Type + +`string` + +## Definitions group SerializedSetRelaxPrimaryDeviceAction + +Reference this group by using + +```json +{"$ref":"https://timelimit.io/SerializedParentAction#/definitions/SerializedSetRelaxPrimaryDeviceAction"} +``` + +| Property | Type | Required | Nullable | Defined by | +| :---------------- | --------- | -------- | -------------- | :---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | +| [type](#type) | `string` | Required | cannot be null | [SerializedParentAction](serializedparentaction-definitions-serializedsetrelaxprimarydeviceaction-properties-type.md "https://timelimit.io/SerializedParentAction#/definitions/SerializedSetRelaxPrimaryDeviceAction/properties/type") | +| [userId](#userId) | `string` | Required | cannot be null | [SerializedParentAction](serializedparentaction-definitions-serializedsetrelaxprimarydeviceaction-properties-userid.md "https://timelimit.io/SerializedParentAction#/definitions/SerializedSetRelaxPrimaryDeviceAction/properties/userId") | +| [relax](#relax) | `boolean` | Required | cannot be null | [SerializedParentAction](serializedparentaction-definitions-serializedsetrelaxprimarydeviceaction-properties-relax.md "https://timelimit.io/SerializedParentAction#/definitions/SerializedSetRelaxPrimaryDeviceAction/properties/relax") | + +### type + + + + +`type` + +- is required +- Type: `string` +- cannot be null +- defined in: [SerializedParentAction](serializedparentaction-definitions-serializedsetrelaxprimarydeviceaction-properties-type.md "https://timelimit.io/SerializedParentAction#/definitions/SerializedSetRelaxPrimaryDeviceAction/properties/type") + +#### type Type + +`string` + +#### type Constraints + +**enum**: the value of this property must be equal to one of the following values: + +| Value | Explanation | +| :--------------------------- | ----------- | +| `"SET_RELAX_PRIMARY_DEVICE"` | | + +### userId + + + + +`userId` + +- is required +- Type: `string` +- cannot be null +- defined in: [SerializedParentAction](serializedparentaction-definitions-serializedsetrelaxprimarydeviceaction-properties-userid.md "https://timelimit.io/SerializedParentAction#/definitions/SerializedSetRelaxPrimaryDeviceAction/properties/userId") + +#### userId Type + +`string` + +### relax + + + + +`relax` + +- is required +- Type: `boolean` +- cannot be null +- defined in: [SerializedParentAction](serializedparentaction-definitions-serializedsetrelaxprimarydeviceaction-properties-relax.md "https://timelimit.io/SerializedParentAction#/definitions/SerializedSetRelaxPrimaryDeviceAction/properties/relax") + +#### relax Type + +`boolean` + +## Definitions group SerializedSetSendDeviceConnected + +Reference this group by using + +```json +{"$ref":"https://timelimit.io/SerializedParentAction#/definitions/SerializedSetSendDeviceConnected"} +``` + +| Property | Type | Required | Nullable | Defined by | +| :-------------------- | --------- | -------- | -------------- | :---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | +| [type](#type) | `string` | Required | cannot be null | [SerializedParentAction](serializedparentaction-definitions-serializedsetsenddeviceconnected-properties-type.md "https://timelimit.io/SerializedParentAction#/definitions/SerializedSetSendDeviceConnected/properties/type") | +| [deviceId](#deviceId) | `string` | Required | cannot be null | [SerializedParentAction](serializedparentaction-definitions-serializedsetsenddeviceconnected-properties-deviceid.md "https://timelimit.io/SerializedParentAction#/definitions/SerializedSetSendDeviceConnected/properties/deviceId") | +| [enable](#enable) | `boolean` | Required | cannot be null | [SerializedParentAction](serializedparentaction-definitions-serializedsetsenddeviceconnected-properties-enable.md "https://timelimit.io/SerializedParentAction#/definitions/SerializedSetSendDeviceConnected/properties/enable") | + +### type + + + + +`type` + +- is required +- Type: `string` +- cannot be null +- defined in: [SerializedParentAction](serializedparentaction-definitions-serializedsetsenddeviceconnected-properties-type.md "https://timelimit.io/SerializedParentAction#/definitions/SerializedSetSendDeviceConnected/properties/type") + +#### type Type + +`string` + +#### type Constraints + +**enum**: the value of this property must be equal to one of the following values: + +| Value | Explanation | +| :---------------------------- | ----------- | +| `"SET_SEND_DEVICE_CONNECTED"` | | + +### deviceId + + + + +`deviceId` + +- is required +- Type: `string` +- cannot be null +- defined in: [SerializedParentAction](serializedparentaction-definitions-serializedsetsenddeviceconnected-properties-deviceid.md "https://timelimit.io/SerializedParentAction#/definitions/SerializedSetSendDeviceConnected/properties/deviceId") + +#### deviceId Type + +`string` + +### enable + + + + +`enable` + +- is required +- Type: `boolean` +- cannot be null +- defined in: [SerializedParentAction](serializedparentaction-definitions-serializedsetsenddeviceconnected-properties-enable.md "https://timelimit.io/SerializedParentAction#/definitions/SerializedSetSendDeviceConnected/properties/enable") + +#### enable Type + +`boolean` + +## Definitions group SerializedSetUserDisableLimitsUntilAction + +Reference this group by using + +```json +{"$ref":"https://timelimit.io/SerializedParentAction#/definitions/SerializedSetUserDisableLimitsUntilAction"} +``` + +| Property | Type | Required | Nullable | Defined by | +| :------------------ | -------- | -------- | -------------- | :-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | +| [type](#type) | `string` | Required | cannot be null | [SerializedParentAction](serializedparentaction-definitions-serializedsetuserdisablelimitsuntilaction-properties-type.md "https://timelimit.io/SerializedParentAction#/definitions/SerializedSetUserDisableLimitsUntilAction/properties/type") | +| [childId](#childId) | `string` | Required | cannot be null | [SerializedParentAction](serializedparentaction-definitions-serializedsetuserdisablelimitsuntilaction-properties-childid.md "https://timelimit.io/SerializedParentAction#/definitions/SerializedSetUserDisableLimitsUntilAction/properties/childId") | +| [time](#time) | `number` | Required | cannot be null | [SerializedParentAction](serializedparentaction-definitions-serializedsetuserdisablelimitsuntilaction-properties-time.md "https://timelimit.io/SerializedParentAction#/definitions/SerializedSetUserDisableLimitsUntilAction/properties/time") | + +### type + + + + +`type` + +- is required +- Type: `string` +- cannot be null +- defined in: [SerializedParentAction](serializedparentaction-definitions-serializedsetuserdisablelimitsuntilaction-properties-type.md "https://timelimit.io/SerializedParentAction#/definitions/SerializedSetUserDisableLimitsUntilAction/properties/type") + +#### type Type + +`string` + +#### type Constraints + +**enum**: the value of this property must be equal to one of the following values: + +| Value | Explanation | +| :-------------------------------- | ----------- | +| `"SET_USER_DISABLE_LIMITS_UNTIL"` | | + +### childId + + + + +`childId` + +- is required +- Type: `string` +- cannot be null +- defined in: [SerializedParentAction](serializedparentaction-definitions-serializedsetuserdisablelimitsuntilaction-properties-childid.md "https://timelimit.io/SerializedParentAction#/definitions/SerializedSetUserDisableLimitsUntilAction/properties/childId") + +#### childId Type + +`string` + +### time + + + + +`time` + +- is required +- Type: `number` +- cannot be null +- defined in: [SerializedParentAction](serializedparentaction-definitions-serializedsetuserdisablelimitsuntilaction-properties-time.md "https://timelimit.io/SerializedParentAction#/definitions/SerializedSetUserDisableLimitsUntilAction/properties/time") + +#### time Type + +`number` + +## Definitions group SerializedSetUserTimezoneAction + +Reference this group by using + +```json +{"$ref":"https://timelimit.io/SerializedParentAction#/definitions/SerializedSetUserTimezoneAction"} +``` + +| Property | Type | Required | Nullable | Defined by | +| :-------------------- | -------- | -------- | -------------- | :-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | +| [type](#type) | `string` | Required | cannot be null | [SerializedParentAction](serializedparentaction-definitions-serializedsetusertimezoneaction-properties-type.md "https://timelimit.io/SerializedParentAction#/definitions/SerializedSetUserTimezoneAction/properties/type") | +| [userId](#userId) | `string` | Required | cannot be null | [SerializedParentAction](serializedparentaction-definitions-serializedsetusertimezoneaction-properties-userid.md "https://timelimit.io/SerializedParentAction#/definitions/SerializedSetUserTimezoneAction/properties/userId") | +| [timezone](#timezone) | `string` | Required | cannot be null | [SerializedParentAction](serializedparentaction-definitions-serializedsetusertimezoneaction-properties-timezone.md "https://timelimit.io/SerializedParentAction#/definitions/SerializedSetUserTimezoneAction/properties/timezone") | + +### type + + + + +`type` + +- is required +- Type: `string` +- cannot be null +- defined in: [SerializedParentAction](serializedparentaction-definitions-serializedsetusertimezoneaction-properties-type.md "https://timelimit.io/SerializedParentAction#/definitions/SerializedSetUserTimezoneAction/properties/type") + +#### type Type + +`string` + +#### type Constraints + +**enum**: the value of this property must be equal to one of the following values: + +| Value | Explanation | +| :-------------------- | ----------- | +| `"SET_USER_TIMEZONE"` | | + +### userId + + + + +`userId` + +- is required +- Type: `string` +- cannot be null +- defined in: [SerializedParentAction](serializedparentaction-definitions-serializedsetusertimezoneaction-properties-userid.md "https://timelimit.io/SerializedParentAction#/definitions/SerializedSetUserTimezoneAction/properties/userId") + +#### userId Type + +`string` + +### timezone + + + + +`timezone` + +- is required +- Type: `string` +- cannot be null +- defined in: [SerializedParentAction](serializedparentaction-definitions-serializedsetusertimezoneaction-properties-timezone.md "https://timelimit.io/SerializedParentAction#/definitions/SerializedSetUserTimezoneAction/properties/timezone") + +#### timezone Type + +`string` + +## Definitions group SerializedUpdateCategoryBatteryLimitAction + +Reference this group by using + +```json +{"$ref":"https://timelimit.io/SerializedParentAction#/definitions/SerializedUpdateCategoryBatteryLimitAction"} +``` + +| Property | Type | Required | Nullable | Defined by | +| :-------------------------- | -------- | -------- | -------------- | :------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ | +| [type](#type) | `string` | Required | cannot be null | [SerializedParentAction](serializedparentaction-definitions-serializedupdatecategorybatterylimitaction-properties-type.md "https://timelimit.io/SerializedParentAction#/definitions/SerializedUpdateCategoryBatteryLimitAction/properties/type") | +| [categoryId](#categoryId) | `string` | Required | cannot be null | [SerializedParentAction](serializedparentaction-definitions-serializedupdatecategorybatterylimitaction-properties-categoryid.md "https://timelimit.io/SerializedParentAction#/definitions/SerializedUpdateCategoryBatteryLimitAction/properties/categoryId") | +| [chargeLimit](#chargeLimit) | `number` | Optional | cannot be null | [SerializedParentAction](serializedparentaction-definitions-serializedupdatecategorybatterylimitaction-properties-chargelimit.md "https://timelimit.io/SerializedParentAction#/definitions/SerializedUpdateCategoryBatteryLimitAction/properties/chargeLimit") | +| [mobileLimit](#mobileLimit) | `number` | Optional | cannot be null | [SerializedParentAction](serializedparentaction-definitions-serializedupdatecategorybatterylimitaction-properties-mobilelimit.md "https://timelimit.io/SerializedParentAction#/definitions/SerializedUpdateCategoryBatteryLimitAction/properties/mobileLimit") | + +### type + + + + +`type` + +- is required +- Type: `string` +- cannot be null +- defined in: [SerializedParentAction](serializedparentaction-definitions-serializedupdatecategorybatterylimitaction-properties-type.md "https://timelimit.io/SerializedParentAction#/definitions/SerializedUpdateCategoryBatteryLimitAction/properties/type") + +#### type Type + +`string` + +#### type Constraints + +**enum**: the value of this property must be equal to one of the following values: + +| Value | Explanation | +| :-------------------------------- | ----------- | +| `"UPDATE_CATEGORY_BATTERY_LIMIT"` | | + +### categoryId + + + + +`categoryId` + +- is required +- Type: `string` +- cannot be null +- defined in: [SerializedParentAction](serializedparentaction-definitions-serializedupdatecategorybatterylimitaction-properties-categoryid.md "https://timelimit.io/SerializedParentAction#/definitions/SerializedUpdateCategoryBatteryLimitAction/properties/categoryId") + +#### categoryId Type + +`string` + +### chargeLimit + + + + +`chargeLimit` + +- is optional +- Type: `number` +- cannot be null +- defined in: [SerializedParentAction](serializedparentaction-definitions-serializedupdatecategorybatterylimitaction-properties-chargelimit.md "https://timelimit.io/SerializedParentAction#/definitions/SerializedUpdateCategoryBatteryLimitAction/properties/chargeLimit") + +#### chargeLimit Type + +`number` + +### mobileLimit + + + + +`mobileLimit` + +- is optional +- Type: `number` +- cannot be null +- defined in: [SerializedParentAction](serializedparentaction-definitions-serializedupdatecategorybatterylimitaction-properties-mobilelimit.md "https://timelimit.io/SerializedParentAction#/definitions/SerializedUpdateCategoryBatteryLimitAction/properties/mobileLimit") + +#### mobileLimit Type + +`number` + +## Definitions group SerializedUpdateCategoryBlockAllNotificationsAction + +Reference this group by using + +```json +{"$ref":"https://timelimit.io/SerializedParentAction#/definitions/SerializedUpdateCategoryBlockAllNotificationsAction"} +``` + +| Property | Type | Required | Nullable | Defined by | +| :------------------------ | --------- | -------- | -------------- | :---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | +| [type](#type) | `string` | Required | cannot be null | [SerializedParentAction](serializedparentaction-definitions-serializedupdatecategoryblockallnotificationsaction-properties-type.md "https://timelimit.io/SerializedParentAction#/definitions/SerializedUpdateCategoryBlockAllNotificationsAction/properties/type") | +| [categoryId](#categoryId) | `string` | Required | cannot be null | [SerializedParentAction](serializedparentaction-definitions-serializedupdatecategoryblockallnotificationsaction-properties-categoryid.md "https://timelimit.io/SerializedParentAction#/definitions/SerializedUpdateCategoryBlockAllNotificationsAction/properties/categoryId") | +| [blocked](#blocked) | `boolean` | Required | cannot be null | [SerializedParentAction](serializedparentaction-definitions-serializedupdatecategoryblockallnotificationsaction-properties-blocked.md "https://timelimit.io/SerializedParentAction#/definitions/SerializedUpdateCategoryBlockAllNotificationsAction/properties/blocked") | + +### type + + + + +`type` + +- is required +- Type: `string` +- cannot be null +- defined in: [SerializedParentAction](serializedparentaction-definitions-serializedupdatecategoryblockallnotificationsaction-properties-type.md "https://timelimit.io/SerializedParentAction#/definitions/SerializedUpdateCategoryBlockAllNotificationsAction/properties/type") + +#### type Type + +`string` + +#### type Constraints + +**enum**: the value of this property must be equal to one of the following values: + +| Value | Explanation | +| :------------------------------------------ | ----------- | +| `"UPDATE_CATEGORY_BLOCK_ALL_NOTIFICATIONS"` | | + +### categoryId + + + + +`categoryId` + +- is required +- Type: `string` +- cannot be null +- defined in: [SerializedParentAction](serializedparentaction-definitions-serializedupdatecategoryblockallnotificationsaction-properties-categoryid.md "https://timelimit.io/SerializedParentAction#/definitions/SerializedUpdateCategoryBlockAllNotificationsAction/properties/categoryId") + +#### categoryId Type + +`string` + +### blocked + + + + +`blocked` + +- is required +- Type: `boolean` +- cannot be null +- defined in: [SerializedParentAction](serializedparentaction-definitions-serializedupdatecategoryblockallnotificationsaction-properties-blocked.md "https://timelimit.io/SerializedParentAction#/definitions/SerializedUpdateCategoryBlockAllNotificationsAction/properties/blocked") + +#### blocked Type + +`boolean` + +## Definitions group SerializedUpdateCategoryBlockedTimesAction + +Reference this group by using + +```json +{"$ref":"https://timelimit.io/SerializedParentAction#/definitions/SerializedUpdateCategoryBlockedTimesAction"} +``` + +| Property | Type | Required | Nullable | Defined by | +| :------------------------ | -------- | -------- | -------------- | :---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | +| [type](#type) | `string` | Required | cannot be null | [SerializedParentAction](serializedparentaction-definitions-serializedupdatecategoryblockedtimesaction-properties-type.md "https://timelimit.io/SerializedParentAction#/definitions/SerializedUpdateCategoryBlockedTimesAction/properties/type") | +| [categoryId](#categoryId) | `string` | Required | cannot be null | [SerializedParentAction](serializedparentaction-definitions-serializedupdatecategoryblockedtimesaction-properties-categoryid.md "https://timelimit.io/SerializedParentAction#/definitions/SerializedUpdateCategoryBlockedTimesAction/properties/categoryId") | +| [times](#times) | `string` | Required | cannot be null | [SerializedParentAction](serializedparentaction-definitions-serializedupdatecategoryblockedtimesaction-properties-times.md "https://timelimit.io/SerializedParentAction#/definitions/SerializedUpdateCategoryBlockedTimesAction/properties/times") | + +### type + + + + +`type` + +- is required +- Type: `string` +- cannot be null +- defined in: [SerializedParentAction](serializedparentaction-definitions-serializedupdatecategoryblockedtimesaction-properties-type.md "https://timelimit.io/SerializedParentAction#/definitions/SerializedUpdateCategoryBlockedTimesAction/properties/type") + +#### type Type + +`string` + +#### type Constraints + +**enum**: the value of this property must be equal to one of the following values: + +| Value | Explanation | +| :-------------------------------- | ----------- | +| `"UPDATE_CATEGORY_BLOCKED_TIMES"` | | + +### categoryId + + + + +`categoryId` + +- is required +- Type: `string` +- cannot be null +- defined in: [SerializedParentAction](serializedparentaction-definitions-serializedupdatecategoryblockedtimesaction-properties-categoryid.md "https://timelimit.io/SerializedParentAction#/definitions/SerializedUpdateCategoryBlockedTimesAction/properties/categoryId") + +#### categoryId Type + +`string` + +### times + + + + +`times` + +- is required +- Type: `string` +- cannot be null +- defined in: [SerializedParentAction](serializedparentaction-definitions-serializedupdatecategoryblockedtimesaction-properties-times.md "https://timelimit.io/SerializedParentAction#/definitions/SerializedUpdateCategoryBlockedTimesAction/properties/times") + +#### times Type + +`string` + +## Definitions group SerializedUpdateCategorySortingAction + +Reference this group by using + +```json +{"$ref":"https://timelimit.io/SerializedParentAction#/definitions/SerializedUpdateCategorySortingAction"} +``` + +| Property | Type | Required | Nullable | Defined by | +| :-------------------------- | -------- | -------- | -------------- | :-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | +| [type](#type) | `string` | Required | cannot be null | [SerializedParentAction](serializedparentaction-definitions-serializedupdatecategorysortingaction-properties-type.md "https://timelimit.io/SerializedParentAction#/definitions/SerializedUpdateCategorySortingAction/properties/type") | +| [categoryIds](#categoryIds) | `array` | Required | cannot be null | [SerializedParentAction](serializedparentaction-definitions-serializedupdatecategorysortingaction-properties-categoryids.md "https://timelimit.io/SerializedParentAction#/definitions/SerializedUpdateCategorySortingAction/properties/categoryIds") | + +### type + + + + +`type` + +- is required +- Type: `string` +- cannot be null +- defined in: [SerializedParentAction](serializedparentaction-definitions-serializedupdatecategorysortingaction-properties-type.md "https://timelimit.io/SerializedParentAction#/definitions/SerializedUpdateCategorySortingAction/properties/type") + +#### type Type + +`string` + +#### type Constraints + +**enum**: the value of this property must be equal to one of the following values: + +| Value | Explanation | +| :-------------------------- | ----------- | +| `"UPDATE_CATEGORY_SORTING"` | | + +### categoryIds + + + + +`categoryIds` + +- is required +- Type: `string[]` +- cannot be null +- defined in: [SerializedParentAction](serializedparentaction-definitions-serializedupdatecategorysortingaction-properties-categoryids.md "https://timelimit.io/SerializedParentAction#/definitions/SerializedUpdateCategorySortingAction/properties/categoryIds") + +#### categoryIds Type + +`string[]` + +## Definitions group SerializedUpdateCategoryTemporarilyBlockedAction + +Reference this group by using + +```json +{"$ref":"https://timelimit.io/SerializedParentAction#/definitions/SerializedUpdateCategoryTemporarilyBlockedAction"} +``` + +| Property | Type | Required | Nullable | Defined by | +| :------------------------ | --------- | -------- | -------------- | :---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | +| [type](#type) | `string` | Required | cannot be null | [SerializedParentAction](serializedparentaction-definitions-serializedupdatecategorytemporarilyblockedaction-properties-type.md "https://timelimit.io/SerializedParentAction#/definitions/SerializedUpdateCategoryTemporarilyBlockedAction/properties/type") | +| [categoryId](#categoryId) | `string` | Required | cannot be null | [SerializedParentAction](serializedparentaction-definitions-serializedupdatecategorytemporarilyblockedaction-properties-categoryid.md "https://timelimit.io/SerializedParentAction#/definitions/SerializedUpdateCategoryTemporarilyBlockedAction/properties/categoryId") | +| [blocked](#blocked) | `boolean` | Required | cannot be null | [SerializedParentAction](serializedparentaction-definitions-serializedupdatecategorytemporarilyblockedaction-properties-blocked.md "https://timelimit.io/SerializedParentAction#/definitions/SerializedUpdateCategoryTemporarilyBlockedAction/properties/blocked") | +| [endTime](#endTime) | `number` | Optional | cannot be null | [SerializedParentAction](serializedparentaction-definitions-serializedupdatecategorytemporarilyblockedaction-properties-endtime.md "https://timelimit.io/SerializedParentAction#/definitions/SerializedUpdateCategoryTemporarilyBlockedAction/properties/endTime") | + +### type + + + + +`type` + +- is required +- Type: `string` +- cannot be null +- defined in: [SerializedParentAction](serializedparentaction-definitions-serializedupdatecategorytemporarilyblockedaction-properties-type.md "https://timelimit.io/SerializedParentAction#/definitions/SerializedUpdateCategoryTemporarilyBlockedAction/properties/type") + +#### type Type + +`string` + +#### type Constraints + +**enum**: the value of this property must be equal to one of the following values: + +| Value | Explanation | +| :-------------------------------------- | ----------- | +| `"UPDATE_CATEGORY_TEMPORARILY_BLOCKED"` | | + +### categoryId + + + + +`categoryId` + +- is required +- Type: `string` +- cannot be null +- defined in: [SerializedParentAction](serializedparentaction-definitions-serializedupdatecategorytemporarilyblockedaction-properties-categoryid.md "https://timelimit.io/SerializedParentAction#/definitions/SerializedUpdateCategoryTemporarilyBlockedAction/properties/categoryId") + +#### categoryId Type + +`string` + +### blocked + + + + +`blocked` + +- is required +- Type: `boolean` +- cannot be null +- defined in: [SerializedParentAction](serializedparentaction-definitions-serializedupdatecategorytemporarilyblockedaction-properties-blocked.md "https://timelimit.io/SerializedParentAction#/definitions/SerializedUpdateCategoryTemporarilyBlockedAction/properties/blocked") + +#### blocked Type + +`boolean` + +### endTime + + + + +`endTime` + +- is optional +- Type: `number` +- cannot be null +- defined in: [SerializedParentAction](serializedparentaction-definitions-serializedupdatecategorytemporarilyblockedaction-properties-endtime.md "https://timelimit.io/SerializedParentAction#/definitions/SerializedUpdateCategoryTemporarilyBlockedAction/properties/endTime") + +#### endTime Type + +`number` + +## Definitions group SerializedUpdateCategoryTimeWarningsAction + +Reference this group by using + +```json +{"$ref":"https://timelimit.io/SerializedParentAction#/definitions/SerializedUpdateCategoryTimeWarningsAction"} +``` + +| Property | Type | Required | Nullable | Defined by | +| :------------------------ | --------- | -------- | -------------- | :---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | +| [type](#type) | `string` | Required | cannot be null | [SerializedParentAction](serializedparentaction-definitions-serializedupdatecategorytimewarningsaction-properties-type.md "https://timelimit.io/SerializedParentAction#/definitions/SerializedUpdateCategoryTimeWarningsAction/properties/type") | +| [categoryId](#categoryId) | `string` | Required | cannot be null | [SerializedParentAction](serializedparentaction-definitions-serializedupdatecategorytimewarningsaction-properties-categoryid.md "https://timelimit.io/SerializedParentAction#/definitions/SerializedUpdateCategoryTimeWarningsAction/properties/categoryId") | +| [enable](#enable) | `boolean` | Required | cannot be null | [SerializedParentAction](serializedparentaction-definitions-serializedupdatecategorytimewarningsaction-properties-enable.md "https://timelimit.io/SerializedParentAction#/definitions/SerializedUpdateCategoryTimeWarningsAction/properties/enable") | +| [flags](#flags) | `number` | Required | cannot be null | [SerializedParentAction](serializedparentaction-definitions-serializedupdatecategorytimewarningsaction-properties-flags.md "https://timelimit.io/SerializedParentAction#/definitions/SerializedUpdateCategoryTimeWarningsAction/properties/flags") | + +### type + + + + +`type` + +- is required +- Type: `string` +- cannot be null +- defined in: [SerializedParentAction](serializedparentaction-definitions-serializedupdatecategorytimewarningsaction-properties-type.md "https://timelimit.io/SerializedParentAction#/definitions/SerializedUpdateCategoryTimeWarningsAction/properties/type") + +#### type Type + +`string` + +#### type Constraints + +**enum**: the value of this property must be equal to one of the following values: + +| Value | Explanation | +| :-------------------------------- | ----------- | +| `"UPDATE_CATEGORY_TIME_WARNINGS"` | | + +### categoryId + + + + +`categoryId` + +- is required +- Type: `string` +- cannot be null +- defined in: [SerializedParentAction](serializedparentaction-definitions-serializedupdatecategorytimewarningsaction-properties-categoryid.md "https://timelimit.io/SerializedParentAction#/definitions/SerializedUpdateCategoryTimeWarningsAction/properties/categoryId") + +#### categoryId Type + +`string` + +### enable + + + + +`enable` + +- is required +- Type: `boolean` +- cannot be null +- defined in: [SerializedParentAction](serializedparentaction-definitions-serializedupdatecategorytimewarningsaction-properties-enable.md "https://timelimit.io/SerializedParentAction#/definitions/SerializedUpdateCategoryTimeWarningsAction/properties/enable") + +#### enable Type + +`boolean` + +### flags + + + + +`flags` + +- is required +- Type: `number` +- cannot be null +- defined in: [SerializedParentAction](serializedparentaction-definitions-serializedupdatecategorytimewarningsaction-properties-flags.md "https://timelimit.io/SerializedParentAction#/definitions/SerializedUpdateCategoryTimeWarningsAction/properties/flags") + +#### flags Type + +`number` + +## Definitions group SerializedUpdateCategoryTitleAction + +Reference this group by using + +```json +{"$ref":"https://timelimit.io/SerializedParentAction#/definitions/SerializedUpdateCategoryTitleAction"} +``` + +| Property | Type | Required | Nullable | Defined by | +| :------------------------ | -------- | -------- | -------------- | :-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | +| [type](#type) | `string` | Required | cannot be null | [SerializedParentAction](serializedparentaction-definitions-serializedupdatecategorytitleaction-properties-type.md "https://timelimit.io/SerializedParentAction#/definitions/SerializedUpdateCategoryTitleAction/properties/type") | +| [categoryId](#categoryId) | `string` | Required | cannot be null | [SerializedParentAction](serializedparentaction-definitions-serializedupdatecategorytitleaction-properties-categoryid.md "https://timelimit.io/SerializedParentAction#/definitions/SerializedUpdateCategoryTitleAction/properties/categoryId") | +| [newTitle](#newTitle) | `string` | Required | cannot be null | [SerializedParentAction](serializedparentaction-definitions-serializedupdatecategorytitleaction-properties-newtitle.md "https://timelimit.io/SerializedParentAction#/definitions/SerializedUpdateCategoryTitleAction/properties/newTitle") | + +### type + + + + +`type` + +- is required +- Type: `string` +- cannot be null +- defined in: [SerializedParentAction](serializedparentaction-definitions-serializedupdatecategorytitleaction-properties-type.md "https://timelimit.io/SerializedParentAction#/definitions/SerializedUpdateCategoryTitleAction/properties/type") + +#### type Type + +`string` + +#### type Constraints + +**enum**: the value of this property must be equal to one of the following values: + +| Value | Explanation | +| :------------------------ | ----------- | +| `"UPDATE_CATEGORY_TITLE"` | | + +### categoryId + + + + +`categoryId` + +- is required +- Type: `string` +- cannot be null +- defined in: [SerializedParentAction](serializedparentaction-definitions-serializedupdatecategorytitleaction-properties-categoryid.md "https://timelimit.io/SerializedParentAction#/definitions/SerializedUpdateCategoryTitleAction/properties/categoryId") + +#### categoryId Type + +`string` + +### newTitle + + + + +`newTitle` + +- is required +- Type: `string` +- cannot be null +- defined in: [SerializedParentAction](serializedparentaction-definitions-serializedupdatecategorytitleaction-properties-newtitle.md "https://timelimit.io/SerializedParentAction#/definitions/SerializedUpdateCategoryTitleAction/properties/newTitle") + +#### newTitle Type + +`string` + +## Definitions group SerializedUpdateDeviceNameAction + +Reference this group by using + +```json +{"$ref":"https://timelimit.io/SerializedParentAction#/definitions/SerializedUpdateDeviceNameAction"} +``` + +| Property | Type | Required | Nullable | Defined by | +| :-------------------- | -------- | -------- | -------------- | :---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | +| [type](#type) | `string` | Required | cannot be null | [SerializedParentAction](serializedparentaction-definitions-serializedupdatedevicenameaction-properties-type.md "https://timelimit.io/SerializedParentAction#/definitions/SerializedUpdateDeviceNameAction/properties/type") | +| [deviceId](#deviceId) | `string` | Required | cannot be null | [SerializedParentAction](serializedparentaction-definitions-serializedupdatedevicenameaction-properties-deviceid.md "https://timelimit.io/SerializedParentAction#/definitions/SerializedUpdateDeviceNameAction/properties/deviceId") | +| [name](#name) | `string` | Required | cannot be null | [SerializedParentAction](serializedparentaction-definitions-serializedupdatedevicenameaction-properties-name.md "https://timelimit.io/SerializedParentAction#/definitions/SerializedUpdateDeviceNameAction/properties/name") | + +### type + + + + +`type` + +- is required +- Type: `string` +- cannot be null +- defined in: [SerializedParentAction](serializedparentaction-definitions-serializedupdatedevicenameaction-properties-type.md "https://timelimit.io/SerializedParentAction#/definitions/SerializedUpdateDeviceNameAction/properties/type") + +#### type Type + +`string` + +#### type Constraints + +**enum**: the value of this property must be equal to one of the following values: + +| Value | Explanation | +| :--------------------- | ----------- | +| `"UPDATE_DEVICE_NAME"` | | + +### deviceId + + + + +`deviceId` + +- is required +- Type: `string` +- cannot be null +- defined in: [SerializedParentAction](serializedparentaction-definitions-serializedupdatedevicenameaction-properties-deviceid.md "https://timelimit.io/SerializedParentAction#/definitions/SerializedUpdateDeviceNameAction/properties/deviceId") + +#### deviceId Type + +`string` + +### name + + + + +`name` + +- is required +- Type: `string` +- cannot be null +- defined in: [SerializedParentAction](serializedparentaction-definitions-serializedupdatedevicenameaction-properties-name.md "https://timelimit.io/SerializedParentAction#/definitions/SerializedUpdateDeviceNameAction/properties/name") + +#### name Type + +`string` + +## Definitions group SerializedUpdateEnableActivityLevelBlockingAction + +Reference this group by using + +```json +{"$ref":"https://timelimit.io/SerializedParentAction#/definitions/SerializedUpdateEnableActivityLevelBlockingAction"} +``` + +| Property | Type | Required | Nullable | Defined by | +| :-------------------- | --------- | -------- | -------------- | :-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | +| [type](#type) | `string` | Required | cannot be null | [SerializedParentAction](serializedparentaction-definitions-serializedupdateenableactivitylevelblockingaction-properties-type.md "https://timelimit.io/SerializedParentAction#/definitions/SerializedUpdateEnableActivityLevelBlockingAction/properties/type") | +| [deviceId](#deviceId) | `string` | Required | cannot be null | [SerializedParentAction](serializedparentaction-definitions-serializedupdateenableactivitylevelblockingaction-properties-deviceid.md "https://timelimit.io/SerializedParentAction#/definitions/SerializedUpdateEnableActivityLevelBlockingAction/properties/deviceId") | +| [enable](#enable) | `boolean` | Required | cannot be null | [SerializedParentAction](serializedparentaction-definitions-serializedupdateenableactivitylevelblockingaction-properties-enable.md "https://timelimit.io/SerializedParentAction#/definitions/SerializedUpdateEnableActivityLevelBlockingAction/properties/enable") | + +### type + + + + +`type` + +- is required +- Type: `string` +- cannot be null +- defined in: [SerializedParentAction](serializedparentaction-definitions-serializedupdateenableactivitylevelblockingaction-properties-type.md "https://timelimit.io/SerializedParentAction#/definitions/SerializedUpdateEnableActivityLevelBlockingAction/properties/type") + +#### type Type + +`string` + +#### type Constraints + +**enum**: the value of this property must be equal to one of the following values: + +| Value | Explanation | +| :---------------------------------------- | ----------- | +| `"UPDATE_ENABLE_ACTIVITY_LEVEL_BLOCKING"` | | + +### deviceId + + + + +`deviceId` + +- is required +- Type: `string` +- cannot be null +- defined in: [SerializedParentAction](serializedparentaction-definitions-serializedupdateenableactivitylevelblockingaction-properties-deviceid.md "https://timelimit.io/SerializedParentAction#/definitions/SerializedUpdateEnableActivityLevelBlockingAction/properties/deviceId") + +#### deviceId Type + +`string` + +### enable + + + + +`enable` + +- is required +- Type: `boolean` +- cannot be null +- defined in: [SerializedParentAction](serializedparentaction-definitions-serializedupdateenableactivitylevelblockingaction-properties-enable.md "https://timelimit.io/SerializedParentAction#/definitions/SerializedUpdateEnableActivityLevelBlockingAction/properties/enable") + +#### enable Type + +`boolean` + +## Definitions group SerialiizedUpdateNetworkTimeVerificationAction + +Reference this group by using + +```json +{"$ref":"https://timelimit.io/SerializedParentAction#/definitions/SerialiizedUpdateNetworkTimeVerificationAction"} +``` + +| Property | Type | Required | Nullable | Defined by | +| :-------------------- | -------- | -------- | -------------- | :-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | +| [type](#type) | `string` | Required | cannot be null | [SerializedParentAction](serializedparentaction-definitions-serialiizedupdatenetworktimeverificationaction-properties-type.md "https://timelimit.io/SerializedParentAction#/definitions/SerialiizedUpdateNetworkTimeVerificationAction/properties/type") | +| [deviceId](#deviceId) | `string` | Required | cannot be null | [SerializedParentAction](serializedparentaction-definitions-serialiizedupdatenetworktimeverificationaction-properties-deviceid.md "https://timelimit.io/SerializedParentAction#/definitions/SerialiizedUpdateNetworkTimeVerificationAction/properties/deviceId") | +| [mode](#mode) | `string` | Required | cannot be null | [SerializedParentAction](serializedparentaction-definitions-serialiizedupdatenetworktimeverificationaction-properties-mode.md "https://timelimit.io/SerializedParentAction#/definitions/SerialiizedUpdateNetworkTimeVerificationAction/properties/mode") | + +### type + + + + +`type` + +- is required +- Type: `string` +- cannot be null +- defined in: [SerializedParentAction](serializedparentaction-definitions-serialiizedupdatenetworktimeverificationaction-properties-type.md "https://timelimit.io/SerializedParentAction#/definitions/SerialiizedUpdateNetworkTimeVerificationAction/properties/type") + +#### type Type + +`string` + +#### type Constraints + +**enum**: the value of this property must be equal to one of the following values: + +| Value | Explanation | +| :----------------------------------- | ----------- | +| `"UPDATE_NETWORK_TIME_VERIFICATION"` | | + +### deviceId + + + + +`deviceId` + +- is required +- Type: `string` +- cannot be null +- defined in: [SerializedParentAction](serializedparentaction-definitions-serialiizedupdatenetworktimeverificationaction-properties-deviceid.md "https://timelimit.io/SerializedParentAction#/definitions/SerialiizedUpdateNetworkTimeVerificationAction/properties/deviceId") + +#### deviceId Type + +`string` + +### mode + + + + +`mode` + +- is required +- Type: `string` +- cannot be null +- defined in: [SerializedParentAction](serializedparentaction-definitions-serialiizedupdatenetworktimeverificationaction-properties-mode.md "https://timelimit.io/SerializedParentAction#/definitions/SerialiizedUpdateNetworkTimeVerificationAction/properties/mode") + +#### mode Type + +`string` + +#### mode Constraints + +**enum**: the value of this property must be equal to one of the following values: + +| Value | Explanation | +| :-------------- | ----------- | +| `"disabled"` | | +| `"enabled"` | | +| `"if possible"` | | + +## Definitions group SerializedUpdateParentBlockedTimesAction + +Reference this group by using + +```json +{"$ref":"https://timelimit.io/SerializedParentAction#/definitions/SerializedUpdateParentBlockedTimesAction"} +``` + +| Property | Type | Required | Nullable | Defined by | +| :-------------------- | -------- | -------- | -------------- | :-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | +| [type](#type) | `string` | Required | cannot be null | [SerializedParentAction](serializedparentaction-definitions-serializedupdateparentblockedtimesaction-properties-type.md "https://timelimit.io/SerializedParentAction#/definitions/SerializedUpdateParentBlockedTimesAction/properties/type") | +| [parentId](#parentId) | `string` | Required | cannot be null | [SerializedParentAction](serializedparentaction-definitions-serializedupdateparentblockedtimesaction-properties-parentid.md "https://timelimit.io/SerializedParentAction#/definitions/SerializedUpdateParentBlockedTimesAction/properties/parentId") | +| [times](#times) | `string` | Required | cannot be null | [SerializedParentAction](serializedparentaction-definitions-serializedupdateparentblockedtimesaction-properties-times.md "https://timelimit.io/SerializedParentAction#/definitions/SerializedUpdateParentBlockedTimesAction/properties/times") | + +### type + + + + +`type` + +- is required +- Type: `string` +- cannot be null +- defined in: [SerializedParentAction](serializedparentaction-definitions-serializedupdateparentblockedtimesaction-properties-type.md "https://timelimit.io/SerializedParentAction#/definitions/SerializedUpdateParentBlockedTimesAction/properties/type") + +#### type Type + +`string` + +#### type Constraints + +**enum**: the value of this property must be equal to one of the following values: + +| Value | Explanation | +| :------------------------------ | ----------- | +| `"UPDATE_PARENT_BLOCKED_TIMES"` | | + +### parentId + + + + +`parentId` + +- is required +- Type: `string` +- cannot be null +- defined in: [SerializedParentAction](serializedparentaction-definitions-serializedupdateparentblockedtimesaction-properties-parentid.md "https://timelimit.io/SerializedParentAction#/definitions/SerializedUpdateParentBlockedTimesAction/properties/parentId") + +#### parentId Type + +`string` + +### times + + + + +`times` + +- is required +- Type: `string` +- cannot be null +- defined in: [SerializedParentAction](serializedparentaction-definitions-serializedupdateparentblockedtimesaction-properties-times.md "https://timelimit.io/SerializedParentAction#/definitions/SerializedUpdateParentBlockedTimesAction/properties/times") + +#### times Type + +`string` + +## Definitions group SerializedUpdateParentNotificationFlagsAction + +Reference this group by using + +```json +{"$ref":"https://timelimit.io/SerializedParentAction#/definitions/SerializedUpdateParentNotificationFlagsAction"} +``` + +| Property | Type | Required | Nullable | Defined by | +| :-------------------- | --------- | -------- | -------------- | :------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ | +| [type](#type) | `string` | Required | cannot be null | [SerializedParentAction](serializedparentaction-definitions-serializedupdateparentnotificationflagsaction-properties-type.md "https://timelimit.io/SerializedParentAction#/definitions/SerializedUpdateParentNotificationFlagsAction/properties/type") | +| [parentId](#parentId) | `string` | Required | cannot be null | [SerializedParentAction](serializedparentaction-definitions-serializedupdateparentnotificationflagsaction-properties-parentid.md "https://timelimit.io/SerializedParentAction#/definitions/SerializedUpdateParentNotificationFlagsAction/properties/parentId") | +| [flags](#flags) | `number` | Required | cannot be null | [SerializedParentAction](serializedparentaction-definitions-serializedupdateparentnotificationflagsaction-properties-flags.md "https://timelimit.io/SerializedParentAction#/definitions/SerializedUpdateParentNotificationFlagsAction/properties/flags") | +| [set](#set) | `boolean` | Required | cannot be null | [SerializedParentAction](serializedparentaction-definitions-serializedupdateparentnotificationflagsaction-properties-set.md "https://timelimit.io/SerializedParentAction#/definitions/SerializedUpdateParentNotificationFlagsAction/properties/set") | + +### type + + + + +`type` + +- is required +- Type: `string` +- cannot be null +- defined in: [SerializedParentAction](serializedparentaction-definitions-serializedupdateparentnotificationflagsaction-properties-type.md "https://timelimit.io/SerializedParentAction#/definitions/SerializedUpdateParentNotificationFlagsAction/properties/type") + +#### type Type + +`string` + +#### type Constraints + +**enum**: the value of this property must be equal to one of the following values: + +| Value | Explanation | +| :----------------------------------- | ----------- | +| `"UPDATE_PARENT_NOTIFICATION_FLAGS"` | | + +### parentId + + + + +`parentId` + +- is required +- Type: `string` +- cannot be null +- defined in: [SerializedParentAction](serializedparentaction-definitions-serializedupdateparentnotificationflagsaction-properties-parentid.md "https://timelimit.io/SerializedParentAction#/definitions/SerializedUpdateParentNotificationFlagsAction/properties/parentId") + +#### parentId Type + +`string` + +### flags + + + + +`flags` + +- is required +- Type: `number` +- cannot be null +- defined in: [SerializedParentAction](serializedparentaction-definitions-serializedupdateparentnotificationflagsaction-properties-flags.md "https://timelimit.io/SerializedParentAction#/definitions/SerializedUpdateParentNotificationFlagsAction/properties/flags") + +#### flags Type + +`number` + +### set + + + + +`set` + +- is required +- Type: `boolean` +- cannot be null +- defined in: [SerializedParentAction](serializedparentaction-definitions-serializedupdateparentnotificationflagsaction-properties-set.md "https://timelimit.io/SerializedParentAction#/definitions/SerializedUpdateParentNotificationFlagsAction/properties/set") + +#### set Type + +`boolean` + +## Definitions group SerializedUpdateTimelimitRuleAction + +Reference this group by using + +```json +{"$ref":"https://timelimit.io/SerializedParentAction#/definitions/SerializedUpdateTimelimitRuleAction"} +``` + +| Property | Type | Required | Nullable | Defined by | +| :---------------------- | --------- | -------- | -------------- | :------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ | +| [type](#type) | `string` | Required | cannot be null | [SerializedParentAction](serializedparentaction-definitions-serializedupdatetimelimitruleaction-properties-type.md "https://timelimit.io/SerializedParentAction#/definitions/SerializedUpdateTimelimitRuleAction/properties/type") | +| [ruleId](#ruleId) | `string` | Required | cannot be null | [SerializedParentAction](serializedparentaction-definitions-serializedupdatetimelimitruleaction-properties-ruleid.md "https://timelimit.io/SerializedParentAction#/definitions/SerializedUpdateTimelimitRuleAction/properties/ruleId") | +| [time](#time) | `number` | Required | cannot be null | [SerializedParentAction](serializedparentaction-definitions-serializedupdatetimelimitruleaction-properties-time.md "https://timelimit.io/SerializedParentAction#/definitions/SerializedUpdateTimelimitRuleAction/properties/time") | +| [days](#days) | `number` | Required | cannot be null | [SerializedParentAction](serializedparentaction-definitions-serializedupdatetimelimitruleaction-properties-days.md "https://timelimit.io/SerializedParentAction#/definitions/SerializedUpdateTimelimitRuleAction/properties/days") | +| [extraTime](#extraTime) | `boolean` | Required | cannot be null | [SerializedParentAction](serializedparentaction-definitions-serializedupdatetimelimitruleaction-properties-extratime.md "https://timelimit.io/SerializedParentAction#/definitions/SerializedUpdateTimelimitRuleAction/properties/extraTime") | + +### type + + + + +`type` + +- is required +- Type: `string` +- cannot be null +- defined in: [SerializedParentAction](serializedparentaction-definitions-serializedupdatetimelimitruleaction-properties-type.md "https://timelimit.io/SerializedParentAction#/definitions/SerializedUpdateTimelimitRuleAction/properties/type") + +#### type Type + +`string` + +#### type Constraints + +**enum**: the value of this property must be equal to one of the following values: + +| Value | Explanation | +| :------------------------ | ----------- | +| `"UPDATE_TIMELIMIT_RULE"` | | + +### ruleId + + + + +`ruleId` + +- is required +- Type: `string` +- cannot be null +- defined in: [SerializedParentAction](serializedparentaction-definitions-serializedupdatetimelimitruleaction-properties-ruleid.md "https://timelimit.io/SerializedParentAction#/definitions/SerializedUpdateTimelimitRuleAction/properties/ruleId") + +#### ruleId Type + +`string` + +### time + + + + +`time` + +- is required +- Type: `number` +- cannot be null +- defined in: [SerializedParentAction](serializedparentaction-definitions-serializedupdatetimelimitruleaction-properties-time.md "https://timelimit.io/SerializedParentAction#/definitions/SerializedUpdateTimelimitRuleAction/properties/time") + +#### time Type + +`number` + +### days + + + + +`days` + +- is required +- Type: `number` +- cannot be null +- defined in: [SerializedParentAction](serializedparentaction-definitions-serializedupdatetimelimitruleaction-properties-days.md "https://timelimit.io/SerializedParentAction#/definitions/SerializedUpdateTimelimitRuleAction/properties/days") + +#### days Type + +`number` + +### extraTime + + + + +`extraTime` + +- is required +- Type: `boolean` +- cannot be null +- defined in: [SerializedParentAction](serializedparentaction-definitions-serializedupdatetimelimitruleaction-properties-extratime.md "https://timelimit.io/SerializedParentAction#/definitions/SerializedUpdateTimelimitRuleAction/properties/extraTime") + +#### extraTime Type + +`boolean` diff --git a/docs/schema/signinbymailcoderequest-definitions.md b/docs/schema/signinbymailcoderequest-definitions.md new file mode 100644 index 0000000..d662372 --- /dev/null +++ b/docs/schema/signinbymailcoderequest-definitions.md @@ -0,0 +1,16 @@ +# Untitled undefined type in SignInByMailCodeRequest Schema + +```txt +https://timelimit.io/SignInByMailCodeRequest#/definitions +``` + + + + +| Abstract | Extensible | Status | Identifiable | Custom Properties | Additional Properties | Access Restrictions | Defined In | +| :------------------ | ---------- | -------------- | ----------------------- | :---------------- | --------------------- | ------------------- | --------------------------------------------------------------------------------------------------- | +| Can be instantiated | No | Unknown status | Unknown identifiability | Forbidden | Allowed | none | [SignInByMailCodeRequest.schema.json\*](SignInByMailCodeRequest.schema.json "open original schema") | + +## definitions Type + +unknown diff --git a/docs/schema/signinbymailcoderequest-properties-maillogintoken.md b/docs/schema/signinbymailcoderequest-properties-maillogintoken.md new file mode 100644 index 0000000..006de8d --- /dev/null +++ b/docs/schema/signinbymailcoderequest-properties-maillogintoken.md @@ -0,0 +1,16 @@ +# Untitled string in SignInByMailCodeRequest Schema + +```txt +https://timelimit.io/SignInByMailCodeRequest#/properties/mailLoginToken +``` + + + + +| Abstract | Extensible | Status | Identifiable | Custom Properties | Additional Properties | Access Restrictions | Defined In | +| :------------------ | ---------- | -------------- | ----------------------- | :---------------- | --------------------- | ------------------- | --------------------------------------------------------------------------------------------------- | +| Can be instantiated | No | Unknown status | Unknown identifiability | Forbidden | Allowed | none | [SignInByMailCodeRequest.schema.json\*](SignInByMailCodeRequest.schema.json "open original schema") | + +## mailLoginToken Type + +`string` diff --git a/docs/schema/signinbymailcoderequest-properties-receivedcode.md b/docs/schema/signinbymailcoderequest-properties-receivedcode.md new file mode 100644 index 0000000..df19473 --- /dev/null +++ b/docs/schema/signinbymailcoderequest-properties-receivedcode.md @@ -0,0 +1,16 @@ +# Untitled string in SignInByMailCodeRequest Schema + +```txt +https://timelimit.io/SignInByMailCodeRequest#/properties/receivedCode +``` + + + + +| Abstract | Extensible | Status | Identifiable | Custom Properties | Additional Properties | Access Restrictions | Defined In | +| :------------------ | ---------- | -------------- | ----------------------- | :---------------- | --------------------- | ------------------- | --------------------------------------------------------------------------------------------------- | +| Can be instantiated | No | Unknown status | Unknown identifiability | Forbidden | Allowed | none | [SignInByMailCodeRequest.schema.json\*](SignInByMailCodeRequest.schema.json "open original schema") | + +## receivedCode Type + +`string` diff --git a/docs/schema/signinbymailcoderequest-properties.md b/docs/schema/signinbymailcoderequest-properties.md new file mode 100644 index 0000000..a0339f8 --- /dev/null +++ b/docs/schema/signinbymailcoderequest-properties.md @@ -0,0 +1,16 @@ +# Untitled undefined type in SignInByMailCodeRequest Schema + +```txt +https://timelimit.io/SignInByMailCodeRequest#/properties +``` + + + + +| Abstract | Extensible | Status | Identifiable | Custom Properties | Additional Properties | Access Restrictions | Defined In | +| :------------------ | ---------- | -------------- | ----------------------- | :---------------- | --------------------- | ------------------- | --------------------------------------------------------------------------------------------------- | +| Can be instantiated | No | Unknown status | Unknown identifiability | Forbidden | Allowed | none | [SignInByMailCodeRequest.schema.json\*](SignInByMailCodeRequest.schema.json "open original schema") | + +## properties Type + +unknown diff --git a/docs/schema/signinbymailcoderequest.md b/docs/schema/signinbymailcoderequest.md new file mode 100644 index 0000000..9011070 --- /dev/null +++ b/docs/schema/signinbymailcoderequest.md @@ -0,0 +1,57 @@ +# SignInByMailCodeRequest Schema + +```txt +https://timelimit.io/SignInByMailCodeRequest +``` + + + + +| Abstract | Extensible | Status | Identifiable | Custom Properties | Additional Properties | Access Restrictions | Defined In | +| :------------------ | ---------- | -------------- | ------------ | :---------------- | --------------------- | ------------------- | ------------------------------------------------------------------------------------------------- | +| Can be instantiated | Yes | Unknown status | No | Forbidden | Forbidden | none | [SignInByMailCodeRequest.schema.json](SignInByMailCodeRequest.schema.json "open original schema") | + +## SignInByMailCodeRequest Type + +`object` ([SignInByMailCodeRequest](signinbymailcoderequest.md)) + +# SignInByMailCodeRequest Definitions + +# SignInByMailCodeRequest Properties + +| Property | Type | Required | Nullable | Defined by | +| :-------------------------------- | -------- | -------- | -------------- | :------------------------------------------------------------------------------------------------------------------------------------------------------------- | +| [mailLoginToken](#mailLoginToken) | `string` | Required | cannot be null | [SignInByMailCodeRequest](signinbymailcoderequest-properties-maillogintoken.md "https://timelimit.io/SignInByMailCodeRequest#/properties/mailLoginToken") | +| [receivedCode](#receivedCode) | `string` | Required | cannot be null | [SignInByMailCodeRequest](signinbymailcoderequest-properties-receivedcode.md "https://timelimit.io/SignInByMailCodeRequest#/properties/receivedCode") | + +## mailLoginToken + + + + +`mailLoginToken` + +- is required +- Type: `string` +- cannot be null +- defined in: [SignInByMailCodeRequest](signinbymailcoderequest-properties-maillogintoken.md "https://timelimit.io/SignInByMailCodeRequest#/properties/mailLoginToken") + +### mailLoginToken Type + +`string` + +## receivedCode + + + + +`receivedCode` + +- is required +- Type: `string` +- cannot be null +- defined in: [SignInByMailCodeRequest](signinbymailcoderequest-properties-receivedcode.md "https://timelimit.io/SignInByMailCodeRequest#/properties/receivedCode") + +### receivedCode Type + +`string` diff --git a/docs/schema/signintofamilyrequest-definitions-newdeviceinfo-properties-model.md b/docs/schema/signintofamilyrequest-definitions-newdeviceinfo-properties-model.md new file mode 100644 index 0000000..8231d74 --- /dev/null +++ b/docs/schema/signintofamilyrequest-definitions-newdeviceinfo-properties-model.md @@ -0,0 +1,16 @@ +# Untitled string in SignIntoFamilyRequest Schema + +```txt +https://timelimit.io/SignIntoFamilyRequest#/definitions/NewDeviceInfo/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 | [SignIntoFamilyRequest.schema.json\*](SignIntoFamilyRequest.schema.json "open original schema") | + +## model Type + +`string` diff --git a/docs/schema/signintofamilyrequest-definitions-newdeviceinfo-properties.md b/docs/schema/signintofamilyrequest-definitions-newdeviceinfo-properties.md new file mode 100644 index 0000000..e368d3f --- /dev/null +++ b/docs/schema/signintofamilyrequest-definitions-newdeviceinfo-properties.md @@ -0,0 +1,16 @@ +# Untitled undefined type in SignIntoFamilyRequest Schema + +```txt +https://timelimit.io/SignIntoFamilyRequest#/definitions/NewDeviceInfo/properties +``` + + + + +| Abstract | Extensible | Status | Identifiable | Custom Properties | Additional Properties | Access Restrictions | Defined In | +| :------------------ | ---------- | -------------- | ----------------------- | :---------------- | --------------------- | ------------------- | ----------------------------------------------------------------------------------------------- | +| Can be instantiated | No | Unknown status | Unknown identifiability | Forbidden | Allowed | none | [SignIntoFamilyRequest.schema.json\*](SignIntoFamilyRequest.schema.json "open original schema") | + +## properties Type + +unknown diff --git a/docs/schema/signintofamilyrequest-definitions-newdeviceinfo.md b/docs/schema/signintofamilyrequest-definitions-newdeviceinfo.md new file mode 100644 index 0000000..b026057 --- /dev/null +++ b/docs/schema/signintofamilyrequest-definitions-newdeviceinfo.md @@ -0,0 +1,38 @@ +# NewDeviceInfo Schema + +```txt +https://timelimit.io/SignIntoFamilyRequest#/definitions/NewDeviceInfo +``` + + + + +| Abstract | Extensible | Status | Identifiable | Custom Properties | Additional Properties | Access Restrictions | Defined In | +| :------------------ | ---------- | -------------- | ------------ | :---------------- | --------------------- | ------------------- | ----------------------------------------------------------------------------------------------- | +| Can be instantiated | No | Unknown status | No | Forbidden | Forbidden | none | [SignIntoFamilyRequest.schema.json\*](SignIntoFamilyRequest.schema.json "open original schema") | + +## NewDeviceInfo Type + +`object` ([NewDeviceInfo](signintofamilyrequest-definitions-newdeviceinfo.md)) + +# NewDeviceInfo Properties + +| Property | Type | Required | Nullable | Defined by | +| :-------------- | -------- | -------- | -------------- | :----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | +| [model](#model) | `string` | Required | cannot be null | [SignIntoFamilyRequest](signintofamilyrequest-definitions-newdeviceinfo-properties-model.md "https://timelimit.io/SignIntoFamilyRequest#/definitions/NewDeviceInfo/properties/model") | + +## model + + + + +`model` + +- is required +- Type: `string` +- cannot be null +- defined in: [SignIntoFamilyRequest](signintofamilyrequest-definitions-newdeviceinfo-properties-model.md "https://timelimit.io/SignIntoFamilyRequest#/definitions/NewDeviceInfo/properties/model") + +### model Type + +`string` diff --git a/docs/schema/signintofamilyrequest-definitions.md b/docs/schema/signintofamilyrequest-definitions.md new file mode 100644 index 0000000..762560e --- /dev/null +++ b/docs/schema/signintofamilyrequest-definitions.md @@ -0,0 +1,16 @@ +# Untitled undefined type in SignIntoFamilyRequest Schema + +```txt +https://timelimit.io/SignIntoFamilyRequest#/definitions +``` + + + + +| Abstract | Extensible | Status | Identifiable | Custom Properties | Additional Properties | Access Restrictions | Defined In | +| :------------------ | ---------- | -------------- | ----------------------- | :---------------- | --------------------- | ------------------- | ----------------------------------------------------------------------------------------------- | +| Can be instantiated | No | Unknown status | Unknown identifiability | Forbidden | Allowed | none | [SignIntoFamilyRequest.schema.json\*](SignIntoFamilyRequest.schema.json "open original schema") | + +## definitions Type + +unknown diff --git a/docs/schema/signintofamilyrequest-properties-devicename.md b/docs/schema/signintofamilyrequest-properties-devicename.md new file mode 100644 index 0000000..f58cc34 --- /dev/null +++ b/docs/schema/signintofamilyrequest-properties-devicename.md @@ -0,0 +1,16 @@ +# Untitled string in SignIntoFamilyRequest Schema + +```txt +https://timelimit.io/SignIntoFamilyRequest#/properties/deviceName +``` + + + + +| Abstract | Extensible | Status | Identifiable | Custom Properties | Additional Properties | Access Restrictions | Defined In | +| :------------------ | ---------- | -------------- | ----------------------- | :---------------- | --------------------- | ------------------- | ----------------------------------------------------------------------------------------------- | +| Can be instantiated | No | Unknown status | Unknown identifiability | Forbidden | Allowed | none | [SignIntoFamilyRequest.schema.json\*](SignIntoFamilyRequest.schema.json "open original schema") | + +## deviceName Type + +`string` diff --git a/docs/schema/signintofamilyrequest-properties-mailauthtoken.md b/docs/schema/signintofamilyrequest-properties-mailauthtoken.md new file mode 100644 index 0000000..40895f0 --- /dev/null +++ b/docs/schema/signintofamilyrequest-properties-mailauthtoken.md @@ -0,0 +1,16 @@ +# Untitled string in SignIntoFamilyRequest Schema + +```txt +https://timelimit.io/SignIntoFamilyRequest#/properties/mailAuthToken +``` + + + + +| Abstract | Extensible | Status | Identifiable | Custom Properties | Additional Properties | Access Restrictions | Defined In | +| :------------------ | ---------- | -------------- | ----------------------- | :---------------- | --------------------- | ------------------- | ----------------------------------------------------------------------------------------------- | +| Can be instantiated | No | Unknown status | Unknown identifiability | Forbidden | Allowed | none | [SignIntoFamilyRequest.schema.json\*](SignIntoFamilyRequest.schema.json "open original schema") | + +## mailAuthToken Type + +`string` diff --git a/docs/schema/signintofamilyrequest-properties.md b/docs/schema/signintofamilyrequest-properties.md new file mode 100644 index 0000000..b62ab62 --- /dev/null +++ b/docs/schema/signintofamilyrequest-properties.md @@ -0,0 +1,16 @@ +# Untitled undefined type in SignIntoFamilyRequest Schema + +```txt +https://timelimit.io/SignIntoFamilyRequest#/properties +``` + + + + +| Abstract | Extensible | Status | Identifiable | Custom Properties | Additional Properties | Access Restrictions | Defined In | +| :------------------ | ---------- | -------------- | ----------------------- | :---------------- | --------------------- | ------------------- | ----------------------------------------------------------------------------------------------- | +| Can be instantiated | No | Unknown status | Unknown identifiability | Forbidden | Allowed | none | [SignIntoFamilyRequest.schema.json\*](SignIntoFamilyRequest.schema.json "open original schema") | + +## properties Type + +unknown diff --git a/docs/schema/signintofamilyrequest.md b/docs/schema/signintofamilyrequest.md new file mode 100644 index 0000000..35a55d6 --- /dev/null +++ b/docs/schema/signintofamilyrequest.md @@ -0,0 +1,102 @@ +# SignIntoFamilyRequest Schema + +```txt +https://timelimit.io/SignIntoFamilyRequest +``` + + + + +| Abstract | Extensible | Status | Identifiable | Custom Properties | Additional Properties | Access Restrictions | Defined In | +| :------------------ | ---------- | -------------- | ------------ | :---------------- | --------------------- | ------------------- | --------------------------------------------------------------------------------------------- | +| Can be instantiated | Yes | Unknown status | No | Forbidden | Forbidden | none | [SignIntoFamilyRequest.schema.json](SignIntoFamilyRequest.schema.json "open original schema") | + +## SignIntoFamilyRequest Type + +`object` ([SignIntoFamilyRequest](signintofamilyrequest.md)) + +# SignIntoFamilyRequest Definitions + +## Definitions group NewDeviceInfo + +Reference this group by using + +```json +{"$ref":"https://timelimit.io/SignIntoFamilyRequest#/definitions/NewDeviceInfo"} +``` + +| Property | Type | Required | Nullable | Defined by | +| :-------------- | -------- | -------- | -------------- | :----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | +| [model](#model) | `string` | Required | cannot be null | [SignIntoFamilyRequest](signintofamilyrequest-definitions-newdeviceinfo-properties-model.md "https://timelimit.io/SignIntoFamilyRequest#/definitions/NewDeviceInfo/properties/model") | + +### model + + + + +`model` + +- is required +- Type: `string` +- cannot be null +- defined in: [SignIntoFamilyRequest](signintofamilyrequest-definitions-newdeviceinfo-properties-model.md "https://timelimit.io/SignIntoFamilyRequest#/definitions/NewDeviceInfo/properties/model") + +#### model Type + +`string` + +# SignIntoFamilyRequest Properties + +| Property | Type | Required | Nullable | Defined by | +| :------------------------------ | -------- | -------- | -------------- | :----------------------------------------------------------------------------------------------------------------------------------------------------- | +| [mailAuthToken](#mailAuthToken) | `string` | Required | cannot be null | [SignIntoFamilyRequest](signintofamilyrequest-properties-mailauthtoken.md "https://timelimit.io/SignIntoFamilyRequest#/properties/mailAuthToken") | +| [parentDevice](#parentDevice) | `object` | Required | cannot be null | [SignIntoFamilyRequest](signintofamilyrequest-definitions-newdeviceinfo.md "https://timelimit.io/SignIntoFamilyRequest#/properties/parentDevice") | +| [deviceName](#deviceName) | `string` | Required | cannot be null | [SignIntoFamilyRequest](signintofamilyrequest-properties-devicename.md "https://timelimit.io/SignIntoFamilyRequest#/properties/deviceName") | + +## mailAuthToken + + + + +`mailAuthToken` + +- is required +- Type: `string` +- cannot be null +- defined in: [SignIntoFamilyRequest](signintofamilyrequest-properties-mailauthtoken.md "https://timelimit.io/SignIntoFamilyRequest#/properties/mailAuthToken") + +### mailAuthToken Type + +`string` + +## parentDevice + + + + +`parentDevice` + +- is required +- Type: `object` ([NewDeviceInfo](signintofamilyrequest-definitions-newdeviceinfo.md)) +- cannot be null +- defined in: [SignIntoFamilyRequest](signintofamilyrequest-definitions-newdeviceinfo.md "https://timelimit.io/SignIntoFamilyRequest#/properties/parentDevice") + +### parentDevice Type + +`object` ([NewDeviceInfo](signintofamilyrequest-definitions-newdeviceinfo.md)) + +## deviceName + + + + +`deviceName` + +- is required +- Type: `string` +- cannot be null +- defined in: [SignIntoFamilyRequest](signintofamilyrequest-properties-devicename.md "https://timelimit.io/SignIntoFamilyRequest#/properties/deviceName") + +### deviceName Type + +`string` diff --git a/docs/schema/updateprimarydevicerequest-definitions.md b/docs/schema/updateprimarydevicerequest-definitions.md new file mode 100644 index 0000000..4b8d549 --- /dev/null +++ b/docs/schema/updateprimarydevicerequest-definitions.md @@ -0,0 +1,16 @@ +# Untitled undefined type in UpdatePrimaryDeviceRequest Schema + +```txt +https://timelimit.io/UpdatePrimaryDeviceRequest#/definitions +``` + + + + +| Abstract | Extensible | Status | Identifiable | Custom Properties | Additional Properties | Access Restrictions | Defined In | +| :------------------ | ---------- | -------------- | ----------------------- | :---------------- | --------------------- | ------------------- | --------------------------------------------------------------------------------------------------------- | +| Can be instantiated | No | Unknown status | Unknown identifiability | Forbidden | Allowed | none | [UpdatePrimaryDeviceRequest.schema.json\*](UpdatePrimaryDeviceRequest.schema.json "open original schema") | + +## definitions Type + +unknown diff --git a/docs/schema/updateprimarydevicerequest-properties-action.md b/docs/schema/updateprimarydevicerequest-properties-action.md new file mode 100644 index 0000000..ffdf38d --- /dev/null +++ b/docs/schema/updateprimarydevicerequest-properties-action.md @@ -0,0 +1,25 @@ +# Untitled string in UpdatePrimaryDeviceRequest Schema + +```txt +https://timelimit.io/UpdatePrimaryDeviceRequest#/properties/action +``` + + + + +| Abstract | Extensible | Status | Identifiable | Custom Properties | Additional Properties | Access Restrictions | Defined In | +| :------------------ | ---------- | -------------- | ----------------------- | :---------------- | --------------------- | ------------------- | --------------------------------------------------------------------------------------------------------- | +| Can be instantiated | No | Unknown status | Unknown identifiability | Forbidden | Allowed | none | [UpdatePrimaryDeviceRequest.schema.json\*](UpdatePrimaryDeviceRequest.schema.json "open original schema") | + +## action Type + +`string` + +## action Constraints + +**enum**: the value of this property must be equal to one of the following values: + +| Value | Explanation | +| :-------------------- | ----------- | +| `"set this device"` | | +| `"unset this device"` | | diff --git a/docs/schema/updateprimarydevicerequest-properties-authtoken.md b/docs/schema/updateprimarydevicerequest-properties-authtoken.md new file mode 100644 index 0000000..73d64c2 --- /dev/null +++ b/docs/schema/updateprimarydevicerequest-properties-authtoken.md @@ -0,0 +1,16 @@ +# Untitled string in UpdatePrimaryDeviceRequest Schema + +```txt +https://timelimit.io/UpdatePrimaryDeviceRequest#/properties/authToken +``` + + + + +| Abstract | Extensible | Status | Identifiable | Custom Properties | Additional Properties | Access Restrictions | Defined In | +| :------------------ | ---------- | -------------- | ----------------------- | :---------------- | --------------------- | ------------------- | --------------------------------------------------------------------------------------------------------- | +| Can be instantiated | No | Unknown status | Unknown identifiability | Forbidden | Allowed | none | [UpdatePrimaryDeviceRequest.schema.json\*](UpdatePrimaryDeviceRequest.schema.json "open original schema") | + +## authToken Type + +`string` diff --git a/docs/schema/updateprimarydevicerequest-properties-currentuserid.md b/docs/schema/updateprimarydevicerequest-properties-currentuserid.md new file mode 100644 index 0000000..e3ccafd --- /dev/null +++ b/docs/schema/updateprimarydevicerequest-properties-currentuserid.md @@ -0,0 +1,16 @@ +# Untitled string in UpdatePrimaryDeviceRequest Schema + +```txt +https://timelimit.io/UpdatePrimaryDeviceRequest#/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 | [UpdatePrimaryDeviceRequest.schema.json\*](UpdatePrimaryDeviceRequest.schema.json "open original schema") | + +## currentUserId Type + +`string` diff --git a/docs/schema/updateprimarydevicerequest-properties.md b/docs/schema/updateprimarydevicerequest-properties.md new file mode 100644 index 0000000..55fb509 --- /dev/null +++ b/docs/schema/updateprimarydevicerequest-properties.md @@ -0,0 +1,16 @@ +# Untitled undefined type in UpdatePrimaryDeviceRequest Schema + +```txt +https://timelimit.io/UpdatePrimaryDeviceRequest#/properties +``` + + + + +| Abstract | Extensible | Status | Identifiable | Custom Properties | Additional Properties | Access Restrictions | Defined In | +| :------------------ | ---------- | -------------- | ----------------------- | :---------------- | --------------------- | ------------------- | --------------------------------------------------------------------------------------------------------- | +| Can be instantiated | No | Unknown status | Unknown identifiability | Forbidden | Allowed | none | [UpdatePrimaryDeviceRequest.schema.json\*](UpdatePrimaryDeviceRequest.schema.json "open original schema") | + +## properties Type + +unknown diff --git a/docs/schema/updateprimarydevicerequest.md b/docs/schema/updateprimarydevicerequest.md new file mode 100644 index 0000000..342733d --- /dev/null +++ b/docs/schema/updateprimarydevicerequest.md @@ -0,0 +1,83 @@ +# UpdatePrimaryDeviceRequest Schema + +```txt +https://timelimit.io/UpdatePrimaryDeviceRequest +``` + + + + +| Abstract | Extensible | Status | Identifiable | Custom Properties | Additional Properties | Access Restrictions | Defined In | +| :------------------ | ---------- | -------------- | ------------ | :---------------- | --------------------- | ------------------- | ------------------------------------------------------------------------------------------------------- | +| Can be instantiated | Yes | Unknown status | No | Forbidden | Forbidden | none | [UpdatePrimaryDeviceRequest.schema.json](UpdatePrimaryDeviceRequest.schema.json "open original schema") | + +## UpdatePrimaryDeviceRequest Type + +`object` ([UpdatePrimaryDeviceRequest](updateprimarydevicerequest.md)) + +# UpdatePrimaryDeviceRequest Definitions + +# UpdatePrimaryDeviceRequest Properties + +| Property | Type | Required | Nullable | Defined by | +| :------------------------------ | -------- | -------- | -------------- | :-------------------------------------------------------------------------------------------------------------------------------------------------------------------- | +| [action](#action) | `string` | Required | cannot be null | [UpdatePrimaryDeviceRequest](updateprimarydevicerequest-properties-action.md "https://timelimit.io/UpdatePrimaryDeviceRequest#/properties/action") | +| [currentUserId](#currentUserId) | `string` | Required | cannot be null | [UpdatePrimaryDeviceRequest](updateprimarydevicerequest-properties-currentuserid.md "https://timelimit.io/UpdatePrimaryDeviceRequest#/properties/currentUserId") | +| [authToken](#authToken) | `string` | Required | cannot be null | [UpdatePrimaryDeviceRequest](updateprimarydevicerequest-properties-authtoken.md "https://timelimit.io/UpdatePrimaryDeviceRequest#/properties/authToken") | + +## action + + + + +`action` + +- is required +- Type: `string` +- cannot be null +- defined in: [UpdatePrimaryDeviceRequest](updateprimarydevicerequest-properties-action.md "https://timelimit.io/UpdatePrimaryDeviceRequest#/properties/action") + +### action Type + +`string` + +### action Constraints + +**enum**: the value of this property must be equal to one of the following values: + +| Value | Explanation | +| :-------------------- | ----------- | +| `"set this device"` | | +| `"unset this device"` | | + +## currentUserId + + + + +`currentUserId` + +- is required +- Type: `string` +- cannot be null +- defined in: [UpdatePrimaryDeviceRequest](updateprimarydevicerequest-properties-currentuserid.md "https://timelimit.io/UpdatePrimaryDeviceRequest#/properties/currentUserId") + +### currentUserId Type + +`string` + +## authToken + + + + +`authToken` + +- is required +- Type: `string` +- cannot be null +- defined in: [UpdatePrimaryDeviceRequest](updateprimarydevicerequest-properties-authtoken.md "https://timelimit.io/UpdatePrimaryDeviceRequest#/properties/authToken") + +### authToken Type + +`string` diff --git a/package-lock.json b/package-lock.json index b23b06a..22c96a5 100644 --- a/package-lock.json +++ b/package-lock.json @@ -4,6 +4,214 @@ "lockfileVersion": 1, "requires": true, "dependencies": { + "@adobe/helix-log": { + "version": "4.5.1", + "resolved": "https://registry.npmjs.org/@adobe/helix-log/-/helix-log-4.5.1.tgz", + "integrity": "sha512-9++ZtL++VDDDCxUvjNaejMwTJg7OqGVfocDrYVIbRiR3gVEs6jqfgyd9bAI8aEBi+8edj0OPnUn7j8eBQKZ/Jw==", + "dev": true, + "requires": { + "big.js": "5.2.2", + "colorette": "1.1.0", + "ferrum": "1.7.0", + "phin": "3.4.1", + "polka": "0.5.2", + "triple-beam": "1.3.0", + "uuid": "7.0.3", + "winston-transport": "4.3.0" + }, + "dependencies": { + "uuid": { + "version": "7.0.3", + "resolved": "https://registry.npmjs.org/uuid/-/uuid-7.0.3.tgz", + "integrity": "sha512-DPSke0pXhTZgoF/d+WSt2QaKMCFSfx7QegxEWT+JOuHF5aWrKEn0G+ztjuJg/gG8/ItK+rbPCD/yNv8yyih6Cg==", + "dev": true + } + } + }, + "@adobe/jsonschema2md": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/@adobe/jsonschema2md/-/jsonschema2md-4.1.2.tgz", + "integrity": "sha512-H7GIKeQwR5I1SjMTNgQj2RFPDW03Nl/+ORaomvuE2BlWt8TikuTLDh0a5OyR/VHQmeVlFbk1sLRZ40JAgXgoDw==", + "dev": true, + "requires": { + "@adobe/helix-log": "4.5.1", + "es2015-i18n-tag": "1.6.1", + "ferrum": "1.7.0", + "fs-extra": "8.1.0", + "github-slugger": "1.3.0", + "js-yaml": "3.13.1", + "mdast-builder": "1.1.1", + "mdast-util-to-string": "1.1.0", + "readdirp": "3.3.0", + "remark-parse": "7.0.2", + "remark-stringify": "7.0.4", + "unified": "8.4.2", + "unist-util-inspect": "5.0.1", + "yargs": "15.3.1" + }, + "dependencies": { + "ansi-regex": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.0.tgz", + "integrity": "sha512-bY6fj56OUQ0hU1KjFNDQuJFezqKdrAyFdIevADiqrWHwSlbmBNMHp5ak2f40Pm8JTFyM2mqxkG6ngkHO11f/lg==", + "dev": true + }, + "ansi-styles": { + "version": "4.2.1", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.2.1.tgz", + "integrity": "sha512-9VGjrMsG1vePxcSweQsN20KY/c4zN0h9fLjqAbwbPfahM3t+NL+M9HC8xeXG2I8pX5NoamTGNuomEUFI7fcUjA==", + "dev": true, + "requires": { + "@types/color-name": "1.1.1", + "color-convert": "2.0.1" + } + }, + "camelcase": { + "version": "5.3.1", + "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-5.3.1.tgz", + "integrity": "sha512-L28STB170nwWS63UjtlEOE3dldQApaJXZkOI1uMFfzf3rRuPegHaHesyee+YxQ+W6SvRDQV6UrdOdRiR153wJg==", + "dev": true + }, + "cliui": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/cliui/-/cliui-6.0.0.tgz", + "integrity": "sha512-t6wbgtoCXvAzst7QgXxJYqPt0usEfbgQdftEPbLL/cvv6HPE5VgvqCuAIDR0NgU52ds6rFwqrgakNLrHEjCbrQ==", + "dev": true, + "requires": { + "string-width": "4.2.0", + "strip-ansi": "6.0.0", + "wrap-ansi": "6.2.0" + } + }, + "color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "dev": true, + "requires": { + "color-name": "1.1.4" + } + }, + "color-name": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", + "dev": true + }, + "emoji-regex": { + "version": "8.0.0", + "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-8.0.0.tgz", + "integrity": "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==", + "dev": true + }, + "find-up": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/find-up/-/find-up-4.1.0.tgz", + "integrity": "sha512-PpOwAdQ/YlXQ2vj8a3h8IipDuYRi3wceVQQGYWxNINccq40Anw7BlsEXCMbt1Zt+OLA6Fq9suIpIWD0OsnISlw==", + "dev": true, + "requires": { + "locate-path": "5.0.0", + "path-exists": "4.0.0" + } + }, + "is-fullwidth-code-point": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz", + "integrity": "sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==", + "dev": true + }, + "locate-path": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-5.0.0.tgz", + "integrity": "sha512-t7hw9pI+WvuwNJXwk5zVHpyhIqzg2qTlklJOf0mVxGSbe3Fp2VieZcduNYjaLDoy6p9uGpQEGWG87WpMKlNq8g==", + "dev": true, + "requires": { + "p-locate": "4.1.0" + } + }, + "p-locate": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-4.1.0.tgz", + "integrity": "sha512-R79ZZ/0wAxKGu3oYMlz8jy/kbhsNrS7SKZ7PxEHBgJ5+F2mtFW2fK2cOtBh1cHYkQsbzFV7I+EoRKe6Yt0oK7A==", + "dev": true, + "requires": { + "p-limit": "2.2.2" + } + }, + "path-exists": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-4.0.0.tgz", + "integrity": "sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==", + "dev": true + }, + "string-width": { + "version": "4.2.0", + "resolved": "https://registry.npmjs.org/string-width/-/string-width-4.2.0.tgz", + "integrity": "sha512-zUz5JD+tgqtuDjMhwIg5uFVV3dtqZ9yQJlZVfq4I01/K5Paj5UHj7VyrQOJvzawSVlKpObApbfD0Ed6yJc+1eg==", + "dev": true, + "requires": { + "emoji-regex": "8.0.0", + "is-fullwidth-code-point": "3.0.0", + "strip-ansi": "6.0.0" + } + }, + "strip-ansi": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.0.tgz", + "integrity": "sha512-AuvKTrTfQNYNIctbR1K/YGTR1756GycPsg7b9bdV9Duqur4gv6aKqHXah67Z8ImS7WEz5QVcOtlfW2rZEugt6w==", + "dev": true, + "requires": { + "ansi-regex": "5.0.0" + } + }, + "wrap-ansi": { + "version": "6.2.0", + "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-6.2.0.tgz", + "integrity": "sha512-r6lPcBGxZXlIcymEu7InxDMhdW0KDxpLgoFLcguasxCaJ/SOIZwINatK9KY/tf+ZrlywOKU0UDj3ATXUBfxJXA==", + "dev": true, + "requires": { + "ansi-styles": "4.2.1", + "string-width": "4.2.0", + "strip-ansi": "6.0.0" + } + }, + "yargs": { + "version": "15.3.1", + "resolved": "https://registry.npmjs.org/yargs/-/yargs-15.3.1.tgz", + "integrity": "sha512-92O1HWEjw27sBfgmXiixJWT5hRBp2eobqXicLtPBIDBhYB+1HpwZlXmbW2luivBJHBzki+7VyCLRtAkScbTBQA==", + "dev": true, + "requires": { + "cliui": "6.0.0", + "decamelize": "1.2.0", + "find-up": "4.1.0", + "get-caller-file": "2.0.5", + "require-directory": "2.1.1", + "require-main-filename": "2.0.0", + "set-blocking": "2.0.0", + "string-width": "4.2.0", + "which-module": "2.0.0", + "y18n": "4.0.0", + "yargs-parser": "18.1.3" + } + }, + "yargs-parser": { + "version": "18.1.3", + "resolved": "https://registry.npmjs.org/yargs-parser/-/yargs-parser-18.1.3.tgz", + "integrity": "sha512-o50j0JeToy/4K6OZcaQmW6lyXXKhq7csREXcDwk2omFPJEwUNOVtJKvmDr9EI1fAJZUyZcRF7kxGBWmRXudrCQ==", + "dev": true, + "requires": { + "camelcase": "5.3.1", + "decamelize": "1.2.0" + } + } + } + }, + "@arr/every": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/@arr/every/-/every-1.0.1.tgz", + "integrity": "sha512-UQFQ6SgyJ6LX42W8rHCs8KVc0JS0tzVL9ct4XYedJukskYVWTo49tNiMEK9C2HTyarbNiT/RVIRSY82vH+6sTg==", + "dev": true + }, "@babel/code-frame": { "version": "7.8.3", "resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.8.3.tgz", @@ -89,6 +297,12 @@ } } }, + "@polka/url": { + "version": "0.5.0", + "resolved": "https://registry.npmjs.org/@polka/url/-/url-0.5.0.tgz", + "integrity": "sha512-oZLYFEAzUKyi3SKnXvj32ZCEGH6RDnao7COuCVhDydMS9NrCSVXhM79VaKyP5+Zc33m0QXEd2DN3UkU7OsHcfw==", + "dev": true + }, "@sindresorhus/is": { "version": "2.1.0", "resolved": "https://registry.npmjs.org/@sindresorhus/is/-/is-2.1.0.tgz", @@ -141,6 +355,12 @@ "@types/node": "12.12.32" } }, + "@types/color-name": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/@types/color-name/-/color-name-1.1.1.tgz", + "integrity": "sha512-rr+OQyAjxze7GgWrSaJwydHStIhHq2lvY3BOC2Mj7KnzI7XK0Uw1TOOdI9lDoajEbSWLiYgoo4f1R51erQfhPQ==", + "dev": true + }, "@types/connect": { "version": "3.4.33", "resolved": "https://registry.npmjs.org/@types/connect/-/connect-3.4.33.tgz", @@ -307,6 +527,12 @@ "@types/sequelize": "4.28.8" } }, + "@types/unist": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/@types/unist/-/unist-2.0.3.tgz", + "integrity": "sha512-FvUupuM3rlRsRtCN+fDudtmytGO6iHJuuRKS1Ss0pG5z8oX0diNEw94UEL7hgDbpN94rgaK5R7sWm6RrSkZuAQ==", + "dev": true + }, "@types/validator": { "version": "12.0.1", "resolved": "https://registry.npmjs.org/@types/validator/-/validator-12.0.1.tgz", @@ -594,6 +820,12 @@ "resolved": "https://registry.npmjs.org/backo2/-/backo2-1.0.2.tgz", "integrity": "sha1-MasayLEpNjRj41s+u2n038+6eUc=" }, + "bail": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/bail/-/bail-1.0.5.tgz", + "integrity": "sha512-xFbRxM1tahm08yHBP16MMjVUAvDaBMD38zsM9EMAUN61omwLmKlOpB/Zku5QkjZ8TZ4vn53pj+t518cH0S03RQ==", + "dev": true + }, "balanced-match": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.0.tgz", @@ -634,6 +866,12 @@ "callsite": "1.0.0" } }, + "big.js": { + "version": "5.2.2", + "resolved": "https://registry.npmjs.org/big.js/-/big.js-5.2.2.tgz", + "integrity": "sha512-vyL2OymJxmarO8gxMr0mhChsO9QGwhynfuu4+MHTAW6czfq9humCB7rKpUjDd9YUiDPU4mzpyupFSvOClAwbmQ==", + "dev": true + }, "binary-extensions": { "version": "2.0.0", "resolved": "https://registry.npmjs.org/binary-extensions/-/binary-extensions-2.0.0.tgz", @@ -813,6 +1051,12 @@ "resolved": "https://registry.npmjs.org/caseless/-/caseless-0.12.0.tgz", "integrity": "sha1-G2gcIf+EAzyCZUMJBolCDRhxUdw=" }, + "ccount": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/ccount/-/ccount-1.0.5.tgz", + "integrity": "sha512-MOli1W+nfbPLlKEhInaxhRdp7KVLFxLN5ykwzHgLsLI3H3gs5jjFAK4Eoj3OzzcxCtumDaI8onoVDeQyWaNTkw==", + "dev": true + }, "center-align": { "version": "0.1.3", "resolved": "https://registry.npmjs.org/center-align/-/center-align-0.1.3.tgz", @@ -822,6 +1066,12 @@ "lazy-cache": "1.0.4" } }, + "centra": { + "version": "2.4.0", + "resolved": "https://registry.npmjs.org/centra/-/centra-2.4.0.tgz", + "integrity": "sha512-AWmF3EHNe/noJHviynZOrdnUuQzT5AMgl9nJPXGvnzGXrI2ZvNDrEcdqskc4EtQwt2Q1IggXb0OXy7zZ1Xvvew==", + "dev": true + }, "chalk": { "version": "2.4.2", "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz", @@ -832,6 +1082,24 @@ "supports-color": "5.5.0" } }, + "character-entities": { + "version": "1.2.4", + "resolved": "https://registry.npmjs.org/character-entities/-/character-entities-1.2.4.tgz", + "integrity": "sha512-iBMyeEHxfVnIakwOuDXpVkc54HijNgCyQB2w0VfGQThle6NXn50zU6V/u+LDhxHcDUPojn6Kpga3PTAD8W1bQw==", + "dev": true + }, + "character-entities-html4": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/character-entities-html4/-/character-entities-html4-1.1.4.tgz", + "integrity": "sha512-HRcDxZuZqMx3/a+qrzxdBKBPUpxWEq9xw2OPZ3a/174ihfrQKVsFhqtthBInFy1zZ9GgZyFXOatNujm8M+El3g==", + "dev": true + }, + "character-entities-legacy": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/character-entities-legacy/-/character-entities-legacy-1.1.4.tgz", + "integrity": "sha512-3Xnr+7ZFS1uxeiUDvV02wQ+QDbc55o97tIV5zHScSPJpcLm/r0DFPcoY3tYRp+VZukxuMeKgXYmsXQHO05zQeA==", + "dev": true + }, "character-parser": { "version": "2.2.0", "resolved": "https://registry.npmjs.org/character-parser/-/character-parser-2.2.0.tgz", @@ -840,6 +1108,12 @@ "is-regex": "1.0.5" } }, + "character-reference-invalid": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/character-reference-invalid/-/character-reference-invalid-1.1.4.tgz", + "integrity": "sha512-mKKUkUbhPpQlCOfIuZkvSEgktjPFIsZKRRbC6KWVEMvlzblj3i3asQv5ODsrwt0N3pHAEvjP8KTQPHkp0+6jOg==", + "dev": true + }, "cheerio": { "version": "0.22.0", "resolved": "https://registry.npmjs.org/cheerio/-/cheerio-0.22.0.tgz", @@ -981,6 +1255,12 @@ "resolved": "https://registry.npmjs.org/code-point-at/-/code-point-at-1.1.0.tgz", "integrity": "sha1-DQcLTQQ6W+ozovGkDi7bPZpMz3c=" }, + "collapse-white-space": { + "version": "1.0.6", + "resolved": "https://registry.npmjs.org/collapse-white-space/-/collapse-white-space-1.0.6.tgz", + "integrity": "sha512-jEovNnrhMuqyCcjfEJA56v0Xq8SkIoPKDyaHahwo3POf4qcSXqMYuwNcOTzp74vTsR9Tn08z4MxWqAhcekogkQ==", + "dev": true + }, "color-convert": { "version": "1.9.2", "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-1.9.2.tgz", @@ -994,6 +1274,12 @@ "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.1.tgz", "integrity": "sha1-SxQVMEz1ACjqgWQ2Q72C6gWANok=" }, + "colorette": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/colorette/-/colorette-1.1.0.tgz", + "integrity": "sha512-6S062WDQUXi6hOfkO/sBPVwE5ASXY4G2+b4atvhJfSsuUUhIaUKlkjLe9692Ipyt5/a+IPF5aVTu3V5gvXq5cg==", + "dev": true + }, "combined-stream": { "version": "1.0.6", "resolved": "https://registry.npmjs.org/combined-stream/-/combined-stream-1.0.6.tgz", @@ -1506,6 +1792,12 @@ "resolved": "https://registry.npmjs.org/entities/-/entities-1.1.2.tgz", "integrity": "sha512-f2LZMYl1Fzu7YSBKg+RoROelpOaNrcGmE9AZubeDfrCEia483oW4MI4VyFd5VNHIgQ/7qm1I0wUHK1eJnn2y2w==" }, + "es2015-i18n-tag": { + "version": "1.6.1", + "resolved": "https://registry.npmjs.org/es2015-i18n-tag/-/es2015-i18n-tag-1.6.1.tgz", + "integrity": "sha512-MYoh9p+JTkgnzBh0MEBON6xUyzdmwT6wzsmmFJvZujGSXiI2kM+3XvFl6+AcIO2eeL6VWgtX9szSiDTMwDxyYA==", + "dev": true + }, "escape-html": { "version": "1.0.3", "resolved": "https://registry.npmjs.org/escape-html/-/escape-html-1.0.3.tgz", @@ -1632,6 +1924,15 @@ "resolved": "https://registry.npmjs.org/fast-json-stable-stringify/-/fast-json-stable-stringify-2.0.0.tgz", "integrity": "sha1-1RQsDK7msRifh9OnYREGT4bIu/I=" }, + "ferrum": { + "version": "1.7.0", + "resolved": "https://registry.npmjs.org/ferrum/-/ferrum-1.7.0.tgz", + "integrity": "sha512-Ycr5nz/Pj7HsIqx+dZgAq27nq35bSzNzwsUbc4vFPl9PG1OgrzwDH57noH6blT7gh1XzKnqEYGrSYDU+4Vy2VA==", + "dev": true, + "requires": { + "lodash.isplainobject": "4.0.6" + } + }, "fill-range": { "version": "7.0.1", "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-7.0.1.tgz", @@ -1689,6 +1990,17 @@ "resolved": "https://registry.npmjs.org/fresh/-/fresh-0.5.2.tgz", "integrity": "sha1-PYyt2Q2XZWn6g1qx+OSyOhBWBac=" }, + "fs-extra": { + "version": "8.1.0", + "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-8.1.0.tgz", + "integrity": "sha512-yhlQgA6mnOJUKOsRUFsgJdQCvkKhcz8tlZG5HBQfReYZy46OwLcY+Zia0mtdHsOo9y/hP+CxMN0TU9QxoOtG4g==", + "dev": true, + "requires": { + "graceful-fs": "4.2.3", + "jsonfile": "4.0.0", + "universalify": "0.1.2" + } + }, "fs-minipass": { "version": "1.2.5", "resolved": "https://registry.npmjs.org/fs-minipass/-/fs-minipass-1.2.5.tgz", @@ -1766,6 +2078,23 @@ "assert-plus": "1.0.0" } }, + "github-slugger": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/github-slugger/-/github-slugger-1.3.0.tgz", + "integrity": "sha512-gwJScWVNhFYSRDvURk/8yhcFBee6aFjye2a7Lhb2bUyRulpIoek9p0I9Kt7PT67d/nUlZbFu8L9RLiA0woQN8Q==", + "dev": true, + "requires": { + "emoji-regex": "6.1.1" + }, + "dependencies": { + "emoji-regex": { + "version": "6.1.1", + "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-6.1.1.tgz", + "integrity": "sha1-xs0OwbBkLio8Z6ETfvxeeW2k+I4=", + "dev": true + } + } + }, "glob": { "version": "7.1.6", "resolved": "https://registry.npmjs.org/glob/-/glob-7.1.6.tgz", @@ -2084,6 +2413,28 @@ "resolved": "https://registry.npmjs.org/ipaddr.js/-/ipaddr.js-1.9.0.tgz", "integrity": "sha512-M4Sjn6N/+O6/IXSJseKqHoFc+5FdGJ22sXqnjTpdZweHK64MzEPAyQZyEU3R/KRv2GLoa7nNtg/C2Ev6m7z+eA==" }, + "is-alphabetical": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/is-alphabetical/-/is-alphabetical-1.0.4.tgz", + "integrity": "sha512-DwzsA04LQ10FHTZuL0/grVDk4rFoVH1pjAToYwBrHSxcrBIGQuXrQMtD5U1b0U2XVgKZCTLLP8u2Qxqhy3l2Vg==", + "dev": true + }, + "is-alphanumeric": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/is-alphanumeric/-/is-alphanumeric-1.0.0.tgz", + "integrity": "sha1-Spzvcdr0wAHB2B1j0UDPU/1oifQ=", + "dev": true + }, + "is-alphanumerical": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/is-alphanumerical/-/is-alphanumerical-1.0.4.tgz", + "integrity": "sha512-UzoZUr+XfVz3t3v4KyGEniVL9BDRoQtY7tOyrRybkVNjDFWyo1yhXNGrrBTQxp3ib9BLAWs7k2YKBQsFRkZG9A==", + "dev": true, + "requires": { + "is-alphabetical": "1.0.4", + "is-decimal": "1.0.4" + } + }, "is-binary-path": { "version": "2.1.0", "resolved": "https://registry.npmjs.org/is-binary-path/-/is-binary-path-2.1.0.tgz", @@ -2112,6 +2463,18 @@ "ci-info": "1.6.0" } }, + "is-decimal": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/is-decimal/-/is-decimal-1.0.4.tgz", + "integrity": "sha512-RGdriMmQQvZ2aqaQq3awNA6dCGtKpiDFcOzrTWrDAT2MiWrKQVPmxLGHl7Y2nNu6led0kEyoX0enY0qXYsv9zw==", + "dev": true + }, + "is-empty": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/is-empty/-/is-empty-1.2.0.tgz", + "integrity": "sha1-3pu1snhzigWgsJpX4ftNSjQan2s=", + "dev": true + }, "is-expression": { "version": "3.0.0", "resolved": "https://registry.npmjs.org/is-expression/-/is-expression-3.0.0.tgz", @@ -2151,6 +2514,12 @@ "is-extglob": "2.1.1" } }, + "is-hexadecimal": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/is-hexadecimal/-/is-hexadecimal-1.0.4.tgz", + "integrity": "sha512-gyPJuv83bHMpocVYoqof5VDiZveEoGoFL8m3BXNb2VW8Xs+rz9kqO8LOQ5DH6EsuvilT1ApazU0pyl+ytbPtlw==", + "dev": true + }, "is-installed-globally": { "version": "0.1.0", "resolved": "https://registry.npmjs.org/is-installed-globally/-/is-installed-globally-0.1.0.tgz", @@ -2188,6 +2557,12 @@ "path-is-inside": "1.0.2" } }, + "is-plain-obj": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/is-plain-obj/-/is-plain-obj-2.1.0.tgz", + "integrity": "sha512-YWnfyRwxL/+SsrWYfOpUtz5b3YD+nyfkHvjbcanzk8zgyO4ASD67uVMRt8k5bM4lLMDnXfriRhOpemw+NfT1eA==", + "dev": true + }, "is-promise": { "version": "2.1.0", "resolved": "https://registry.npmjs.org/is-promise/-/is-promise-2.1.0.tgz", @@ -2224,6 +2599,18 @@ "resolved": "https://registry.npmjs.org/is-typedarray/-/is-typedarray-1.0.0.tgz", "integrity": "sha1-5HnICFjfDBsR3dppQPlgEfzaSpo=" }, + "is-whitespace-character": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/is-whitespace-character/-/is-whitespace-character-1.0.4.tgz", + "integrity": "sha512-SDweEzfIZM0SJV0EUga669UTKlmL0Pq8Lno0QDQsPnvECB3IM2aP0gdx5TrU0A01MAPfViaZiI2V1QMZLaKK5w==", + "dev": true + }, + "is-word-character": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/is-word-character/-/is-word-character-1.0.4.tgz", + "integrity": "sha512-5SMO8RVennx3nZrqtKwCGyyetPE9VDba5ugvKLaD4KopPG5kR4mQ7tNt/r7feL5yt5h3lpuBbIUmCOG2eSzXHA==", + "dev": true + }, "is-wsl": { "version": "1.1.0", "resolved": "https://registry.npmjs.org/is-wsl/-/is-wsl-1.1.0.tgz", @@ -2232,8 +2619,7 @@ "isarray": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/isarray/-/isarray-1.0.0.tgz", - "integrity": "sha1-u5NdSFgsuhaMBoNJV6VKPgcSTxE=", - "optional": true + "integrity": "sha1-u5NdSFgsuhaMBoNJV6VKPgcSTxE=" }, "isexe": { "version": "2.0.0", @@ -2296,6 +2682,15 @@ "resolved": "https://registry.npmjs.org/json-stringify-safe/-/json-stringify-safe-5.0.1.tgz", "integrity": "sha1-Epai1Y/UXxmg9s4B1lcB4sc1tus=" }, + "jsonfile": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/jsonfile/-/jsonfile-4.0.0.tgz", + "integrity": "sha1-h3Gq4HmbZAdrdmQPygWPnBDjPss=", + "dev": true, + "requires": { + "graceful-fs": "4.2.3" + } + }, "jsonify": { "version": "0.0.0", "resolved": "https://registry.npmjs.org/jsonify/-/jsonify-0.0.0.tgz", @@ -2442,6 +2837,12 @@ "resolved": "https://registry.npmjs.org/lodash.foreach/-/lodash.foreach-4.5.0.tgz", "integrity": "sha1-Gmo16s5AEoDH8G3d7DUWWrJ+PlM=" }, + "lodash.isplainobject": { + "version": "4.0.6", + "resolved": "https://registry.npmjs.org/lodash.isplainobject/-/lodash.isplainobject-4.0.6.tgz", + "integrity": "sha1-fFJqUtibRcRcxpC4gWO+BJf1UMs=", + "dev": true + }, "lodash.map": { "version": "4.6.0", "resolved": "https://registry.npmjs.org/lodash.map/-/lodash.map-4.6.0.tgz", @@ -2487,6 +2888,12 @@ "resolved": "https://registry.npmjs.org/longest/-/longest-1.0.1.tgz", "integrity": "sha1-MKCy2jj3N3DoKUoNIuZiXtd9AJc=" }, + "longest-streak": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/longest-streak/-/longest-streak-2.0.4.tgz", + "integrity": "sha512-vM6rUVCVUJJt33bnmHiZEvr7wPT78ztX7rojL+LW51bHtLh6HTjx84LA5W4+oa6aKEJA7jJu5LR6vQRBpA5DVg==", + "dev": true + }, "lowercase-keys": { "version": "1.0.1", "resolved": "https://registry.npmjs.org/lowercase-keys/-/lowercase-keys-1.0.1.tgz", @@ -2589,11 +2996,56 @@ } } }, + "markdown-escapes": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/markdown-escapes/-/markdown-escapes-1.0.4.tgz", + "integrity": "sha512-8z4efJYk43E0upd0NbVXwgSTQs6cT3T06etieCMEg7dRbzCbxUCK/GHlX8mhHRDcp+OLlHkPKsvqQTCvsRl2cg==", + "dev": true + }, + "markdown-table": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/markdown-table/-/markdown-table-1.1.3.tgz", + "integrity": "sha512-1RUZVgQlpJSPWYbFSpmudq5nHY1doEIv89gBtF0s4gW1GF2XorxcA/70M5vq7rLv0a6mhOUccRsqkwhwLCIQ2Q==", + "dev": true + }, + "matchit": { + "version": "1.0.8", + "resolved": "https://registry.npmjs.org/matchit/-/matchit-1.0.8.tgz", + "integrity": "sha512-CwPPICzozd/ezCzpVwGYG5bMVieaapnA0vvHDQnmQ2u2vZtVLynoPmvFsZjL67hFOvTBhhpqSR0bq3uloDP/Rw==", + "dev": true, + "requires": { + "@arr/every": "1.0.1" + } + }, "math-interval-parser": { "version": "2.0.1", "resolved": "https://registry.npmjs.org/math-interval-parser/-/math-interval-parser-2.0.1.tgz", "integrity": "sha512-VmlAmb0UJwlvMyx8iPhXUDnVW1F9IrGEd9CIOmv+XL8AErCUUuozoDMrgImvnYt2A+53qVX/tPW6YJurMKYsvA==" }, + "mdast-builder": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/mdast-builder/-/mdast-builder-1.1.1.tgz", + "integrity": "sha512-a3KBk/LmYD6wKsWi8WJrGU/rXR4yuF4Men0JO0z6dSZCm5FrXXWTRDjqK0vGSqa+1M6p9edeuypZAZAzSehTUw==", + "dev": true, + "requires": { + "@types/unist": "2.0.3" + } + }, + "mdast-util-compact": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/mdast-util-compact/-/mdast-util-compact-1.0.4.tgz", + "integrity": "sha512-3YDMQHI5vRiS2uygEFYaqckibpJtKq5Sj2c8JioeOQBU6INpKbdWzfyLqFFnDwEcEnRFIdMsguzs5pC1Jp4Isg==", + "dev": true, + "requires": { + "unist-util-visit": "1.4.1" + } + }, + "mdast-util-to-string": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/mdast-util-to-string/-/mdast-util-to-string-1.1.0.tgz", + "integrity": "sha512-jVU0Nr2B9X3MU4tSK7JP1CMkSvOj7X5l/GboG1tKRw52lLF1x2Ju92Ms9tNetCcbfX3hzlM73zYo2NKkWSfF/A==", + "dev": true + }, "media-typer": { "version": "0.3.0", "resolved": "https://registry.npmjs.org/media-typer/-/media-typer-0.3.0.tgz", @@ -3024,6 +3476,20 @@ "resolved": "https://registry.npmjs.org/packet-reader/-/packet-reader-1.0.0.tgz", "integrity": "sha512-HAKu/fG3HpHFO0AA8WE8q2g+gBJaZ9MG7fcKk+IJPLTGAD6Psw4443l+9DGRbOIh3/aXr7Phy0TjilYivJo5XQ==" }, + "parse-entities": { + "version": "1.2.2", + "resolved": "https://registry.npmjs.org/parse-entities/-/parse-entities-1.2.2.tgz", + "integrity": "sha512-NzfpbxW/NPrzZ/yYSoQxyqUZMZXIdCfE0OIN4ESsnptHJECoUk3FZktxNuzQf4tjt5UEopnxpYJbvYuxIFDdsg==", + "dev": true, + "requires": { + "character-entities": "1.2.4", + "character-entities-legacy": "1.1.4", + "character-reference-invalid": "1.1.4", + "is-alphanumerical": "1.0.4", + "is-decimal": "1.0.4", + "is-hexadecimal": "1.0.4" + } + }, "parseqs": { "version": "0.0.5", "resolved": "https://registry.npmjs.org/parseqs/-/parseqs-0.0.5.tgz", @@ -3152,6 +3618,15 @@ "split": "1.0.1" } }, + "phin": { + "version": "3.4.1", + "resolved": "https://registry.npmjs.org/phin/-/phin-3.4.1.tgz", + "integrity": "sha512-NkBCNRPxeyrgaPlWx4DHTAdca3s2LkvIBiiG6RoSbykcOtW/pA/7rUP/67FPIinvbo7h+HENST/vJ17LdRNUdw==", + "dev": true, + "requires": { + "centra": "2.4.0" + } + }, "picomatch": { "version": "2.2.2", "resolved": "https://registry.npmjs.org/picomatch/-/picomatch-2.2.2.tgz", @@ -3164,6 +3639,16 @@ "integrity": "sha1-5aSs0sEB/fPZpNB/DbxNtJ3SgXY=", "dev": true }, + "polka": { + "version": "0.5.2", + "resolved": "https://registry.npmjs.org/polka/-/polka-0.5.2.tgz", + "integrity": "sha512-FVg3vDmCqP80tOrs+OeNlgXYmFppTXdjD5E7I4ET1NjvtNmQrb1/mJibybKkb/d4NA7YWAr1ojxuhpL3FHqdlw==", + "dev": true, + "requires": { + "@polka/url": "0.5.0", + "trouter": "2.0.1" + } + }, "postgres-array": { "version": "2.0.0", "resolved": "https://registry.npmjs.org/postgres-array/-/postgres-array-2.0.0.tgz", @@ -3237,8 +3722,7 @@ "process-nextick-args": { "version": "2.0.0", "resolved": "https://registry.npmjs.org/process-nextick-args/-/process-nextick-args-2.0.0.tgz", - "integrity": "sha512-MtEC1TqN0EU5nephaJ4rAtThHtC86dNN9qCuEhtshvpVBkAW5ZO7BASN9REnF9eoXGcRub+pFuKEpOHE+HbEMw==", - "optional": true + "integrity": "sha512-MtEC1TqN0EU5nephaJ4rAtThHtC86dNN9qCuEhtshvpVBkAW5ZO7BASN9REnF9eoXGcRub+pFuKEpOHE+HbEMw==" }, "promise": { "version": "7.3.1", @@ -3464,7 +3948,6 @@ "version": "2.3.6", "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.6.tgz", "integrity": "sha512-tQtKA9WIAhBF3+VLAseyMqZeBjW0AHJoxOtYqSUZNJxauErmLbVm2FW1y+J/YA9dUrAC39ITejlZWhVIwawkKw==", - "optional": true, "requires": { "core-util-is": "1.0.2", "inherits": "2.0.3", @@ -3508,11 +3991,62 @@ "rc": "1.2.8" } }, + "remark-parse": { + "version": "7.0.2", + "resolved": "https://registry.npmjs.org/remark-parse/-/remark-parse-7.0.2.tgz", + "integrity": "sha512-9+my0lQS80IQkYXsMA8Sg6m9QfXYJBnXjWYN5U+kFc5/n69t+XZVXU/ZBYr3cYH8FheEGf1v87rkFDhJ8bVgMA==", + "dev": true, + "requires": { + "collapse-white-space": "1.0.6", + "is-alphabetical": "1.0.4", + "is-decimal": "1.0.4", + "is-whitespace-character": "1.0.4", + "is-word-character": "1.0.4", + "markdown-escapes": "1.0.4", + "parse-entities": "1.2.2", + "repeat-string": "1.6.1", + "state-toggle": "1.0.3", + "trim": "0.0.1", + "trim-trailing-lines": "1.1.3", + "unherit": "1.1.3", + "unist-util-remove-position": "1.1.4", + "vfile-location": "2.0.6", + "xtend": "4.0.2" + } + }, + "remark-stringify": { + "version": "7.0.4", + "resolved": "https://registry.npmjs.org/remark-stringify/-/remark-stringify-7.0.4.tgz", + "integrity": "sha512-qck+8NeA1D0utk1ttKcWAoHRrJxERYQzkHDyn+pF5Z4whX1ug98uCNPPSeFgLSaNERRxnD6oxIug6DzZQth6Pg==", + "dev": true, + "requires": { + "ccount": "1.0.5", + "is-alphanumeric": "1.0.0", + "is-decimal": "1.0.4", + "is-whitespace-character": "1.0.4", + "longest-streak": "2.0.4", + "markdown-escapes": "1.0.4", + "markdown-table": "1.1.3", + "mdast-util-compact": "1.0.4", + "parse-entities": "1.2.2", + "repeat-string": "1.6.1", + "state-toggle": "1.0.3", + "stringify-entities": "2.0.0", + "unherit": "1.1.3", + "xtend": "4.0.2" + } + }, "repeat-string": { "version": "1.6.1", "resolved": "https://registry.npmjs.org/repeat-string/-/repeat-string-1.6.1.tgz", "integrity": "sha1-jcrkcOHIirwtYA//Sndihtp15jc=" }, + "replace-ext": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/replace-ext/-/replace-ext-1.0.0.tgz", + "integrity": "sha1-3mMSg3P8v3w8z6TeWkgMRaZ5WOs=", + "dev": true + }, "request": { "version": "2.87.0", "resolved": "https://registry.npmjs.org/request/-/request-2.87.0.tgz", @@ -3944,6 +4478,12 @@ "tweetnacl": "0.14.5" } }, + "state-toggle": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/state-toggle/-/state-toggle-1.0.3.tgz", + "integrity": "sha512-d/5Z4/2iiCnHw6Xzghyhb+GcmF89bxwgXG60wjIiZaxnymbyOmI8Hk4VqHXiVVp6u2ysaskFfXg3ekCj4WNftQ==", + "dev": true + }, "statuses": { "version": "1.5.0", "resolved": "https://registry.npmjs.org/statuses/-/statuses-1.5.0.tgz", @@ -3967,6 +4507,19 @@ "safe-buffer": "5.1.2" } }, + "stringify-entities": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/stringify-entities/-/stringify-entities-2.0.0.tgz", + "integrity": "sha512-fqqhZzXyAM6pGD9lky/GOPq6V4X0SeTAFBl0iXb/BzOegl40gpf/bV3QQP7zULNYvjr6+Dx8SCaDULjVoOru0A==", + "dev": true, + "requires": { + "character-entities-html4": "1.1.4", + "character-entities-legacy": "1.1.4", + "is-alphanumerical": "1.0.4", + "is-decimal": "1.0.4", + "is-hexadecimal": "1.0.4" + } + }, "strip-ansi": { "version": "3.0.1", "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-3.0.1.tgz", @@ -4111,6 +4664,39 @@ "punycode": "1.4.1" } }, + "trim": { + "version": "0.0.1", + "resolved": "https://registry.npmjs.org/trim/-/trim-0.0.1.tgz", + "integrity": "sha1-WFhUf2spB1fulczMZm+1AITEYN0=", + "dev": true + }, + "trim-trailing-lines": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/trim-trailing-lines/-/trim-trailing-lines-1.1.3.tgz", + "integrity": "sha512-4ku0mmjXifQcTVfYDfR5lpgV7zVqPg6zV9rdZmwOPqq0+Zq19xDqEgagqVbc4pOOShbncuAOIs59R3+3gcF3ZA==", + "dev": true + }, + "triple-beam": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/triple-beam/-/triple-beam-1.3.0.tgz", + "integrity": "sha512-XrHUvV5HpdLmIj4uVMxHggLbFSZYIn7HEWsqePZcI50pco+MPqJ50wMGY794X7AOOhxOBAjbkqfAbEe/QMp2Lw==", + "dev": true + }, + "trough": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/trough/-/trough-1.0.5.tgz", + "integrity": "sha512-rvuRbTarPXmMb79SmzEp8aqXNKcK+y0XaB298IXueQ8I2PsrATcPBCSPyK/dDNa2iWOhKlfNnOjdAOTBU/nkFA==", + "dev": true + }, + "trouter": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/trouter/-/trouter-2.0.1.tgz", + "integrity": "sha512-kr8SKKw94OI+xTGOkfsvwZQ8mWoikZDd2n8XZHjJVZUARZT+4/VV6cacRS6CLsH9bNm+HFIPU1Zx4CnNnb4qlQ==", + "dev": true, + "requires": { + "matchit": "1.0.8" + } + }, "tslib": { "version": "1.11.1", "resolved": "https://registry.npmjs.org/tslib/-/tslib-1.11.1.tgz", @@ -4273,7 +4859,7 @@ }, "yargs": { "version": "3.10.0", - "resolved": "https://registry.npmjs.org/yargs/-/yargs-3.10.0.tgz", + "resolved": "http://registry.npmjs.org/yargs/-/yargs-3.10.0.tgz", "integrity": "sha1-9+572FfdfB0tOMDnTvvWgdFDH9E=", "requires": { "camelcase": "1.2.1", @@ -4317,6 +4903,29 @@ "resolved": "https://registry.npmjs.org/underscore.deep/-/underscore.deep-0.5.1.tgz", "integrity": "sha1-ByZx9I1oc1w0Ij/P72PmnlJ2zCs=" }, + "unherit": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/unherit/-/unherit-1.1.3.tgz", + "integrity": "sha512-Ft16BJcnapDKp0+J/rqFC3Rrk6Y/Ng4nzsC028k2jdDII/rdZ7Wd3pPT/6+vIIxRagwRc9K0IUX0Ra4fKvw+WQ==", + "dev": true, + "requires": { + "inherits": "2.0.3", + "xtend": "4.0.2" + } + }, + "unified": { + "version": "8.4.2", + "resolved": "https://registry.npmjs.org/unified/-/unified-8.4.2.tgz", + "integrity": "sha512-JCrmN13jI4+h9UAyKEoGcDZV+i1E7BLFuG7OsaDvTXI5P0qhHX+vZO/kOhz9jn8HGENDKbwSeB0nVOg4gVStGA==", + "dev": true, + "requires": { + "bail": "1.0.5", + "extend": "3.0.2", + "is-plain-obj": "2.1.0", + "trough": "1.0.5", + "vfile": "4.1.0" + } + }, "unique-string": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/unique-string/-/unique-string-1.0.0.tgz", @@ -4326,6 +4935,63 @@ "crypto-random-string": "1.0.0" } }, + "unist-util-inspect": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/unist-util-inspect/-/unist-util-inspect-5.0.1.tgz", + "integrity": "sha512-fPNWewS593JSmg49HbnE86BJKuBi1/nMWhDSccBvbARfxezEuJV85EaARR9/VplveiwCoLm2kWq+DhP8TBaDpw==", + "dev": true, + "requires": { + "is-empty": "1.2.0" + } + }, + "unist-util-is": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/unist-util-is/-/unist-util-is-3.0.0.tgz", + "integrity": "sha512-sVZZX3+kspVNmLWBPAB6r+7D9ZgAFPNWm66f7YNb420RlQSbn+n8rG8dGZSkrER7ZIXGQYNm5pqC3v3HopH24A==", + "dev": true + }, + "unist-util-remove-position": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/unist-util-remove-position/-/unist-util-remove-position-1.1.4.tgz", + "integrity": "sha512-tLqd653ArxJIPnKII6LMZwH+mb5q+n/GtXQZo6S6csPRs5zB0u79Yw8ouR3wTw8wxvdJFhpP6Y7jorWdCgLO0A==", + "dev": true, + "requires": { + "unist-util-visit": "1.4.1" + } + }, + "unist-util-stringify-position": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/unist-util-stringify-position/-/unist-util-stringify-position-2.0.3.tgz", + "integrity": "sha512-3faScn5I+hy9VleOq/qNbAd6pAx7iH5jYBMS9I1HgQVijz/4mv5Bvw5iw1sC/90CODiKo81G/ps8AJrISn687g==", + "dev": true, + "requires": { + "@types/unist": "2.0.3" + } + }, + "unist-util-visit": { + "version": "1.4.1", + "resolved": "https://registry.npmjs.org/unist-util-visit/-/unist-util-visit-1.4.1.tgz", + "integrity": "sha512-AvGNk7Bb//EmJZyhtRUnNMEpId/AZ5Ph/KUpTI09WHQuDZHKovQ1oEv3mfmKpWKtoMzyMC4GLBm1Zy5k12fjIw==", + "dev": true, + "requires": { + "unist-util-visit-parents": "2.1.2" + } + }, + "unist-util-visit-parents": { + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/unist-util-visit-parents/-/unist-util-visit-parents-2.1.2.tgz", + "integrity": "sha512-DyN5vD4NE3aSeB+PXYNKxzGsfocxp6asDc2XXE3b0ekO2BaRUpBicbbUygfSvYfUz1IkmjFR1YF7dPklraMZ2g==", + "dev": true, + "requires": { + "unist-util-is": "3.0.0" + } + }, + "universalify": { + "version": "0.1.2", + "resolved": "https://registry.npmjs.org/universalify/-/universalify-0.1.2.tgz", + "integrity": "sha512-rBJeI5CXAlmy1pV+617WB9J63U6XcazHHF2f2dbJix4XzpUF0RS3Zbj0FGIOCAva5P/d/GBOYaACQ1w+0azUkg==", + "dev": true + }, "unpipe": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/unpipe/-/unpipe-1.0.0.tgz", @@ -4419,6 +5085,43 @@ "extsprintf": "1.3.0" } }, + "vfile": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/vfile/-/vfile-4.1.0.tgz", + "integrity": "sha512-BaTPalregj++64xbGK6uIlsurN3BCRNM/P2Pg8HezlGzKd1O9PrwIac6bd9Pdx2uTb0QHoioZ+rXKolbVXEgJg==", + "dev": true, + "requires": { + "@types/unist": "2.0.3", + "is-buffer": "2.0.4", + "replace-ext": "1.0.0", + "unist-util-stringify-position": "2.0.3", + "vfile-message": "2.0.4" + }, + "dependencies": { + "is-buffer": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/is-buffer/-/is-buffer-2.0.4.tgz", + "integrity": "sha512-Kq1rokWXOPXWuaMAqZiJW4XxsmD9zGx9q4aePabbn3qCRGedtH7Cm+zV8WETitMfu1wdh+Rvd6w5egwSngUX2A==", + "dev": true + } + } + }, + "vfile-location": { + "version": "2.0.6", + "resolved": "https://registry.npmjs.org/vfile-location/-/vfile-location-2.0.6.tgz", + "integrity": "sha512-sSFdyCP3G6Ka0CEmN83A2YCMKIieHx0EDaj5IDP4g1pa5ZJ4FJDvpO0WODLxo4LUX4oe52gmSCK7Jw4SBghqxA==", + "dev": true + }, + "vfile-message": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/vfile-message/-/vfile-message-2.0.4.tgz", + "integrity": "sha512-DjssxRGkMvifUOJre00juHoP9DPWuzjxKuMDrhNbk2TdaYYBNMStsNhEOt3idrtI12VQYM/1+iM0KOzXi4pxwQ==", + "dev": true, + "requires": { + "@types/unist": "2.0.3", + "unist-util-stringify-position": "2.0.3" + } + }, "void-elements": { "version": "2.0.1", "resolved": "https://registry.npmjs.org/void-elements/-/void-elements-2.0.1.tgz", @@ -4611,6 +5314,16 @@ "resolved": "https://registry.npmjs.org/window-size/-/window-size-0.1.0.tgz", "integrity": "sha1-VDjNLqk7IC76Ohn+iIeu58lPnJ0=" }, + "winston-transport": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/winston-transport/-/winston-transport-4.3.0.tgz", + "integrity": "sha512-B2wPuwUi3vhzn/51Uukcao4dIduEiPOcOt9HJ3QeaXgkJ5Z7UwpBzxS4ZGNHtrxrUvTwemsQiSys0ihOf8Mp1A==", + "dev": true, + "requires": { + "readable-stream": "2.3.6", + "triple-beam": "1.3.0" + } + }, "with": { "version": "5.1.1", "resolved": "https://registry.npmjs.org/with/-/with-5.1.1.tgz", diff --git a/package.json b/package.json index 1f83252..25a2dac 100644 --- a/package.json +++ b/package.json @@ -8,9 +8,11 @@ "test": "echo \"Error: no test specified\" && exit 1", "lint": "tslint --project .", "lint:fix": "tslint --project . --fix", - "build": "npm run build:json && npm run build:ts && npm run lint", + "build": "npm run build:json && npm run build:ts && npm run lint && npm run build:doc", "build:json": "node ./scripts/build-schemas.js", "build:ts": "tsc", + "build:doc": "npm run build:doc:json", + "build:doc:json": "jsonschema2md -d docs/schema -o docs/schema -x -", "tool:find-old-families": "node build/cli/find-old-families.js", "tool:delete-old-families": "node build/cli/delete-old-families.js", "tool:count-families": "node build/cli/count-families.js", @@ -27,6 +29,7 @@ }, "homepage": "https://gitlab.com/timelimit.io/timelimit-server-2018#README", "devDependencies": { + "@adobe/jsonschema2md": "^4.1.2", "@types/basic-auth": "^1.1.3", "@types/body-parser": "^1.19.0", "@types/email-templates": "^6.0.2", diff --git a/scripts/build-schemas.js b/scripts/build-schemas.js index f67ba0e..bd539c5 100644 --- a/scripts/build-schemas.js +++ b/scripts/build-schemas.js @@ -1,6 +1,6 @@ /* * server component for the TimeLimit App - * Copyright (C) 2019 Jonas Lochmann + * Copyright (C) 2019 - 2020 Jonas Lochmann * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU Affero General Public License as @@ -108,6 +108,92 @@ types.forEach((type) => { const functionName = 'is' + type.substr(0, 1).toUpperCase() + type.substr(1) output += 'export const ' + functionName + ': (value: object) => value is ' + type + ' = ' + functionBody + '\n' + + const schemaToSave = { + ...addDefinitionTitles(removeUnusedDefinitions(schema)), + title: type, + $id: 'https://timelimit.io/' + type + } + + writeFileSync( + resolve(__dirname, '../docs/schema/' + type + '.schema.json'), + JSON.stringify(schemaToSave, null, 2) + ) }) writeFileSync(resolve(__dirname, '../src/api/validator.ts'), output) + +function getUsedDefinitions(schema) { + const usedDefinitions = [] + + function addItem(item) { + if (usedDefinitions.indexOf(item) === -1) { + usedDefinitions.push(item) + + const definition = schema.definitions[item] + + handleUsedDefinitions(definition) + } + } + + function handleUsedDefinitions(obj) { + if (typeof obj !== 'object') { + return + } + + if (typeof obj.$ref === 'string') { + const value = obj.$ref + + if (value.startsWith('#/definitions/')) { + addItem(value.substr('#/definitions/'.length)) + } + } + + each(obj, (value, name) => { + if (name !== 'definitions') { + handleUsedDefinitions(value) + } + }) + } + + handleUsedDefinitions(schema) + + return usedDefinitions +} + +function removeUnusedDefinitions(schema) { + if (!schema.definitions) { + return schema + } + + const result = { + ...schema, + definitions: {} + } + + getUsedDefinitions(schema).forEach((definition) => { + result.definitions[definition] = schema.definitions[definition] + }) + + return result +} + +function addDefinitionTitles(schema) { + if (!schema.definitions) { + return schema + } + + const result = { + ...schema, + definitions: {} + } + + each(schema.definitions, (definition, title) => { + result.definitions[title] = { + ...definition, + title + } + }) + + return result +}