PostHog · Schema
SimilarIssue
A/B TestingAnalyticsFeature FlagsOpen SourceProduct AnalyticsSession Recording
Properties
| Name | Type | Description |
|---|---|---|
| description | string | |
| distance | number | |
| first_seen | string | |
| id | string | |
| library | string | |
| name | string | |
| status | string |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/SimilarIssue",
"title": "SimilarIssue",
"additionalProperties": false,
"properties": {
"description": {
"title": "Description",
"type": "string"
},
"distance": {
"title": "Distance",
"type": "number"
},
"first_seen": {
"title": "First Seen",
"type": "string"
},
"id": {
"title": "Id",
"type": "string"
},
"library": {
"default": null,
"title": "Library",
"type": "string",
"nullable": true
},
"name": {
"title": "Name",
"type": "string"
},
"status": {
"title": "Status",
"type": "string"
}
},
"required": [
"description",
"distance",
"first_seen",
"id",
"name",
"status"
],
"type": "object"
}