-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathdata-extension-property-proposal.json
49 lines (49 loc) · 1.37 KB
/
data-extension-property-proposal.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
{
"$schema": "http://json-schema.org/schema#",
"$id": "https://reconciliation-api.github.io/specs/draft/schemas/data-extension-property-proposal.json",
"type": "object",
"description": "This schema can be used to validate the JSON response of a property proposal endpoint (part of the data extension feature).",
"properties": {
"properties": {
"type": "array",
"items": {
"type": "object",
"properties": {
"id": {
"type": "string",
"description": "Identifier of the suggested property"
},
"name": {
"type": "string",
"description": "Name of the suggested property"
},
"description": {
"type": "string",
"description": "An optional description which can be provided to disambiguate namesakes, providing more context."
},
"lang": {
"$ref": "lang.json"
},
"dir": {
"$ref": "dir.json"
}
},
"required": [
"id",
"name"
]
}
},
"type": {
"type": "string",
"description": "The identifier of the type for which those properties are suggested"
},
"limit": {
"type": "number",
"description": "The maximum number of results requested."
}
},
"required": [
"properties"
]
}