Skip to content

Commit 4e2f9a7

Browse files
authored
match latest spec v1.2.6 (#120)
1 parent 93e8cd7 commit 4e2f9a7

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

sigmf/__init__.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,9 @@
55
# SPDX-License-Identifier: LGPL-3.0-or-later
66

77
# version of this python module
8-
__version__ = "1.2.14"
8+
__version__ = "1.2.15"
99
# matching version of the SigMF specification
10-
__specification__ = "1.2.5"
10+
__specification__ = "1.2.6"
1111

1212
from . import archive, archivereader, error, schema, sigmffile, utils, validate
1313
from .archive import SigMFArchive

sigmf/schema-meta.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"$id": "https://raw.githubusercontent.com/sigmf/SigMF/v1.2.5/sigmf-schema.json",
2+
"$id": "https://raw.githubusercontent.com/sigmf/SigMF/v1.2.6/sigmf-schema.json",
33
"$schema": "https://json-schema.org/draft/2020-12/schema",
44
"title": "Schema for SigMF Meta Files",
55
"description": "SigMF specifies a way to describe sets of recorded digital signal samples with metadata written in JSON. SigMF can be used to describe general information about a collection of samples, the characteristics of the system that generated the samples, features of signals themselves, and the relationship between different recordings.",
@@ -30,7 +30,7 @@
3030
},
3131
"core:sample_rate": {
3232
"description": "The sample rate of the signal in samples per second.",
33-
"minimum": 1,
33+
"exclusiveMinimum": 0,
3434
"maximum": 1000000000000,
3535
"type": "number"
3636
},

0 commit comments

Comments
 (0)