Properties
| Name | Type | Description |
|---|---|---|
| name | string | |
| description | string | |
| readme | string | |
| homepage | string | |
| version_info | object | |
| platform | string | |
| metadata | object | |
| repo | string | |
| dependencies | array | |
| commit_oid | string |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/webhook-rubygems-metadata",
"title": "Ruby Gems metadata",
"type": "object",
"properties": {
"name": {
"type": "string"
},
"description": {
"type": "string"
},
"readme": {
"type": "string"
},
"homepage": {
"type": "string"
},
"version_info": {
"type": "object",
"properties": {
"version": {
"type": "string"
}
}
},
"platform": {
"type": "string"
},
"metadata": {
"type": "object",
"additionalProperties": {
"type": "string"
}
},
"repo": {
"type": "string"
},
"dependencies": {
"type": "array",
"items": {
"type": "object",
"additionalProperties": {
"type": "string"
}
}
},
"commit_oid": {
"type": "string"
}
}
}