Fact Document

Fact documents describe the (relatively) immutable characteristics of a system. They are returned by Fact Checkers.

Schema

os

string

Name of the operating system

JSON Schema:

{
    "type": "object",
    "properties": {
        "os": {
            "type": "string",
            "description": "Name of the operating system"
        }
    }
}

Example

{
    'os': {
        'kind': 'linux',
        'distro': 'ubuntu',
        'version': '12.10',
    },
}

Project Versions

Table Of Contents

Previous topic

Documents

Next topic

Identity Document

This Page