Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: add a Generic Event Resource #401

Merged
merged 1 commit into from
Feb 27, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
19 changes: 18 additions & 1 deletion openapi.json
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
"url": "http://www.apache.org/licenses/LICENSE-2.0"
},
"version": "2.0.0",
"x-box-commit-hash": "ee67564780"
"x-box-commit-hash": "5819125043"
},
"servers": [
{
Expand Down Expand Up @@ -26373,6 +26373,9 @@
},
{
"$ref": "#/components/schemas/Folder"
},
{
"$ref": "#/components/schemas/GenericSource"
}
]
},
Expand Down Expand Up @@ -28891,6 +28894,20 @@
}
}
},
"GenericSource": {
"title": "Generic source",
"type": "object",
"x-box-resource-id": "generic_source",
"description": "A generic event source type.",
"additionalProperties": {
"allOf": [
{},
{
"description": "A definition of a generic\nevent source object. The set of\nparameters depends on the\nobject type. For example, a Box Shield\nevent source would have the following\nset of parameters:\n```yaml\n{\n\"barrier_id\": 123456,\n\"barrier_status\": \"ENABLED\",\n\"barrier_segments\": [\n {\n \"name\": \"8\",\n \"member_count\": 1\n },\n {\n \"name\": \"9\",\n \"member_count\": 1\n }\n ]\n} \n```\n"
}
]
}
},
"IntegrationMapping": {
"title": "Integration mapping",
"type": "object",
Expand Down
Loading