Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Marks items as arrays if required. #661

Closed
wants to merge 1 commit into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
1 change: 1 addition & 0 deletions schemas/base.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,7 @@
level: core
type: object
object_type: keyword
is_array: true
example: {env: production, application: foo-bar}
short: Custom key/value pairs.
description: >
Expand Down
3 changes: 3 additions & 0 deletions schemas/dns.yml
Original file line number Diff line number Diff line change
Expand Up @@ -48,6 +48,7 @@
- name: header_flags
level: extended
type: keyword
is_array: true
short: Array of DNS header flags.
description: >
Array of 2 letter DNS header flags.
Expand Down Expand Up @@ -129,6 +130,7 @@
- name: answers
level: extended
type: object
is_array: true
short: Array of DNS answers.
description: >
An array containing an object for each answer section returned by
Expand Down Expand Up @@ -190,6 +192,7 @@
- name: resolved_ip
level: extended
type: ip
is_array: true
short: Array containing all IPs seen in answers.data
description: >
Array containing all IPs seen in `answers.data`.
Expand Down
2 changes: 2 additions & 0 deletions schemas/process.yml
Original file line number Diff line number Diff line change
Expand Up @@ -122,6 +122,7 @@
- name: args
level: extended
type: keyword
is_array: true
short: Array of process arguments.
description: >
Array of process arguments, starting with the absolute path to the executable.
Expand All @@ -132,6 +133,7 @@
- name: parent.args
level: extended
type: keyword
is_array: true
short: Array of process arguments.
description: >
Array of process arguments.
Expand Down
4 changes: 4 additions & 0 deletions schemas/tls.yml
Original file line number Diff line number Diff line change
Expand Up @@ -69,6 +69,7 @@

- name: client.supported_ciphers
type: keyword
is_array: true
level: extended
description: Array of ciphers offered by the client during the client hello.
example: ["TLS_ECDHE_RSA_WITH_AES_256_GCM_SHA384", "TLS_ECDHE_ECDSA_WITH_AES_256_GCM_SHA384", "..."]
Expand Down Expand Up @@ -99,6 +100,7 @@

- name: client.certificate_chain
type: keyword
is_array: true
level: extended
description: >
Array of PEM-encoded certificates that make up the certificate chain offered by the client. This is
Expand Down Expand Up @@ -146,6 +148,7 @@

- name: server.supported_ciphers
type: keyword
is_array: true
level: extended
description: Array of ciphers offered by the server during the server hello.
example: ["TLS_ECDHE_RSA_WITH_AES_256_GCM_SHA384", "TLS_ECDHE_ECDSA_WITH_AES_256_GCM_SHA384", "..."]
Expand Down Expand Up @@ -176,6 +179,7 @@

- name: server.certificate_chain
type: keyword
is_array: true
level: extended
description: >
Array of PEM-encoded certificates that make up the certificate chain offered by the server. This is
Expand Down
1 change: 1 addition & 0 deletions schemas/user.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,7 @@
- name: id
level: core
type: keyword
is_array: true
description: >
One or multiple unique identifiers of the user.

Expand Down