-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathserver-function.json
More file actions
63 lines (63 loc) · 1.95 KB
/
Copy pathserver-function.json
File metadata and controls
63 lines (63 loc) · 1.95 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "https://github.com/api-evangelist/polyapi/blob/main/json-schema/server-function.json",
"title": "PolyAPI Server Function",
"description": "A server function is a Knative serverless function that runs in the PolyAPI cloud infrastructure, supporting TypeScript, Python, Java, and C# languages.",
"type": "object",
"properties": {
"id": {
"type": "string",
"description": "The unique identifier of the server function."
},
"name": {
"type": "string",
"description": "The name of the server function."
},
"description": {
"type": "string",
"description": "A description of what the server function does."
},
"context": {
"type": "string",
"description": "The context path for organizing the function in the catalog."
},
"language": {
"type": "string",
"enum": ["typescript", "python", "java", "csharp"],
"description": "The programming language of the function."
},
"code": {
"type": "string",
"description": "The function source code."
},
"deploymentId": {
"type": "string",
"description": "The deployment identifier for the function."
},
"state": {
"type": "string",
"enum": ["active", "inactive", "deprecated"],
"description": "The lifecycle state of the function."
},
"owner": {
"type": "string",
"description": "The owner of the function."
},
"visibility": {
"type": "string",
"enum": ["public", "private"],
"description": "The visibility of the function."
},
"createdAt": {
"type": "string",
"format": "date-time",
"description": "Timestamp when the function was created."
},
"updatedAt": {
"type": "string",
"format": "date-time",
"description": "Timestamp when the function was last updated."
}
},
"required": ["name", "language", "code"]
}