https://github.com/SoftwareHeritage/swh-storage
Raw File
Tip revision: 9747aed6cbf1b31b87a8c3d00fe0177da357d056 authored by Vincent SELLIER on 06 July 2021, 14:54:57 UTC
cassandra: Allow to configure the consistency level to use
Tip revision: 9747aed
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