Skip to content

Fish Counts Schema

{
"$schema": "http://json-schema.org/draft-07/schema#",
"title": "Fish Counts Daily Array",
"type": "array",
"items": {
"type": "object",
"properties": {
"river": { "type": "string" },
"date": { "type": "string", "format": "date" },
"count": { "type": "integer" }
}
}
}