temporal-entity-by-id-spec.json 4.36 KB
Newer Older
canterafonsj's avatar
canterafonsj committed
{
  "openapi": "3.0.1",
  "info": {
    "title": "NGSI-LD Entity Temporal By Id",
    "version": "latest"
  },
  "components": {
  },
  "paths": {
    "/temporal/entities/{entityId}": {
      "get": {
        "description": "Retrieve the temporal representation of an specific Entity from an NGSI-LD system. It's possible to specify the Entity attributes to be retrieved by using query parameters",
        "operationId": "retrieveEntityTemporalById",
Stefan Wiedemann's avatar
Stefan Wiedemann committed
        "tags": ["Temporal Evolution", "Temporal"],
canterafonsj's avatar
canterafonsj committed
        "parameters": [
          {
Stefan Wiedemann's avatar
Stefan Wiedemann committed
            "$ref": "http://localhost:8090/spec/updated/entities/entity-by-id-spec.json#/components/parameters/entityId"
Stefan Wiedemann's avatar
Stefan Wiedemann committed
            "$ref": "http://localhost:8090/spec/updated/entities/entity-by-id-spec.json#/components/parameters/attrs"
Stefan Wiedemann's avatar
Stefan Wiedemann committed
            "$ref": "http://localhost:8090/spec/updated/entities/entity-by-id-spec.json#/components/parameters/type"
canterafonsj's avatar
canterafonsj committed
          },  
Stefan Wiedemann's avatar
Stefan Wiedemann committed
            "$ref": "http://localhost:8090/spec/updated/temporal/temporal-entities-spec.json#/components/parameters/options"
canterafonsj's avatar
canterafonsj committed
          },
          {
Stefan Wiedemann's avatar
Stefan Wiedemann committed
            "$ref": "http://localhost:8090/spec/updated/temporal/temporal-entities-spec.json#/components/parameters/timerel"
canterafonsj's avatar
canterafonsj committed
          },
          {
Stefan Wiedemann's avatar
Stefan Wiedemann committed
            "$ref": "http://localhost:8090/spec/updated/temporal/temporal-entities-spec.json#/components/parameters/timeproperty"
canterafonsj's avatar
canterafonsj committed
          },
          {
Stefan Wiedemann's avatar
Stefan Wiedemann committed
            "$ref": "http://localhost:8090/spec/updated/temporal/temporal-entities-spec.json#/components/parameters/time"
canterafonsj's avatar
canterafonsj committed
          },
          {
Stefan Wiedemann's avatar
Stefan Wiedemann committed
            "$ref": "http://localhost:8090/spec/updated/temporal/temporal-entities-spec.json#/components/parameters/endTime"
canterafonsj's avatar
canterafonsj committed
          },
          {
Stefan Wiedemann's avatar
Stefan Wiedemann committed
            "$ref": "http://localhost:8090/spec/updated/temporal/temporal-entities-spec.json#/components/parameters/lastN"
canterafonsj's avatar
canterafonsj committed
          }
        ],
        "responses": {
          "200": {
            "description": "OK",
            "content": {
              "application/json;application/ld+json": {
                "schema": {
Stefan Wiedemann's avatar
Stefan Wiedemann committed
                  "$ref": "http://localhost:8090/schema/temporal/EntityTemporal.json#/definitions/EntityTemporal"
canterafonsj's avatar
canterafonsj committed
                },
                "examples": {
                  "simple": {
Stefan Wiedemann's avatar
Stefan Wiedemann committed
                    "externalValue": "http://localhost:8090/examples/EntityTemporal-example_C5.5.3.json"
canterafonsj's avatar
canterafonsj committed
                  }
                }
              }
            }
          },
          "400": {
            "description": "Bad request",
            "content": {
              "application/json;application/ld+json": {
                "schema": {
Stefan Wiedemann's avatar
Stefan Wiedemann committed
                  "$ref": "http://localhost:8090/schema/common.json#/definitions/ProblemDetails"
canterafonsj's avatar
canterafonsj committed
                }
              }
            }
          },
          "404": {
            "description": "Not Found",
            "content": {
              "application/json;application/ld+json": {
                "schema": {
Stefan Wiedemann's avatar
Stefan Wiedemann committed
                  "$ref": "http://localhost:8090/schema/common.json#/definitions/ProblemDetails"
canterafonsj's avatar
canterafonsj committed
                }
              }
            }
          }
        }
      },
      "delete": {
canterafonsj's avatar
canterafonsj committed
        "description": "Removes the temporal representation of an Entity from an NGSI-LD system",
        "operationId": "removeEntityTemporalById",
Stefan Wiedemann's avatar
Stefan Wiedemann committed
        "tags": ["Temporal Evolution", "Temporal"],
canterafonsj's avatar
canterafonsj committed
        "parameters": [
          {
Stefan Wiedemann's avatar
Stefan Wiedemann committed
            "$ref": "http://localhost:8090/spec/updated/entities/entity-by-id-spec.json#/components/parameters/entityId"
Stefan Wiedemann's avatar
Stefan Wiedemann committed
            "$ref": "http://localhost:8090/spec/updated/entities/entity-by-id-spec.json#/components/parameters/type"
canterafonsj's avatar
canterafonsj committed
          }
        ],
        "responses": {
          "204": {
            "description": "No Content. The entity was removed successfully"
          },
          "400": {
            "description": "Bad Request",
            "content": {
              "application/json;application/ld+json": {
                "schema": {
Stefan Wiedemann's avatar
Stefan Wiedemann committed
                  "$ref": "http://localhost:8090/schema/common.json#/definitions/ProblemDetails"
canterafonsj's avatar
canterafonsj committed
                }
              }
            }
          },
          "404": {
            "description": "Not Found",
            "content": {
              "application/json;application/ld+json": {
                "schema": {
Stefan Wiedemann's avatar
Stefan Wiedemann committed
                  "$ref": "http://localhost:8090/schema/common.json#/definitions/ProblemDetails"
canterafonsj's avatar
canterafonsj committed
}