Browsing Interface : Welcome guest : log in
Home |  Graph |  ]  KB:  Language:   

Formal Language: 



KB Term:  Term intersection
English Word: 

Sigma KEE - UserAccount
UserAccount(用戶帳號)

appearance as argument number 1
-------------------------


(documentation UserAccount EnglishLanguage "An established relationship between a user and a computer, network or information service. User accounts require a username and password, and new user accounts are given a default set of permissions.") QoSontology.kif 2036-2038
(externalImage UserAccount "http://upload.wikimedia.org/wikipedia/commons/ 9/ 99/ Gnucash-account-summary.png") pictureList.kif 10328-10328
(subclass UserAccount Account) ComputingBrands.kif 4542-4542 子類 用戶帳號 and Account
(subclass UserAccount ContentBearingObject) QoSontology.kif 2035-2035 子類 用戶帳號 and ContentBearingObject

appearance as argument number 2
-------------------------


(subclass AppleID UserAccount) ComputingBrands.kif 2001-2001 子類 蘋果ID and 用戶帳號
(termFormat ChineseLanguage UserAccount "用户帐号") domainEnglishFormat.kif 60842-60842
(termFormat ChineseTraditionalLanguage UserAccount "用戶帳號") domainEnglishFormat.kif 60841-60841
(termFormat EnglishLanguage UserAccount "user account") domainEnglishFormat.kif 60840-60840

appearance as argument number 3
-------------------------


(domain accountAtSite 1 UserAccount) UXExperimentalTerms.kif 626-626 accountAtSite, 1 and 用戶帳號
(domain accountInformation 1 UserAccount) ComputingBrands.kif 4411-4411 accountInformation, 1 and 用戶帳號
(domain accountPhoneNumber 1 UserAccount) ComputingBrands.kif 4157-4157 accountPhoneNumber, 1 and 用戶帳號
(domain accountUsed 2 UserAccount) ComputingBrands.kif 4162-4162 accountUsed, 2 and 用戶帳號
(domain deviceAccount 1 UserAccount) ComputingBrands.kif 3950-3950 deviceAccount, 1 and 用戶帳號
(domain hasAccount 2 UserAccount) QoSontology.kif 2071-2071 有帳戶, 2 and 用戶帳號
(domain loggedInDuring 2 UserAccount) ComputingBrands.kif 4330-4330 loggedInDuring, 2 and 用戶帳號
(domain password 2 UserAccount) QoSontology.kif 2098-2098 密碼, 2 and 用戶帳號
(domain recoveryKey 2 UserAccount) ComputingBrands.kif 4421-4421 recoveryKey, 2 and 用戶帳號
(domain trustedDevice 1 UserAccount) ComputingBrands.kif 4285-4285 trustedDevice, 1 and 用戶帳號
(domain userFeedbackScore 1 UserAccount) UXExperimentalTerms.kif 710-710 userFeedbackScore, 1 and 用戶帳號
(domain userIDString 2 UserAccount) UXExperimentalTerms.kif 1091-1091 userIDString, 2 and 用戶帳號
(domain userName 1 UserAccount) QoSontology.kif 2060-2060 userName, 1 and 用戶帳號

antecedent
-------------------------


(=>
    (and
        (instance ?ACCOUNT UserAccount)
        (attribute ?ACCOUNT BusinessAccount)
        (hasAccount ?USER ?ACCOUNT))
    (instance ?USER Business))
UXExperimentalTerms.kif 660-665
(=>
    (and
        (instance ?ACT ActivatingADeactivatedAccount)
        (instance ?AC UserAccount)
        (patient ?ACT ?AC))
    (and
        (holdsDuring
            (ImmediatePastFn
                (WhenFn ?ACT))
            (attribute ?AC AccountDeactivated))
        (holdsDuring
            (ImmediateFutureFn
                (WhenFn ?ACT))
            (attribute ?AC AccountActive))))
ComputingBrands.kif 4482-4491
(=>
    (and
        (instance ?DEACT DeactivatingAnAccount)
        (instance ?AC UserAccount)
        (patient ?DEACT ?AC))
    (and
        (holdsDuring
            (ImmediateFutureFn
                (WhenFn ?DEACT))
            (attribute ?AC AccountDeactivated))
        (holdsDuring
            (ImmediatePastFn
                (WhenFn ?DEACT))
            (attribute ?AC AccountActive))))
ComputingBrands.kif 4498-4507
(=>
    (instance ?ACCOUNT UserAccount)
    (exists (?STRING)
        (and
            (instance ?STRING Identifier)
            (userIDString ?STRING ?ACCOUNT))))
UXExperimentalTerms.kif 1105-1110
(=>
    (instance ?Account UserAccount)
    (exists (?User)
        (hasAccount ?User ?Account)))
QoSontology.kif 2040-2043

consequent
-------------------------


(=>
    (and
        (attribute ?ACCT ?ATTR)
        (instance ?ATTR AccountAttribute))
    (instance ?ACCT UserAccount))
UXExperimentalTerms.kif 648-652
(=>
    (and
        (instance ?TRANS FinancialTransaction)
        (attribute ?TRANS BusinessToBusiness))
    (exists (?ACCT1 ?ACCT2 ?USER1 ?USER2 ?SITE)
        (and
            (instance ?ACCT1 UserAccount)
            (instance ?ACCT2 UserAccount)
            (instance ?USER1 AutonomousAgent)
            (instance ?USER2 AutonomousAgent)
            (instance ?SITE WebSite)
            (agent ?TRANS ?USER1)
            (destination ?TRANS ?USER2)
            (instrument ?TRANS ?SITE)
            (hasAccount ?USER1 ?ACCT1)
            (hasAccount ?USER2 ?ACCT2)
            (accountAtSite ?ACCT1 ?SITE)
            (accountAtSite ?ACCT2 ?SITE)
            (attribute ?ACCT1 BusinessAccount)
            (attribute ?ACCT2 BusinessAccount))))
UXExperimentalTerms.kif 1727-1746
(=>
    (and
        (instance ?TRANS FinancialTransaction)
        (attribute ?TRANS BusinessToConsumer))
    (exists (?ACCT1 ?ACCT2 ?USER1 ?USER2 ?SITE)
        (and
            (instance ?ACCT1 UserAccount)
            (instance ?ACCT2 UserAccount)
            (instance ?USER1 AutonomousAgent)
            (instance ?USER2 AutonomousAgent)
            (instance ?SITE WebSite)
            (agent ?TRANS ?USER1)
            (destination ?TRANS ?USER2)
            (instrument ?TRANS ?SITE)
            (hasAccount ?USER1 ?ACCT1)
            (hasAccount ?USER2 ?ACCT2)
            (accountAtSite ?ACCT1 ?SITE)
            (accountAtSite ?ACCT2 ?SITE)
            (attribute ?ACCT1 BusinessAccount)
            (attribute ?ACCT2 ConsumerAccount))))
UXExperimentalTerms.kif 1759-1778
(=>
    (and
        (instance ?TRANS FinancialTransaction)
        (attribute ?TRANS ConsumerToConsumer))
    (exists (?ACCT1 ?ACCT2 ?USER1 ?USER2 ?SITE)
        (and
            (instance ?ACCT1 UserAccount)
            (instance ?ACCT2 UserAccount)
            (instance ?USER1 AutonomousAgent)
            (instance ?USER2 AutonomousAgent)
            (instance ?SITE WebSite)
            (agent ?TRANS ?USER1)
            (destination ?TRANS ?USER2)
            (instrument ?TRANS ?SITE)
            (hasAccount ?USER1 ?ACCT1)
            (hasAccount ?USER2 ?ACCT2)
            (accountAtSite ?ACCT1 ?SITE)
            (accountAtSite ?ACCT2 ?SITE)
            (attribute ?ACCT1 ConsumerAccount)
            (attribute ?ACCT2 ConsumerAccount))))
UXExperimentalTerms.kif 1791-1810
(=>
    (registeredUser ?USER ?SITE)
    (exists (?ACCT)
        (and
            (instance ?ACCT UserAccount)
            (hasAccount ?USER ?ACCT)
            (accountAtSite ?ACCT ?SITE))))
UXExperimentalTerms.kif 873-879
(=>
    (userIDString ?STRING ?ACCOUNT)
    (modalAttribute
        (not
            (exists (?ACCOUNT2)
                (and
                    (instance ?ACCOUNT2 UserAccount)
                    (userIDString ?STRING ?ACCOUNT2)))) Likely))
UXExperimentalTerms.kif 1112-1120


Show full definition with tree view
Show simplified definition (without tree view)
Show simplified definition (with tree view)



Sigma web home      Suggested Upper Merged Ontology (SUMO) web home
Sigma version 3.0 is open source software produced by Articulate Software and its partners