{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://nao1215.github.io/jsonize/schemas/kv/equals.json",
  "title": "kv/equals",
  "description": "any \"key=value\" listing, as a list of name/value pairs",
  "x-jsonize": {
    "definition": "kv/equals",
    "version": 1
  },
  "type": "array",
  "items": {
    "type": "object",
    "properties": {
      "name": {
        "type": "string"
      },
      "value": {
        "type": "string"
      }
    },
    "required": [
      "name",
      "value"
    ]
  }
}
