Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Open sidebar
NGSI Linked Data
NGSI-LD
Commits
3fc37d62
Commit
3fc37d62
authored
Nov 13, 2018
by
canterafonsj
Browse files
Batch Operation Result
parent
1282fb4d
Changes
3
Hide whitespace changes
Inline
Side-by-side
schema/BatchOperationResult.json
0 → 100644
View file @
3fc37d62
{
"$schema"
:
"http://json-schema.org/schema#"
,
"id"
:
"https://uri.etsi.org/ngsi-ld/schema/BatchOperationResult.json"
,
"title"
:
"NGSI-LD Batch Operation Result"
,
"description"
:
"NGSI-LD Batch Operation Result"
,
"definitions"
:
{
"BatchEntityError"
:
{
"entityId"
:
{
"type"
:
"string"
,
"format"
:
"uri"
},
"error"
:
{
"$ref"
:
"https://forge.etsi.org/gitlab/NGSI-LD/NGSI-LD/raw/master/schema/common.json#/definitions/ProblemDetails"
}
}
},
"type"
:
"object"
,
"properties"
:
{
"success"
:
{
"type"
:
"array"
,
"items"
:
{
"type"
:
"string"
,
"format"
:
"uri"
}
},
"error"
:
{
"type"
:
"array"
,
"items"
:
{
"$ref"
:
"#/definitions/BatchEntityError"
}
}
}
}
schema/common.json
View file @
3fc37d62
...
...
@@ -77,7 +77,27 @@
"format"
:
"regex"
}
},
"required"
:
[
"type"
]
"required"
:
[
"type"
]
}
},
"ProblemDetails"
:
{
"type"
:
"object"
,
"properties"
:
{
"type"
:
{
"type"
:
"string"
,
"format"
:
"uri"
},
"title"
:
{
"type"
:
"string"
},
"detail"
:
{
"type"
:
"string"
}
},
"required"
:
[
"type"
]
}
}
scripts/validate_schema.sh
View file @
3fc37d62
...
...
@@ -14,3 +14,4 @@ ajv compile -s $SCHEMAS/ContextSourceNotification.json -r $SCHEMAS/common.json -
ajv compile
-s
$SCHEMAS
/EntityList.json
-r
$SCHEMAS
/common.json
-r
$SCHEMAS
/geometry-schema.json
-r
$SCHEMAS
/Entity.json
ajv compile
-s
$SCHEMAS
/BatchOperationResult.json
-r
$SCHEMAS
/common.json
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment