PostHog · Schema
SandboxEnvironmentList
A/B TestingAnalyticsFeature FlagsOpen SourceProduct AnalyticsSession Recording
Properties
| Name | Type | Description |
|---|---|---|
| id | string | |
| name | string | |
| network_access_level | object | |
| allowed_domains | array | List of allowed domains for custom network access |
| repositories | array | List of repositories this environment applies to (format: org/repo) |
| private | boolean | If true, only the creator can see this environment. Otherwise visible to whole team. |
| internal | boolean | If true, this environment is for internal use (e.g. signals pipeline) and should not be exposed to end users. |
| created_by | object | |
| created_at | string | |
| updated_at | string |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/SandboxEnvironmentList",
"title": "SandboxEnvironmentList",
"type": "object",
"properties": {
"id": {
"type": "string",
"format": "uuid",
"readOnly": true
},
"name": {
"type": "string",
"maxLength": 255
},
"network_access_level": {
"$ref": "#/components/schemas/NetworkAccessLevelEnum"
},
"allowed_domains": {
"type": "array",
"items": {
"type": "string",
"maxLength": 255
},
"description": "List of allowed domains for custom network access"
},
"repositories": {
"type": "array",
"items": {
"type": "string",
"maxLength": 255
},
"description": "List of repositories this environment applies to (format: org/repo)"
},
"private": {
"type": "boolean",
"description": "If true, only the creator can see this environment. Otherwise visible to whole team."
},
"internal": {
"type": "boolean",
"description": "If true, this environment is for internal use (e.g. signals pipeline) and should not be exposed to end users."
},
"created_by": {
"allOf": [
{
"$ref": "#/components/schemas/UserBasic"
}
],
"readOnly": true
},
"created_at": {
"type": "string",
"format": "date-time",
"readOnly": true
},
"updated_at": {
"type": "string",
"format": "date-time",
"readOnly": true
}
},
"required": [
"created_at",
"created_by",
"id",
"name",
"updated_at"
]
}