PostHog · Schema
PatchedProjectSecretAPIKey
A/B TestingAnalyticsFeature FlagsOpen SourceProduct AnalyticsSession Recording
Properties
| Name | Type | Description |
|---|---|---|
| id | string | |
| label | string | |
| value | string | |
| mask_value | string | |
| created_at | string | |
| created_by | integer | |
| last_used_at | string | |
| last_rolled_at | string | |
| scopes | array |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/PatchedProjectSecretAPIKey",
"title": "PatchedProjectSecretAPIKey",
"type": "object",
"properties": {
"id": {
"type": "string",
"readOnly": true
},
"label": {
"type": "string",
"maxLength": 40
},
"value": {
"type": "string",
"readOnly": true
},
"mask_value": {
"type": "string",
"readOnly": true,
"nullable": true
},
"created_at": {
"type": "string",
"format": "date-time",
"readOnly": true
},
"created_by": {
"type": "integer",
"readOnly": true,
"nullable": true
},
"last_used_at": {
"type": "string",
"format": "date-time",
"readOnly": true,
"nullable": true
},
"last_rolled_at": {
"type": "string",
"format": "date-time",
"readOnly": true,
"nullable": true
},
"scopes": {
"type": "array",
"items": {
"type": "string"
}
}
}
}