{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "type": "object",
  "properties": {
    "seed": {
      "type": "string"
    },
    "flip": {
      "type": "boolean",
      "default": false
    },
    "rotate": {
      "type": "integer",
      "minimum": 0,
      "maximum": 360,
      "default": 0
    },
    "scale": {
      "type": "integer",
      "minimum": 0,
      "maximum": 200,
      "default": 100
    },
    "radius": {
      "type": "integer",
      "minimum": 0,
      "maximum": 50,
      "default": 0
    },
    "size": {
      "type": "integer",
      "minimum": 1
    },
    "backgroundColor": {
      "type": "array",
      "items": {
        "type": "string",
        "pattern": "^(transparent|[a-fA-F0-9]{6})$"
      },
      "default": [
        "fcbc34",
        "d84be5",
        "d9915b",
        "f6d594",
        "059ff2",
        "71cf62"
      ]
    },
    "backgroundType": {
      "type": "array",
      "items": {
        "type": "string",
        "enum": [
          "solid",
          "gradientLinear"
        ]
      },
      "default": [
        "solid"
      ]
    },
    "backgroundRotation": {
      "type": "array",
      "items": {
        "type": "integer",
        "minimum": -360,
        "maximum": 360
      },
      "default": [
        0,
        360
      ]
    },
    "translateX": {
      "type": "integer",
      "minimum": -100,
      "maximum": 100,
      "default": 0
    },
    "translateY": {
      "type": "integer",
      "minimum": -100,
      "maximum": 100,
      "default": 0
    },
    "clip": {
      "type": "boolean",
      "default": true
    },
    "randomizeIds": {
      "type": "boolean",
      "default": false
    },
    "eyes": {
      "type": "array",
      "items": {
        "type": "string",
        "enum": [
          "sad",
          "tearDrop",
          "pissed",
          "cute",
          "wink",
          "wink2",
          "plain",
          "glasses",
          "closed",
          "love",
          "stars",
          "shades",
          "closed2",
          "crying",
          "sleepClose"
        ]
      },
      "default": [
        "sad",
        "tearDrop",
        "pissed",
        "cute",
        "wink",
        "wink2",
        "plain",
        "glasses",
        "closed",
        "love",
        "stars",
        "shades",
        "closed2",
        "crying",
        "sleepClose"
      ]
    },
    "mouth": {
      "type": "array",
      "items": {
        "type": "string",
        "enum": [
          "plain",
          "lilSmile",
          "sad",
          "shy",
          "cute",
          "wideSmile",
          "shout",
          "smileTeeth",
          "smileLol",
          "pissed",
          "drip",
          "tongueOut",
          "kissHeart",
          "sick",
          "faceMask"
        ]
      },
      "default": [
        "plain",
        "lilSmile",
        "sad",
        "shy",
        "cute",
        "wideSmile",
        "shout",
        "smileTeeth",
        "smileLol",
        "pissed",
        "drip",
        "tongueOut",
        "kissHeart",
        "sick",
        "faceMask"
      ]
    }
  }
}