Commit b71512d8 authored by canterafonsj's avatar canterafonsj
Browse files

Adding tags

parent 2b188de0
Loading
Loading
Loading
Loading
+2 −0
Original line number Diff line number Diff line
@@ -13,6 +13,7 @@
      "get": {
        "description": "Retrieve a set of context sources which matches a specific query from an NGSI-LD system",
        "operationId": "queryCsources",
        "tags": ["Context Sources"],
        "parameters": [
          {
            "$ref": "https://forge.etsi.org/gitlab/NGSI-LD/NGSI-LD/raw/master/spec/updated/entities-spec.json#/components/parameters/id"
@@ -76,6 +77,7 @@
      "post": {
        "description": "Registers a new context source within an NGSI-LD system",
        "operationId": "registerCsource",
        "tags": ["Context Sources"],
        "requestBody": {
          "required": true,
          "content": {
+5 −2
Original line number Diff line number Diff line
@@ -23,6 +23,7 @@
      "get": {
         "description": "Retrieves a specific Subscription from an NGSI-LD system",
         "operationId": "retrieveSubscription",
         "tags": ["Context Sources"],
        "parameters": [
          {
            "$ref": "#/components/parameters/subscriptionId"
@@ -69,6 +70,7 @@
      "patch": {
        "description": "Updates a specific context source discovery Subscription within an NGSI-LD system",
        "operationId": "updateCSourceSubscription",
        "tags": ["Context Sources"]
        "parameters": [
          {
            "$ref": "#/components/parameters/subscriptionId"
@@ -111,8 +113,9 @@
        }
      },
      "delete": {
        "description": "Removes a specific Subscription from an NGSI-LD system",
        "operationId": "removeSubscription",
        "description": "Removes a specific Context Source Subscription from an NGSI-LD system",
        "operationId": "removeCSourceSubscription",
        "tags": ["Context Sources"]
        "parameters": [
          {
            "$ref": "#/components/parameters/subscriptionId"
+2 −0
Original line number Diff line number Diff line
@@ -23,6 +23,7 @@
      "get": {
        "description": "Retrieves the context source discovery subscriptions available in an NGSI-LD system",
        "operationId": "retrieveCSourceSubscriptions",
        "tags": ["Context Sources"],
        "parameters": [
          {
            "$ref": "#/components/parameters/limit"
@@ -59,6 +60,7 @@
      "post": {
        "description": "Creates a context source discovery Subscription within an NGSI-LD system",
        "operationId": "createCSourceSubscription",
        "tags": ["Context Sources"]
        "requestBody": {
          "required": true,
          "content": {
+2 −0
Original line number Diff line number Diff line
@@ -130,6 +130,7 @@
      "get": {
        "description": "Retrieve a set of entities which matches a specific query from an NGSI-LD system",
        "operationId": "queryEntities",
        "tags": ["Context Information"],
        "parameters": [
          {
            "$ref": "#/components/parameters/id"
@@ -199,6 +200,7 @@
      "post": {
        "description": "Create a new Entity within an NGSI-LD system",
        "operationId": "createEntity",
        "tags": ["Context Information"]
        "requestBody": {
          "required": true,
          "content": {
+4 −0
Original line number Diff line number Diff line
@@ -44,6 +44,7 @@
      "post": {
        "description": "Append new Entity attributes to an existing Entity within an NGSI-LD system",
        "operationId": "appendEntityAttrs",
        "tags": ["Context Information"],
        "parameters": [
          {
            "$ref": "#/components/parameters/entityId"
@@ -101,6 +102,7 @@
      "patch": {
        "description": "Update existing Entity attributes within an NGSI-LD system",
        "operationId": "updateEntityAttrs",
        "tags": ["Context Information"],
        "parameters": [
          {
            "$ref": "#/components/parameters/entityId"
@@ -157,6 +159,7 @@
      "patch": {
        "description": "Update existing Entity attributes within an NGSI-LD system",
        "operationId": "partialAttrUpdate",
        "tags": ["Context Information"],
        "parameters": [
          {
            "$ref": "#/components/parameters/entityId"
@@ -204,6 +207,7 @@
      "delete": {
        "description": "Removes an existing Entity attribute within an NGSI-LD system",
        "operationId": "removeEntityAttr",
        "tags": ["Context Information"],
        "parameters": [
          {
            "$ref": "#/components/parameters/entityId"
Loading