https://github.com/SoftwareHeritage/swh-storage
Raw File
Tip revision: b3ae4ab863d4316fc1e7e7d068d477109e8db0aa authored by Jenkins for Software Heritage on 28 January 2019, 11:02:45 UTC
Updated debian changelog for version 0.0.122
Tip revision: b3ae4ab
fetch_history.result.schema.json
{
    "$schema": "http://json-schema.org/schema#",
    "id": "http://softwareheritage.org/schemas/fetch_history.result.schema.json",

    "definitions": {
        "counter": {
            "type": "integer",
            "minimum": 0
        }
    },

    "type": "object",
    "properties": {
        "occurrences": { "$ref": "#/definitions/counter" },
        "directories": { "$ref": "#/definitions/counter" },
        "revisions": { "$ref": "#/definitions/counter" },
        "releases": { "$ref": "#/definitions/counter" },
        "contents": { "$ref": "#/definitions/counter" },
        "fake" : { "type": "boolean" }
    }
}
back to top