Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 8 additions & 8 deletions howso/types.amlg
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,6 @@
description "Specifies the observational mean absolute error for this feature. Use when the error value is already known."
)
data_type {ref "FeatureDataType"}
type_map {ref "JSONTypeMap"}
recursive_matching
(assoc
type "boolean"
Expand Down Expand Up @@ -415,11 +414,6 @@
"- `boolean`: Valid only for nominals."
)
)
JSONTypeMap
(assoc
type "assoc"
description "The map of original primitive types for JSON features."
)
FeatureOriginalType
(assoc
any_of [
Expand All @@ -433,7 +427,7 @@
{ref "FeatureOriginalTypeTimedelta"}
{ref "FeatureOriginalTypeTokenizableString"}
{ref "FeatureOriginalTypeObject"}
{ref "FeatureOriginalTypeJSONTypeMap"}
{ref "FeatureOriginalTypeContainer"}
]
description "Original data type details. Used by clients to determine how to serialize and deserialize feature data."
)
Expand Down Expand Up @@ -603,10 +597,16 @@
}
}
)
FeatureOriginalTypeJSONTypeMap
FeatureOriginalTypeContainer
(assoc
type "assoc"
indices {
data_type {
type "string"
enum ["container"]
required .true
description "The data type kind."
}
type_map {
type "assoc"
description "The map of original primitive types for JSON features."
Expand Down
Loading