JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/access_apps",
"title": "access_apps",
"anyOf": [
{
"allOf": [
{
"$ref": "#/components/schemas/access_schemas-basic_app_response_props"
},
{
"$ref": "#/components/schemas/access_schemas-self_hosted_props"
}
],
"title": "Self Hosted Application",
"type": "object"
},
{
"allOf": [
{
"$ref": "#/components/schemas/access_schemas-basic_app_response_props"
},
{
"$ref": "#/components/schemas/access_schemas-saas_props"
}
],
"title": "SaaS Application",
"type": "object"
},
{
"allOf": [
{
"$ref": "#/components/schemas/access_schemas-basic_app_response_props"
},
{
"$ref": "#/components/schemas/access_schemas-ssh_props"
}
],
"title": "Browser SSH Application",
"type": "object"
},
{
"allOf": [
{
"$ref": "#/components/schemas/access_schemas-basic_app_response_props"
},
{
"$ref": "#/components/schemas/access_schemas-vnc_props"
}
],
"title": "Browser VNC Application",
"type": "object"
},
{
"allOf": [
{
"$ref": "#/components/schemas/access_schemas-basic_app_response_props"
},
{
"$ref": "#/components/schemas/access_schemas-app_launcher_props"
}
],
"title": "App Launcher Application",
"type": "object"
},
{
"allOf": [
{
"$ref": "#/components/schemas/access_schemas-basic_app_response_props"
},
{
"$ref": "#/components/schemas/access_schemas-warp_props"
}
],
"title": "Device Enrollment Permissions Application",
"type": "object"
},
{
"allOf": [
{
"$ref": "#/components/schemas/access_schemas-basic_app_response_props"
},
{
"$ref": "#/components/schemas/access_schemas-biso_props"
}
],
"title": "Browser Isolation Permissions Application",
"type": "object"
},
{
"allOf": [
{
"$ref": "#/components/schemas/access_schemas-basic_app_response_props"
},
{
"$ref": "#/components/schemas/access_schemas-bookmark_props"
}
],
"title": "Bookmark application",
"type": "object"
}
],
"type": "object"
}