PHP Classes

File: schema/reportto.json

Recommend this page to a friend!
  Classes of Scott Arciszewski   PHP CSP Header Builder   schema/reportto.json   Download  
File: schema/reportto.json
Role: Auxiliary data
Content type: text/plain
Description: Auxiliary data
Class: PHP CSP Header Builder
Generate Content Security Policy headers
Author: By
Last change:
Date: 5 months ago
Size: 1,004 bytes
 

Contents

Class file image Download
{ "$schema": "http://json-schema.org/draft-06/schema#", "$ref": "#/definitions/ReportTo", "definitions": { "ReportTo": { "type": "object", "additionalProperties": false, "properties": { "group": { "type": "string" }, "max_age": { "type": "integer" }, "endpoints": { "type": "array", "items": { "$ref": "#/definitions/Endpoint" } }, "include_subdomains": { "type": "boolean" } }, "required": [ "endpoints", "group", "max_age" ], "title": "ReportTo" }, "Endpoint": { "type": "object", "additionalProperties": false, "properties": { "url": { "type": "string", "format": "uri", "qt-uri-protocols": [ "https" ] } }, "required": [ "url" ], "title": "Endpoint" } } }