summaryrefslogtreecommitdiffstats
path: root/.gitlab/issue_templates
diff options
context:
space:
mode:
authorJan-Simon Moeller <jsmoeller@linuxfoundation.org>2024-02-09 14:40:43 +0100
committerJan-Simon Moeller <jsmoeller@linuxfoundation.org>2024-02-09 14:40:43 +0100
commit0a68b2c12704a51e32a83d0af13bda395679f757 (patch)
tree6a4325a73f3057cf34befa8381105743340535d1 /.gitlab/issue_templates
parent57d9a8c5afdefbcc1b66ccefc04aa366820f6650 (diff)
Update Quirky Quillback Milestone 3 manifestquillback_16.93.0quillback/16.93.016.93.0
This adds the new rust layer to the manifest of QQ M3. Bug-AGL: SPEC-5059 Signed-off-by: Jan-Simon Moeller <jsmoeller@linuxfoundation.org> Change-Id: I690d447389c07da9e25d4b07bff24984ae2ffde4
Diffstat (limited to '.gitlab/issue_templates')
0 files changed, 0 insertions, 0 deletions
5' href='#n185'>185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281
{
    "openapi": "3.0.0",
    "$schema": "http:iot.bzh/download/openapi/schema-3.0/default-schema.json",
    "info": {
        "description": "",
        "title": "controler",
        "version": "1.0",
        "x-binding-c-generator": {
            "api": "control",
            "version": 2,
            "prefix": "ctlapi_",
            "postfix": "",
            "start": null,
            "onevent": "DispatchOneEvent",
            "init": "CtlBindingInit",
            "scope": "",
            "private": false
        }
    },
    "servers": [
        {
            "url": "ws://{host}:{port}/api/polctl",
            "description": "Unicens2 API.",
            "variables": {
                "host": {
                    "default": "localhost"
                },
                "port": {
                    "default": "1234"
                }
            },
            "x-afb-events": [
                {
                    "$ref": "#/components/schemas/afb-event"
                }
            ]
        }
    ],
    "components": {
        "schemas": {
            "afb-reply": {
                "$ref": "#/components/schemas/afb-reply-v2"
            },
            "afb-event": {
                "$ref": "#/components/schemas/afb-event-v2"
            },
            "afb-reply-v2": {
                "title": "Generic response.",
                "type": "object",
                "required": ["jtype", "request"],
                "properties": {
                    "jtype": {
                        "type": "string",
                        "const": "afb-reply"
                    },
                    "request": {
                        "type": "object",
                        "required": ["status"],
                        "properties": {
                            "status": {
                                "type": "string"
                            },
                            "info": {
                                "type": "string"
                            },
                            "token": {
                                "type": "string"
                            },
                            "uuid": {
                                "type": "string"
                            },
                            "reqid": {
                                "type": "string"
                            }
                        }
                    },
                    "response": {
                        "type": "object"
                    }
                }
            },
            "afb-event-v2": {
                "type": "object",
                "required": ["jtype", "event"],
                "properties": {
                    "jtype": {
                        "type": "string",
                        "const": "afb-event"
                    },
                    "event": {
                        "type": "string"
                    },
                    "data": {
                        "type": "object"
                    }
                }
            }
        },
        "x-permissions": {
            "monitor": {
                "permission": "urn:AGL:permission:audio:public:monitor"
            },
            "multimedia": {
                "permission": "urn:AGL:permission:audio:public:monitor"
            },
            "navigation": {
                "permission": "urn:AGL:permission:audio:public:monitor"
            },
            "emergency": {
                "permission": "urn:AGL:permission:audio:public:emergency"
            }
        },
        "responses": {
            "200": {
                "description": "A complex object array response",
                "content": {
                    "application/json": {
                        "schema": {
                            "$ref": "#/components/schemas/afb-reply"
                        }
                    }
                }
            }
        }
    },
    "paths": {
        "/monitor": {
            "description": "Subcribe Audio Agent Policy Control End",
            "get": {
                "x-permissions": {
                    "$ref": "#/components/x-permissions/monitor"
                },
                "parameters": [
                    {
                        "in": "query",
                        "name": "event_patern",
                        "required": true,
                        "schema": {
                            "type": "string"
                        }
                    }
                ],
                "responses": {
                    "200": {
                        "$ref": "#/components/responses/200"
                    }
                }
            }
        },
        "/event_test": {
            "description": "Pause Resume Test",
            "get": {
                "x-permissions": {
                    "$ref": "#/components/x-permissions/monitor"
                },
                "parameters": [
                    {
                        "in": "query",
                        "name": "delay",
                        "required": false,
                        "schema": {
                            "type": "interger"
                        }
                    },
                    {
                        "in": "query",
                        "name": "count",
                        "required": false,
                        "schema": {
                            "type": "interger"
                        }
                    }
                ],
                "responses": {
                    "200": {
                        "$ref": "#/components/responses/200"
                    }
                }
            }
        },
        "/dispatch": {
            "description": "Request Access to Navigation Audio Channel.",
            "get": {
                "x-permissions": {
                    "$ref": "#/components/x-permissions/navigation"
                },
                "parameters": [
                    {
                        "in": "query",
                        "name": "zone",
                        "required": false,
                        "schema": {
                            "type": "string"
                        }
                    }
                ],
                "responses": {
                    "200": {
                        "$ref": "#/components/responses/200"
                    }
                }
            }
        },
        "/lua_docall": {
            "description": "Execute LUA string script.",
            "get": {
                "x-permissions": {
                    "$ref": "#/components/x-permissions/navigation"
                },
                "parameters": [
                    {
                        "in": "query",
                        "name": "func",
                        "required": true,
                        "schema": {
                            "type": "string"
                        }
                    },
                    {
                        "in": "query",
                        "name": "args",
                        "required": false,
                        "schema": {
                            "type": "array"
                        }
                    }
                ],
                "responses": {
                    "200": {
                        "$ref": "#/components/responses/200"
                    }
                }
            }
        },
        "/lua_dostring": {
            "description": "Execute LUA string script.",
            "get": {
                "x-permissions": {
                    "$ref": "#/components/x-permissions/navigation"
                },
                "parameters": [
                    {
                        "in": "query",
                        "required": true,
                        "schema": {
                            "type": "string"
                        }
                    }
                ],
                "responses": {
                    "200": {
                        "$ref": "#/components/responses/200"
                    }
                }
            }
        },
        "/lua_doscript": {
            "description": "Execute LUA string script.",
            "get": {
                "x-permissions": {
                    "$ref": "#/components/x-permissions/navigation"
                },
                "parameters": [
                    {
                        "in": "query",
                        "name": "filename",
                        "required": true,
                        "schema": {
                            "type": "string"
                        }
                    }
                ],
                "responses": {
                    "200": {
                        "$ref": "#/components/responses/200"
                    }
                }
            }
        }
    }
}