-
Notifications
You must be signed in to change notification settings - Fork 1
/
standard-attributes.alfa
98 lines (82 loc) · 2.58 KB
/
standard-attributes.alfa
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
namespace Attributes {
attribute subjectId {
id = "urn:oasis:names:tc:xacml:1.0:subject:subject-id"
type = string
category = subjectCat
}
attribute subjectIdQualifier {
id = "urn:oasis:names:tc:xacml:1.0:subject:subject-id-qualifier"
type = string
category = subjectCat
}
attribute subjectKeyInfo {
id = "urn:oasis:names:tc:xacml:1.0:subject:key-info"
type = string
category = subjectCat
}
attribute subjectAuthenticationTime {
id = "urn:oasis:names:tc:xacml:1.0:subject:authentication-time"
type = dateTime
category = subjectCat
}
attribute subjectAuthenticationMethod {
id = "urn:oasis:names:tc:xacml:1.0:subject:authentication-method"
type = string
category = subjectCat
}
attribute subjectRequestTime {
id = "urn:oasis:names:tc:xacml:1.0:subject:request-time"
type = dateTime
category = subjectCat
}
attribute subjectSessionStartTime {
id = "urn:oasis:names:tc:xacml:1.0:subject:session-start-time"
type = dateTime
category = subjectCat
}
attribute subjectLocalityIpAddress {
id = "urn:oasis:names:tc:xacml:3.0:subject:authn-locality:ip-address"
type = ipAddress
category = subjectCat
}
attribute subjectLocalityDnsName {
id = "urn:oasis:names:tc:xacml:3.0:subject:authn-locality:dns-name"
type = dnsName
category = subjectCat
}
attribute resourceId {
id = "urn:oasis:names:tc:xacml:1.0:resource:resource-id"
type = string
category = resourceCat
}
attribute resourceTargetNamespace {
id = "urn:oasis:names:tc:xacml:2.0:resource:target-namespace"
type = anyURI
category = resourceCat
}
attribute actionId {
id = "urn:oasis:names:tc:xacml:1.0:action:action-id"
type = string
category = actionCat
}
attribute impliedAction {
id = "urn:oasis:names:tc:xacml:1.0:action:implied-action"
type = string
category = actionCat
}
attribute currentTime {
id = "urn:oasis:names:tc:xacml:1.0:environment:current-time"
type = time
category = environmentCat
}
attribute currentDate {
id = "urn:oasis:names:tc:xacml:1.0:environment:current-date"
type = date
category = environmentCat
}
attribute currentDateTime {
id = "urn:oasis:names:tc:xacml:1.0:environment:current-dateTime"
type = dateTime
category = environmentCat
}
}