PostHog · Schema
Repo
A/B TestingAnalyticsFeature FlagsOpen SourceProduct AnalyticsSession Recording
Properties
| Name | Type | Description |
|---|---|---|
| id | string | |
| team_id | integer | |
| repo_external_id | integer | |
| repo_full_name | string | |
| baseline_file_paths | object | |
| enable_pr_comments | boolean | |
| created_at | string |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/Repo",
"title": "Repo",
"type": "object",
"properties": {
"id": {
"type": "string",
"format": "uuid"
},
"team_id": {
"type": "integer"
},
"repo_external_id": {
"type": "integer"
},
"repo_full_name": {
"type": "string"
},
"baseline_file_paths": {
"type": "object",
"additionalProperties": {
"type": "string"
}
},
"enable_pr_comments": {
"type": "boolean"
},
"created_at": {
"type": "string",
"format": "date-time"
}
},
"required": [
"baseline_file_paths",
"created_at",
"enable_pr_comments",
"id",
"repo_external_id",
"repo_full_name",
"team_id"
]
}