{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/gradient-stop.json",
  "title": "Color Stop",
  "description": "Gradient stop positions, being a ratio along the gradient's axis. Start is 0, end is 1.",
  "type": "object",
  "allOf": [
    {
      "$ref": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/token.json"
    }
  ],
  "properties": {
    "$schema": {
      "const": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/gradient-stop.json"
    },
    "value": {
      "type": "number",
      "minimum": 0,
      "maximum": 1
    },
    "component": {},
    "private": {},
    "deprecated": {},
    "deprecated_comment": {},
    "uuid": {}
  }
}
