Bug 1134852 Comment 0 Edit History

Note: The actual edited comment in the bug view page will always show the original commenter’s name and original timestamp.

Once we have recipes in their own file (bug 1134850), we should update them from a secure server periodically.
Once we have recipes in their own file (bug 1134850), we should update them from a secure server periodically.

JSON schema:
```json
{
  "$schema": "http://json-schema.org/draft-04/schema#",
  "type": "object",
  "properties": {
    "siteRecipes": {
      "type": "array",
      "items": {
        "type": "object",
        "properties": {
          "description": {
            "type": "string"
          },
          "hosts": {
            "type": "array",
            "items": {
              "type": "string"
            }
          },
          "passwordSelector": {
            "type": "string"
          },
          "usernameSelector": {
            "type": "string"
          },
          "pathRegex": {
            "type": "string"
          },
          "notUsernameSelector": {
            "type": "string"
          },
          "notPasswordSelector": {
            "type": "string"
          }
        },
        "required": [
          "description",
          "hosts"
        ]
      }
    }
  },
  "required": [
    "siteRecipes"
  ]
}
```

Back to Bug 1134852 Comment 0