{
  "$schema":"https://json-schema.org/draft/2020-12/schema",
  "$id":"https://customex.dev/schemas/recipe-0.1.json",
  "title":"Customex Community View Recipe",
  "type":"object",
  "required":["schemaVersion","id","name","description","intentExamples","preferences","target","author"],
  "properties":{
    "schemaVersion":{"const":"0.1"},
    "id":{"type":"string","pattern":"^[a-z][a-z0-9-]*$"},
    "name":{"type":"string","maxLength":120},
    "description":{"type":"string","maxLength":500},
    "intentExamples":{"type":"array","minItems":1,"maxItems":8,"items":{"type":"string","maxLength":240}},
    "preferences":{"type":"object","properties":{"includeTopics":{"type":"array","items":{"type":"string","maxLength":80},"uniqueItems":true},"excludeTopics":{"type":"array","items":{"type":"string","maxLength":80},"uniqueItems":true},"theme":{"type":"string","maxLength":80},"layout":{"type":"string","maxLength":80},"density":{"type":"string","maxLength":80}},"additionalProperties":false},
    "target":{"type":"object","properties":{"siteName":{"type":"string","maxLength":160},"manifestVersion":{"const":"0.1"}},"additionalProperties":false},
    "author":{"type":"string","maxLength":120}
  },
  "additionalProperties":false
}