You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: clients/entity-client/src/openapi.json
+24-3Lines changed: 24 additions & 3 deletions
Original file line number
Diff line number
Diff line change
@@ -2,7 +2,7 @@
2
2
"openapi": "3.0.2",
3
3
"info": {
4
4
"title": "Entity API",
5
-
"version": "2.7.0",
5
+
"version": "2.8.0",
6
6
"description": "Flexible data layer for epilot Entities.\n\nUse this API configure and access your business objects like Contacts, Opportunities and Products.\n\n[Feature Documentation](https://docs.epilot.io/docs/entities/flexible-entities)\n"
7
7
},
8
8
"tags": [
@@ -70,6 +70,19 @@
70
70
"type": "boolean",
71
71
"default": false
72
72
}
73
+
},
74
+
{
75
+
"in": "query",
76
+
"name": "exclude",
77
+
"description": "List of schema slugs to exclude from the results. Accepts a comma-separated list of slugs to exclude from the results.",
78
+
"schema": {
79
+
"type": "array",
80
+
"items": {
81
+
"type": "string"
82
+
}
83
+
},
84
+
"style": "form",
85
+
"explode": false
73
86
}
74
87
],
75
88
"tags": [
@@ -7056,6 +7069,14 @@
7056
7069
]
7057
7070
}
7058
7071
},
7072
+
"NullableEntity": {
7073
+
"nullable": true,
7074
+
"allOf": [
7075
+
{
7076
+
"$ref": "#/components/schemas/Entity"
7077
+
}
7078
+
]
7079
+
},
7059
7080
"EntityOwner": {
7060
7081
"description": "The user / organization owning this entity.\n\nNote: Owner implicitly has access to the entity regardless of ACLs.\n",
7061
7082
"type": "object",
@@ -8097,11 +8118,11 @@
8097
8118
},
8098
8119
"entityNodes": {
8099
8120
"type": "object",
8100
-
"description": "Map of node IDs to entity objects or arrays of entity objects (present when hydrate=true).\nThe seed node always returns a single Entity object.\nOther nodes return a single Entity objectif they contain exactly one entity, or an array of Entity objects if they contain multiple entities.\n",
8121
+
"description": "Map of node IDs to entity objects or arrays of entity objects (present when hydrate=true).\nThe seed node and nodes with cardinality=\"one\"return a single Entity object, or null if no entity was found.\nNodes with cardinality=\"many\" return an array of Entity objects.\n",
0 commit comments