Properties
| Name | Type | Description |
|---|---|---|
| asn | object | |
| comment | object | |
| created_on | string | The RFC 3339 timestamp of when the item was created. |
| hostname | object | |
| id | object | |
| ip | object | |
| modified_on | string | The RFC 3339 timestamp of when the item was last modified. |
| redirect | object |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/lists_item",
"title": "lists_item",
"example": {
"comment": "Private IP address",
"created_on": "2020-01-01T08:00:00Z",
"id": "2c0fc9fa937b11eaa1b71c4d701ab86e",
"ip": "10.0.0.1",
"modified_on": "2020-01-10T14:00:00Z"
},
"oneOf": [
{
"$ref": "#/components/schemas/lists_item_ip"
},
{
"$ref": "#/components/schemas/lists_item_redirect"
},
{
"$ref": "#/components/schemas/lists_item_hostname"
},
{
"$ref": "#/components/schemas/lists_item_asn"
}
],
"properties": {
"asn": {
"$ref": "#/components/schemas/lists_item_asn"
},
"comment": {
"$ref": "#/components/schemas/lists_item_comment"
},
"created_on": {
"description": "The RFC 3339 timestamp of when the item was created.",
"example": "2020-01-01T08:00:00Z",
"readOnly": true,
"type": "string"
},
"hostname": {
"$ref": "#/components/schemas/lists_item_hostname"
},
"id": {
"$ref": "#/components/schemas/lists_list_id"
},
"ip": {
"$ref": "#/components/schemas/lists_item_ip"
},
"modified_on": {
"description": "The RFC 3339 timestamp of when the item was last modified.",
"example": "2020-01-10T14:00:00Z",
"readOnly": true,
"type": "string"
},
"redirect": {
"$ref": "#/components/schemas/lists_item_redirect"
}
},
"type": "object"
}