Skip to content

Commit

Permalink
Use a better naming convention
Browse files Browse the repository at this point in the history
  • Loading branch information
phacops committed Oct 5, 2023
1 parent d6ef8e9 commit cc0cbc1
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions schemas/ingest-spans.v1.schema.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"$schema": "http://json-schema.org/draft-07/schema#",
"type": "object",
"title": "span_kafka_message",
"title": "ingest_span_message",
"properties": {
"event_id": {
"type": "string"
Expand All @@ -16,14 +16,14 @@
"type": "integer"
},
"span": {
"$ref": "#/definitions/Span"
"$ref": "#/definitions/IngestSpan"
}
},
"required": ["organization_id", "project_id", "retention_days", "span"],
"definitions": {
"Span": {
"IngestSpan": {
"type": "object",
"title": "span",
"title": "ingest_span",
"additionalProperties": true,
"properties": {
"description": {
Expand Down

0 comments on commit cc0cbc1

Please sign in to comment.