Scott Christley
Scott Christley
The field name as plural suggests multiple, but the description is written as though single. Also the fact that it's a single text field suggests single. Though it seems like...
The current `DataProcessing` object is a sub-object within `Repertoire` so it's `data_processing_id` only needs to be unique within a repertoire. If we want to make `DataProcessing` a top-level object, or...
There's now a [python package](https://pypi.org/project/openapi-schema-validator/) that does schema validation. We should consider using it to replace ours. I'm using a similar [package](https://pypi.org/project/openapi-schema-validator/) for airr-js.
The V1.4 Schema introduces some significant structural schema changes, e.g. single value fields turned into objects. These are significant enough that programs will get runtime errors if the code assumes...
@javh Is it easy to do this and report all errors? It's very tedious having to fix one error at a time, I have to edit and run a conversion...
When building our [application ontology](https://github.com/airr-knowledge/ak-ontology) behind a proxy, robot gets an error when processing DOID. ``` curl -L http://purl.obolibrary.org/obo/DOID.owl --create-dirs -o tmp/DOID-download.owl --retry 4 --max-time 200 && \ robot --catalog...
JSON schema supports defining minimum and maximum values for numbers and integers. As these fields are physical quantities, they should always be positive. Adding these provide for better validation. I...
My understanding is one technique to avoid subject identification is by replacing dates with relative times from an arbitrary t0 time point and that's what we have done from most...