"description":"This OAS file describes the NGSI-LD API defined by the ETSI ISG CIM group. This Cross-domain Context Information Management API allows to provide, consume and subscribe to context information in multiple scenarios and involving multiple stakeholders",
"version":"latest",
"title":"ETSI ISG CIM / NGSI-LD API",
"contact":{
"email":"NGSI-LD@etsi.org"
}
},
"externalDocs":{
"description":"Find out more about the ETSI ISG Context Information Management",
"description":"Create a new Entity within an NGSI-LD system",
"operationId":"createEntity",
"tags":[
"Context Information"
],
"requestBody":{
"required":true,
"content":{
"application/json;application/ld+json":{
"schema":{
"$ref":"#/components/schemas/Entity"
}
}
}
},
"responses":{
"201":{
"description":"Created. Contains the resource URI of the created Entity"
},
"400":{
"description":"Bad request",
"content":{
"application/json;application/ld+json":{
"schema":{
"$ref":"#/components/schemas/ProblemDetails"
}
}
}
},
"409":{
"description":"Already exists",
"content":{
"application/json;application/ld+json":{
"schema":{
"$ref":"#/components/schemas/ProblemDetails"
}
}
}
},
"422":{
"description":"Unprocessable Entity",
"content":{
"application/json;application/ld+json":{
"schema":{
"$ref":"#/components/schemas/ProblemDetails"
}
}
}
}
}
}
},
"/entities/{entityId}":{
"get":{
"description":"Retrieve an specific Entity from an NGSI-LD system. It's possible to specify the Entity attributes to be retrieved by using query parameters",