https://github.com/SoftwareHeritage/swh-storage
Raw File
Tip revision: b4dc9fb866907c2bd0eae8281273f7d02b9f9d56 authored by Jenkins for Software Heritage on 16 May 2019, 12:09:04 UTC
Updated debian changelog for version 0.0.140
Tip revision: b4dc9fb
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