RFC3339 Timestamp to view all requested webproperties at a specific point in time. Must be a valid RFC3339 string. Ensure that you suffix the date with T00:00:00Z or a specific time
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "https://raw.githubusercontent.com/api-evangelist/censys/refs/heads/main/json-schema/platform-assetwebpropertylistinputbody-schema.json",
"title": "AssetWebpropertyListInputBody",
"description": "AssetWebpropertyListInputBody schema from Censys Platform API",
"type": "object",
"properties": {
"at_time": {
"description": "RFC3339 Timestamp to view all requested webproperties at a specific point in time. Must be a valid RFC3339 string. Ensure that you suffix the date with T00:00:00Z or a specific time",
"examples": [
"2025-01-01T00:00:00Z"
],
"format": "date-time",
"type": "string"
},
"webproperty_ids": {
"description": "A list of web property identifiers.",
"examples": [
"platform.censys.io:80"
],
"items": {
"type": "string"
},
"maxItems": 100,
"minItems": 1,
"type": [
"array",
"null"
]
}
},
"required": [
"webproperty_ids"
],
"additionalProperties": false
}