Skip to content

Commit

Permalink
add schema for 90 days
Browse files Browse the repository at this point in the history
  • Loading branch information
chirag-jn committed Feb 10, 2024
1 parent 8d9e5ea commit a95b314
Showing 1 changed file with 13 additions and 2 deletions.
15 changes: 13 additions & 2 deletions docs/tools/vdb_table/vendor.schema.json
Original file line number Diff line number Diff line change
Expand Up @@ -36,8 +36,8 @@
"vector_dims": {"allOf": [{"$ref": "#/$defs/integerWithSource"}], "$comment": "Ops | Vector Dims | Maximum number of vector dimensions." },
"github_stars": {"allOf": [{"$ref": "#/$defs/integerWithSource"}], "$comment": "Stats | GitHub ⭐ | The number of stars for the core product repository." },
"docker_pulls": {"allOf": [{"$ref": "#/$defs/integerWithSource"}],"$comment": "Stats | Docker Pulls | The number of pulls for the core product's docker image." },
"pypi_downloads": {"allOf": [{"$ref": "#/$defs/integerWithSource"}], "$comment": "Stats | PyPi Downlaods | The number of downloads for the core product's python package." },
"npm_downloads": {"allOf": [{"$ref": "#/$defs/integerWithSource"}], "$comment": "Stats | NPM Downloads | The number of downloads for the core product's NPM package." }
"pypi_downloads": {"allOf": [{"$ref": "#/$defs/statsWithSource"}], "$comment": "Stats | PyPi Downlaods | The number of downloads for the core product's python package." },
"npm_downloads": {"allOf": [{"$ref": "#/$defs/statsWithSource"}], "$comment": "Stats | NPM Downloads | The number of downloads for the core product's NPM package." }
},

"$defs": {
Expand Down Expand Up @@ -107,6 +107,17 @@
"comment": {"type":"string"}
}
},
"statsWithSource": {
"$id": "statsWithSource",
"type": "object",
"properties": {
"value": {"type": "integer"},
"value_90_days": {"type": "integer"},
"unlimited": {"type": "boolean"},
"source_url": {"type": "string"},
"comment": {"type":"string"}
}
},
"bytesWithSource": {
"$id": "bytesWithSource",
"type": "object",
Expand Down

0 comments on commit a95b314

Please sign in to comment.