https://github.com/SoftwareHeritage/swh-storage
Raw File
Tip revision: 652ecf0aeb6898e322e0070ac11a90d010275fbf authored by Antoine R. Dumont (@ardumont) on 07 February 2020, 01:44:43 UTC
storages: Refactor journal operations with a dedicated writer collab
Tip revision: 652ecf0
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