Summary

Description
All games have different features and functionality introduced (and sometimes removed) over time. This is a list of those features, used to enable/disable site functionality.
Data path
resources/data/feature.csv
Schema
https://poketools.gamestuff.info/data/schema/feature.json

Fields

identifier

A machine-usable name for the entity. This is usually a munged version of the entity name. An identifier must consist only of lowercase ASCII characters, 0-9, and/or a hyphen.

i.e. anything unique to the entity matching the regular expression ^[a-z0-9\-]+$ (Test it here)

type

string

pattern

^[a-z0-9\-]+$ (Test)

required

description

A full description of the entity, usually used on entity pages.

Textual content formatted with Markdown. See the CommonMark Spec for details.

type

string

required

JSON Schema

View raw

{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "$id": "https://poketools.gamestuff.info/data/schema/feature.json",
  "title": "Game Feature",
  "description": "All games have different features and functionality introduced (and sometimes removed) over time.  This is a list of those features, used to enable/disable site functionality.",
  "type": "object",
  "properties": {
    "identifier": {
      "$ref": "types/identifier.json"
    },
    "name": {
      "$ref": "types/name.json"
    },
    "description": {
      "$ref": "types/markdown.json"
    }
  },
  "additionalProperties": false,
  "required": [
    "identifier",
    "description"
  ]
}