diff options
author | Gordon Chung <chungg@ca.ibm.com> | 2014-01-06 14:52:17 -0500 |
---|---|---|
committer | Gordon Chung <chungg@ca.ibm.com> | 2014-03-17 00:28:45 -0400 |
commit | 1d5428afa7c4442762737fdca8bad3d533f5e275 (patch) | |
tree | da9589d3892e91dfcfb1920d62757a44cafd78db /doc/source/specification/reasons.rst | |
parent | 99dd8b4badcca4da0701fc250b9d3684f8d1ac38 (diff) | |
download | pycadf-1d5428afa7c4442762737fdca8bad3d533f5e275.tar.gz |
pycadf documentation
add basic documentation on CADF spec.
Closes-Bug: #1279951
Change-Id: Ie1703d9b5109d8275377857e5362e3b09385f647
Implements: blueprint document-pycadf
Diffstat (limited to 'doc/source/specification/reasons.rst')
-rw-r--r-- | doc/source/specification/reasons.rst | 49 |
1 files changed, 49 insertions, 0 deletions
diff --git a/doc/source/specification/reasons.rst b/doc/source/specification/reasons.rst new file mode 100644 index 0000000..aed4e20 --- /dev/null +++ b/doc/source/specification/reasons.rst @@ -0,0 +1,49 @@ +.. + Copyright 2014 IBM Corp. + + Licensed under the Apache License, Version 2.0 (the "License"); you may + not use this file except in compliance with the License. You may obtain + a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, WITHOUT + WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the + License for the specific language governing permissions and limitations + under the License. + +.. _reasons: + +======== + Reasons +======== + +A component that contains a means to provide additional details and further +classify the top-level OUTCOME of the ACTION included in a CADF Event Record. + +========== ========= ======== ===================================================================================================================== +Property Type Required Description +========== ========= ======== ===================================================================================================================== +reasonType xs:anyURI No The domain URI that defines the "reasonCode" property's value +reasonCode xs:string No An optional detailed result code as described by the domain identified in the "reasonType" property +policyType xs:anyURI No The domain URI that defines the "policyId" property’s value +policyId xs:string No An optional identifier that indicates which policy or algorithm was applied in order to achieve the described OUTCOME +========== ========= ======== ===================================================================================================================== + +Serialisation +============= + +json:: + + { + "typeURI": "http://schemas.dmtf.org/cloud/audit/1.0/event", + ..., + "reason": { + "reasonType": "http://www.iana.org/assignments/http-status-codes/http-status-codes.xml", + "reasonCode": "408", + "policyType": "http://schemas.xmlsoap.org/ws/2002/12/policy", + "policyId": "http://10.0.3.4/firewall-ruleset/rule0012" + }, + ... + } |