46e409d4672b2e1f25aff740e027610ec2b6c2493eca26bef0ac9cc98c491aa473c107f9396870e5e9c9a04d2729b9251831af57bef049235082892f7399da 622 B

1234567891011121314151617181920212223242526272829303132
  1. {
  2. "type": "object",
  3. "additionalProperties": {
  4. "type": "object",
  5. "additionalProperties": false,
  6. "properties": {
  7. "groups": {
  8. "type": "array",
  9. "minitems": 1,
  10. "uniqueItems": true,
  11. "items": {
  12. "$ref": "definitions.json#/groupList"
  13. }
  14. },
  15. "status": {
  16. "enum": [
  17. "standard",
  18. "nonstandard",
  19. "experimental"
  20. ]
  21. },
  22. "mdn_url": {
  23. "type": "string",
  24. "pattern": "^https://developer.mozilla.org/docs/Web/CSS/"
  25. }
  26. },
  27. "required": [
  28. "groups",
  29. "status"
  30. ]
  31. }
  32. }