blob: 56d268ce9dfdc7397c223275504102480c1e8941 [file] [log] [blame]
Aharoni, Pavel (pa0916)ca3cb012018-10-22 15:29:57 +03001{
2 "$schema": "http://json-schema.org/draft-04/schema#",
3 "description": "fields describing the SDC entity being operated on by the request",
4 "type": "object",
5 "properties": {
6 "modelCustomizationName": {
7 "description": "reference to the customized set of parameters associated with a model in a given service context",
8 "type": "string"
9 },
10 "modelCustomizationId": {
11 "description": "reference to the customized set of parameters associated with a model in a given service context",
12 "type": "string"
13 },
14 "modelInvariantId": {
15 "description": "Invariant UUID for the model name, irrespective of the version, as defined in SDC--authoritative",
16 "type": "string",
17 "pattern": "^[a-fA-F0-9]{8}-[a-fA-F0-9]{4}-[a-fA-F0-9]{4}-[a-fA-F0-9]{4}-[a-fA-F0-9]{12}$"
18 },
19 "modelVersionId": {
20 "description": "Version id for version",
21 "type": "string"
22 },
23 "modelName": {
24 "description": "name of the model as defined in SDC--not authoritative",
25 "type": "string"
26 },
27 "modelNameVersionId": {
28 "description": "UUID for the model name and version combination as defined in SDC--authoritative",
29 "type": "string",
30 "pattern": "^[a-fA-F0-9]{8}-[a-fA-F0-9]{4}-[a-fA-F0-9]{4}-[a-fA-F0-9]{4}-[a-fA-F0-9]{12}$"
31 },
32 "modelType": {
33 "description": "short description of the entity being operated on",
34 "type": "string"
35 },
36 "modelVersion": {
37 "description": "the version of the model as defined in SDC--not authoritative",
38 "type": "string"
39 }
40 },
41 "required": ["modelType"]
42}