Skip to content

Commit 0644639

Browse files
committed
feat: relax attribute schema
1 parent 1a28ed6 commit 0644639

File tree

1 file changed

+16
-2
lines changed

1 file changed

+16
-2
lines changed

schemas/ingest-spans.v1.schema.json

Lines changed: 16 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -149,10 +149,24 @@
149149
"properties": {
150150
"type": {
151151
"type": "string",
152-
"enum": ["boolean", "integer", "double", "string"]
152+
"enum": [
153+
"boolean",
154+
"integer",
155+
"double",
156+
"string",
157+
"array",
158+
"object"
159+
]
153160
},
154161
"value": {
155-
"type": ["number", "null", "string", "boolean"]
162+
"type": [
163+
"number",
164+
"null",
165+
"string",
166+
"boolean",
167+
"array",
168+
"object"
169+
]
156170
}
157171
},
158172
"required": ["type", "value"]

0 commit comments

Comments
 (0)