ApiSchemas
Preview
One shape from the contract, as it appears on the wire.
Used by previews.list, previews.mint
Referenced from PreviewMinted
JSON Schema
{
"type": "object",
"properties": {
"id": {
"$ref": "#/components/schemas/PreviewId"
},
"sessionId": {
"$ref": "#/components/schemas/SessionId"
},
"sandboxId": {
"$ref": "#/components/schemas/SandboxId"
},
"port": {
"$ref": "#/components/schemas/PreviewPort"
},
"url": {
"type": "string"
},
"path": {
"$ref": "#/components/schemas/PreviewPath"
},
"public": {
"type": "boolean"
},
"identity": {
"type": "string"
},
"createdAt": {
"type": "string"
},
"expiresAt": {
"type": "string"
},
"revokedAt": {
"type": "string"
}
},
"required": [
"id",
"sessionId",
"sandboxId",
"port",
"url",
"path",
"public",
"createdAt",
"expiresAt"
],
"additionalProperties": false
}