https://github.com/SoftwareHeritage/swh-storage
Raw File
Tip revision: ed55e9c775d65dd519cc67d1465687eb7e3ff790 authored by David Douard on 11 September 2020, 10:27:17 UTC
Load the "fast" hypothesis profile by default
Tip revision: ed55e9c
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