Search documentation
karat

+

K

User Documentation ↗

Load Object Set

POST/api/v2/ontologies/{ontology}/objectSets/loadObjects

Load the ontology objects present in the ObjectSet from the provided object set definition.

For Object Storage V1 backed objects, this endpoint returns a maximum of 10,000 objects. After 10,000 objects have been returned and if more objects are available, attempting to load another page will result in an ObjectsExceededLimit error being returned. There is no limit on Object Storage V2 backed objects.

Note that null value properties will not be returned.

Third-party applications using this endpoint via OAuth2 must request the following operation scope: api:ontologies-read.

Path parameters

ontology
string

The API name of the ontology. To find the API name, use the List ontologies endpoint or check the Ontology Manager.

Query parameters

artifactRepository
string
optional

The repository associated with a marketplace installation.

packageName
string
optional

The package name of the generated SDK.

Request body

LoadObjectSetRequestV2
object

Represents the API POST body when loading an ObjectSet.

Hide children

Hide children

objectSet
union

Represents the definition of an ObjectSet in the Ontology.

Show children

Show children

reference
object
optional
Show children

Show children

reference
string
filter
object
optional
Show children

Show children

objectSet
union

Represents the definition of an ObjectSet in the Ontology.

Show children

Show children

reference
object
optional
Show children

Show children

reference
string
filter
object
optional
Show children

Show children

objectSet
union

Represents the definition of an ObjectSet in the Ontology.

where
union
Show children

Show children

or
object
optional

Returns objects where at least 1 query is satisfied.

Show children

Show children

value
list<SearchJsonQueryV2>
optional
Show children

Show children

SearchJsonQueryV2
union
Show children

Show children

or
object
optional

Returns objects where at least 1 query is satisfied.

Show children

Show children

value
list<SearchJsonQueryV2>
optional
Show children

Show children

SearchJsonQueryV2
union
in
object
optional

Returns objects where the specified field equals any of the provided values.

Show children

Show children

field
string

The name of the property in the API. To find the API name for your property, use the Get object type endpoint or check the Ontology Manager.

value
list<PropertyValue>
optional
Show children

Show children

PropertyValue
any

Represents the value of a property in the following format.

TypeJSON encodingExample
Arrayarray["alpha", "bravo", "charlie"]
AttachmentJSON encoded AttachmentProperty object{"rid":"ri.blobster.main.attachment.2f944bae-5851-4204-8615-920c969a9f2e"}
Booleanbooleantrue
Bytenumber31
DateISO 8601 extended local date string"2021-05-01"
Decimalstring"2.718281828"
Doublenumber3.14159265
Floatnumber3.14159265
GeoPointgeojson{"type":"Point","coordinates":[102.0,0.5]}
GeoShapegeojson{"type":"LineString","coordinates":[[102.0,0.0],[103.0,1.0],[104.0,0.0],[105.0,1.0]]}
Integernumber238940
Longstring"58319870951433"
Shortnumber8739
Stringstring"Call me Ishmael"
TimestampISO 8601 extended offset date-time string in UTC zone"2021-01-04T05:00:00Z"

Note that for backwards compatibility, the Boolean, Byte, Double, Float, Integer, and Short types can also be encoded as JSON strings.

doesNotIntersectPolygon
object
optional

Returns objects where the specified field does not intersect the polygon provided.

Show children

Show children

field
string

The name of the property in the API. To find the API name for your property, use the Get object type endpoint or check the Ontology Manager.

value
union
Show children

Show children

Polygon
object
optional
Show children

Show children

coordinates
list<LinearRing>
optional
Show children

Show children

LinearRing
list<Position>

A linear ring is a closed LineString with four or more positions.

The first and last positions are equivalent, and they MUST contain identical values; their representation SHOULD also be identical.

A linear ring is the boundary of a surface or the boundary of a hole in a surface.

A linear ring MUST follow the right-hand rule with respect to the area it bounds, i.e., exterior rings are counterclockwise, and holes are clockwise.

Show children

Show children

Position
list<Coordinate>

GeoJSon fundamental geometry construct.

A position is an array of numbers. There MUST be two or more elements. The first two elements are longitude and latitude, precisely in that order and using decimal numbers. Altitude or elevation MAY be included as an optional third element.

Implementations SHOULD NOT extend positions beyond three elements because the semantics of extra elements are unspecified and ambiguous. Historically, some implementations have used a fourth element to carry a linear referencing measure (sometimes denoted as "M") or a numerical timestamp, but in most situations a parser will not be able to properly interpret these values. The interpretation and meaning of additional elements is beyond the scope of this specification, and additional elements MAY be ignored by parsers.

Show children

Show children

Coordinate
number
bbox
list<Coordinate>
optional

A GeoJSON object MAY have a member named "bbox" to include information on the coordinate range for its Geometries, Features, or FeatureCollections. The value of the bbox member MUST be an array of length 2*n where n is the number of dimensions represented in the contained geometries, with all axes of the most southwesterly point followed by all axes of the more northeasterly point. The axes order of a bbox follows the axes order of geometries.

Show children

Show children

Coordinate
number
lt
object
optional

Returns objects where the specified field is less than a value.

Show children

Show children

field
string

The name of the property in the API. To find the API name for your property, use the Get object type endpoint or check the Ontology Manager.

value
any

Represents the value of a property in the following format.

TypeJSON encodingExample
Arrayarray["alpha", "bravo", "charlie"]
AttachmentJSON encoded AttachmentProperty object{"rid":"ri.blobster.main.attachment.2f944bae-5851-4204-8615-920c969a9f2e"}
Booleanbooleantrue
Bytenumber31
DateISO 8601 extended local date string"2021-05-01"
Decimalstring"2.718281828"
Doublenumber3.14159265
Floatnumber3.14159265
GeoPointgeojson{"type":"Point","coordinates":[102.0,0.5]}
GeoShapegeojson{"type":"LineString","coordinates":[[102.0,0.0],[103.0,1.0],[104.0,0.0],[105.0,1.0]]}
Integernumber238940
Longstring"58319870951433"
Shortnumber8739
Stringstring"Call me Ishmael"
TimestampISO 8601 extended offset date-time string in UTC zone"2021-01-04T05:00:00Z"

Note that for backwards compatibility, the Boolean, Byte, Double, Float, Integer, and Short types can also be encoded as JSON strings.

doesNotIntersectBoundingBox
object
optional

Returns objects where the specified field does not intersect the bounding box provided.

Show children

Show children

field
string

The name of the property in the API. To find the API name for your property, use the Get object type endpoint or check the Ontology Manager.

value
object

The top left and bottom right coordinate points that make up the bounding box.

Show children

Show children

topLeft
union
Show children

Show children

Point
object
optional
Show children

Show children

coordinates
list<Coordinate>
optional

GeoJSon fundamental geometry construct.

A position is an array of numbers. There MUST be two or more elements. The first two elements are longitude and latitude, precisely in that order and using decimal numbers. Altitude or elevation MAY be included as an optional third element.

Implementations SHOULD NOT extend positions beyond three elements because the semantics of extra elements are unspecified and ambiguous. Historically, some implementations have used a fourth element to carry a linear referencing measure (sometimes denoted as "M") or a numerical timestamp, but in most situations a parser will not be able to properly interpret these values. The interpretation and meaning of additional elements is beyond the scope of this specification, and additional elements MAY be ignored by parsers.

Show children

Show children

Coordinate
number
bbox
list<Coordinate>
optional

A GeoJSON object MAY have a member named "bbox" to include information on the coordinate range for its Geometries, Features, or FeatureCollections. The value of the bbox member MUST be an array of length 2*n where n is the number of dimensions represented in the contained geometries, with all axes of the most southwesterly point followed by all axes of the more northeasterly point. The axes order of a bbox follows the axes order of geometries.

Show children

Show children

Coordinate
number
bottomRight
union
Show children

Show children

Point
object
optional
Show children

Show children

coordinates
list<Coordinate>
optional

GeoJSon fundamental geometry construct.

A position is an array of numbers. There MUST be two or more elements. The first two elements are longitude and latitude, precisely in that order and using decimal numbers. Altitude or elevation MAY be included as an optional third element.

Implementations SHOULD NOT extend positions beyond three elements because the semantics of extra elements are unspecified and ambiguous. Historically, some implementations have used a fourth element to carry a linear referencing measure (sometimes denoted as "M") or a numerical timestamp, but in most situations a parser will not be able to properly interpret these values. The interpretation and meaning of additional elements is beyond the scope of this specification, and additional elements MAY be ignored by parsers.

Show children

Show children

Coordinate
number
bbox
list<Coordinate>
optional

A GeoJSON object MAY have a member named "bbox" to include information on the coordinate range for its Geometries, Features, or FeatureCollections. The value of the bbox member MUST be an array of length 2*n where n is the number of dimensions represented in the contained geometries, with all axes of the most southwesterly point followed by all axes of the more northeasterly point. The axes order of a bbox follows the axes order of geometries.

Show children

Show children

Coordinate
number
eq
object
optional

Returns objects where the specified field is equal to a value.

Show children

Show children

field
string

The name of the property in the API. To find the API name for your property, use the Get object type endpoint or check the Ontology Manager.

value
any

Represents the value of a property in the following format.

TypeJSON encodingExample
Arrayarray["alpha", "bravo", "charlie"]
AttachmentJSON encoded AttachmentProperty object{"rid":"ri.blobster.main.attachment.2f944bae-5851-4204-8615-920c969a9f2e"}
Booleanbooleantrue
Bytenumber31
DateISO 8601 extended local date string"2021-05-01"
Decimalstring"2.718281828"
Doublenumber3.14159265
Floatnumber3.14159265
GeoPointgeojson{"type":"Point","coordinates":[102.0,0.5]}
GeoShapegeojson{"type":"LineString","coordinates":[[102.0,0.0],[103.0,1.0],[104.0,0.0],[105.0,1.0]]}
Integernumber238940
Longstring"58319870951433"
Shortnumber8739
Stringstring"Call me Ishmael"
TimestampISO 8601 extended offset date-time string in UTC zone"2021-01-04T05:00:00Z"

Note that for backwards compatibility, the Boolean, Byte, Double, Float, Integer, and Short types can also be encoded as JSON strings.

containsAllTerms
object
optional

Returns objects where the specified field contains all of the whitespace separated words in any order in the provided value. This query supports fuzzy matching.

Show children

Show children

field
string

The name of the property in the API. To find the API name for your property, use the Get object type endpoint or check the Ontology Manager.

value
string
fuzzy
boolean
optional

Setting fuzzy to true allows approximate matching in search queries that support it.

gt
object
optional

Returns objects where the specified field is greater than a value.

Show children

Show children

field
string

The name of the property in the API. To find the API name for your property, use the Get object type endpoint or check the Ontology Manager.

value
any

Represents the value of a property in the following format.

TypeJSON encodingExample
Arrayarray["alpha", "bravo", "charlie"]
AttachmentJSON encoded AttachmentProperty object{"rid":"ri.blobster.main.attachment.2f944bae-5851-4204-8615-920c969a9f2e"}
Booleanbooleantrue
Bytenumber31
DateISO 8601 extended local date string"2021-05-01"
Decimalstring"2.718281828"
Doublenumber3.14159265
Floatnumber3.14159265
GeoPointgeojson{"type":"Point","coordinates":[102.0,0.5]}
GeoShapegeojson{"type":"LineString","coordinates":[[102.0,0.0],[103.0,1.0],[104.0,0.0],[105.0,1.0]]}
Integernumber238940
Longstring"58319870951433"
Shortnumber8739
Stringstring"Call me Ishmael"
TimestampISO 8601 extended offset date-time string in UTC zone"2021-01-04T05:00:00Z"

Note that for backwards compatibility, the Boolean, Byte, Double, Float, Integer, and Short types can also be encoded as JSON strings.

withinDistanceOf
object
optional

Returns objects where the specified field contains a point within the distance provided of the center point.

Show children

Show children

field
string

The name of the property in the API. To find the API name for your property, use the Get object type endpoint or check the Ontology Manager.

value
object

The coordinate point to use as the center of the distance query.

Show children

Show children

center
union
Show children

Show children

Point
object
optional
Show children

Show children

coordinates
list<Coordinate>
optional

GeoJSon fundamental geometry construct.

A position is an array of numbers. There MUST be two or more elements. The first two elements are longitude and latitude, precisely in that order and using decimal numbers. Altitude or elevation MAY be included as an optional third element.

Implementations SHOULD NOT extend positions beyond three elements because the semantics of extra elements are unspecified and ambiguous. Historically, some implementations have used a fourth element to carry a linear referencing measure (sometimes denoted as "M") or a numerical timestamp, but in most situations a parser will not be able to properly interpret these values. The interpretation and meaning of additional elements is beyond the scope of this specification, and additional elements MAY be ignored by parsers.

Show children

Show children

Coordinate
number
bbox
list<Coordinate>
optional

A GeoJSON object MAY have a member named "bbox" to include information on the coordinate range for its Geometries, Features, or FeatureCollections. The value of the bbox member MUST be an array of length 2*n where n is the number of dimensions represented in the contained geometries, with all axes of the most southwesterly point followed by all axes of the more northeasterly point. The axes order of a bbox follows the axes order of geometries.

Show children

Show children

Coordinate
number
distance
object

A measurement of distance.

Show children

Show children

value
number
unit
string (enum)

Enum values: MILLIMETERS, CENTIMETERS, METERS, KILOMETERS, INCHES, FEET, YARDS, MILES, NAUTICAL_MILES

withinBoundingBox
object
optional

Returns objects where the specified field contains a point within the bounding box provided.

Show children

Show children

field
string

The name of the property in the API. To find the API name for your property, use the Get object type endpoint or check the Ontology Manager.

value
object

The top left and bottom right coordinate points that make up the bounding box.

Show children

Show children

topLeft
union
Show children

Show children

Point
object
optional
Show children

Show children

coordinates
list<Coordinate>
optional

GeoJSon fundamental geometry construct.

A position is an array of numbers. There MUST be two or more elements. The first two elements are longitude and latitude, precisely in that order and using decimal numbers. Altitude or elevation MAY be included as an optional third element.

Implementations SHOULD NOT extend positions beyond three elements because the semantics of extra elements are unspecified and ambiguous. Historically, some implementations have used a fourth element to carry a linear referencing measure (sometimes denoted as "M") or a numerical timestamp, but in most situations a parser will not be able to properly interpret these values. The interpretation and meaning of additional elements is beyond the scope of this specification, and additional elements MAY be ignored by parsers.

Show children

Show children

Coordinate
number
bbox
list<Coordinate>
optional

A GeoJSON object MAY have a member named "bbox" to include information on the coordinate range for its Geometries, Features, or FeatureCollections. The value of the bbox member MUST be an array of length 2*n where n is the number of dimensions represented in the contained geometries, with all axes of the most southwesterly point followed by all axes of the more northeasterly point. The axes order of a bbox follows the axes order of geometries.

Show children

Show children

Coordinate
number
bottomRight
union
Show children

Show children

Point
object
optional
Show children

Show children

coordinates
list<Coordinate>
optional

GeoJSon fundamental geometry construct.

A position is an array of numbers. There MUST be two or more elements. The first two elements are longitude and latitude, precisely in that order and using decimal numbers. Altitude or elevation MAY be included as an optional third element.

Implementations SHOULD NOT extend positions beyond three elements because the semantics of extra elements are unspecified and ambiguous. Historically, some implementations have used a fourth element to carry a linear referencing measure (sometimes denoted as "M") or a numerical timestamp, but in most situations a parser will not be able to properly interpret these values. The interpretation and meaning of additional elements is beyond the scope of this specification, and additional elements MAY be ignored by parsers.

Show children

Show children

Coordinate
number
bbox
list<Coordinate>
optional

A GeoJSON object MAY have a member named "bbox" to include information on the coordinate range for its Geometries, Features, or FeatureCollections. The value of the bbox member MUST be an array of length 2*n where n is the number of dimensions represented in the contained geometries, with all axes of the most southwesterly point followed by all axes of the more northeasterly point. The axes order of a bbox follows the axes order of geometries.

Show children

Show children

Coordinate
number
contains
object
optional

Returns objects where the specified array contains a value.

Show children

Show children

field
string

The name of the property in the API. To find the API name for your property, use the Get object type endpoint or check the Ontology Manager.

value
any

Represents the value of a property in the following format.

TypeJSON encodingExample
Arrayarray["alpha", "bravo", "charlie"]
AttachmentJSON encoded AttachmentProperty object{"rid":"ri.blobster.main.attachment.2f944bae-5851-4204-8615-920c969a9f2e"}
Booleanbooleantrue
Bytenumber31
DateISO 8601 extended local date string"2021-05-01"
Decimalstring"2.718281828"
Doublenumber3.14159265
Floatnumber3.14159265
GeoPointgeojson{"type":"Point","coordinates":[102.0,0.5]}
GeoShapegeojson{"type":"LineString","coordinates":[[102.0,0.0],[103.0,1.0],[104.0,0.0],[105.0,1.0]]}
Integernumber238940
Longstring"58319870951433"
Shortnumber8739
Stringstring"Call me Ishmael"
TimestampISO 8601 extended offset date-time string in UTC zone"2021-01-04T05:00:00Z"

Note that for backwards compatibility, the Boolean, Byte, Double, Float, Integer, and Short types can also be encoded as JSON strings.

not
object
optional

Returns objects where the query is not satisfied.

Show children

Show children

value
union
intersectsBoundingBox
object
optional

Returns objects where the specified field intersects the bounding box provided.

Show children

Show children

field
string

The name of the property in the API. To find the API name for your property, use the Get object type endpoint or check the Ontology Manager.

value
object

The top left and bottom right coordinate points that make up the bounding box.

Show children

Show children

topLeft
union
Show children

Show children

Point
object
optional
Show children

Show children

coordinates
list<Coordinate>
optional

GeoJSon fundamental geometry construct.

A position is an array of numbers. There MUST be two or more elements. The first two elements are longitude and latitude, precisely in that order and using decimal numbers. Altitude or elevation MAY be included as an optional third element.

Implementations SHOULD NOT extend positions beyond three elements because the semantics of extra elements are unspecified and ambiguous. Historically, some implementations have used a fourth element to carry a linear referencing measure (sometimes denoted as "M") or a numerical timestamp, but in most situations a parser will not be able to properly interpret these values. The interpretation and meaning of additional elements is beyond the scope of this specification, and additional elements MAY be ignored by parsers.

Show children

Show children

Coordinate
number
bbox
list<Coordinate>
optional

A GeoJSON object MAY have a member named "bbox" to include information on the coordinate range for its Geometries, Features, or FeatureCollections. The value of the bbox member MUST be an array of length 2*n where n is the number of dimensions represented in the contained geometries, with all axes of the most southwesterly point followed by all axes of the more northeasterly point. The axes order of a bbox follows the axes order of geometries.

Show children

Show children

Coordinate
number
bottomRight
union
Show children

Show children

Point
object
optional
Show children

Show children

coordinates
list<Coordinate>
optional

GeoJSon fundamental geometry construct.

A position is an array of numbers. There MUST be two or more elements. The first two elements are longitude and latitude, precisely in that order and using decimal numbers. Altitude or elevation MAY be included as an optional third element.

Implementations SHOULD NOT extend positions beyond three elements because the semantics of extra elements are unspecified and ambiguous. Historically, some implementations have used a fourth element to carry a linear referencing measure (sometimes denoted as "M") or a numerical timestamp, but in most situations a parser will not be able to properly interpret these values. The interpretation and meaning of additional elements is beyond the scope of this specification, and additional elements MAY be ignored by parsers.

Show children

Show children

Coordinate
number
bbox
list<Coordinate>
optional

A GeoJSON object MAY have a member named "bbox" to include information on the coordinate range for its Geometries, Features, or FeatureCollections. The value of the bbox member MUST be an array of length 2*n where n is the number of dimensions represented in the contained geometries, with all axes of the most southwesterly point followed by all axes of the more northeasterly point. The axes order of a bbox follows the axes order of geometries.

Show children

Show children

Coordinate
number
and
object
optional

Returns objects where every query is satisfied.

Show children

Show children

value
list<SearchJsonQueryV2>
optional
Show children

Show children

SearchJsonQueryV2
union
isNull
object
optional

Returns objects based on the existence of the specified field.

Show children

Show children

field
string

The name of the property in the API. To find the API name for your property, use the Get object type endpoint or check the Ontology Manager.

value
boolean
containsAllTermsInOrderPrefixLastTerm
object
optional

Returns objects where the specified field contains all of the terms in the order provided, but they do have to be adjacent to each other. The last term can be a partial prefix match.

Show children

Show children

field
string

The name of the property in the API. To find the API name for your property, use the Get object type endpoint or check the Ontology Manager.

value
string
containsAnyTerm
object
optional

Returns objects where the specified field contains any of the whitespace separated words in any order in the provided value. This query supports fuzzy matching.

Show children

Show children

field
string

The name of the property in the API. To find the API name for your property, use the Get object type endpoint or check the Ontology Manager.

value
string
fuzzy
boolean
optional

Setting fuzzy to true allows approximate matching in search queries that support it.

gte
object
optional

Returns objects where the specified field is greater than or equal to a value.

Show children

Show children

field
string

The name of the property in the API. To find the API name for your property, use the Get object type endpoint or check the Ontology Manager.

value
any

Represents the value of a property in the following format.

TypeJSON encodingExample
Arrayarray["alpha", "bravo", "charlie"]
AttachmentJSON encoded AttachmentProperty object{"rid":"ri.blobster.main.attachment.2f944bae-5851-4204-8615-920c969a9f2e"}
Booleanbooleantrue
Bytenumber31
DateISO 8601 extended local date string"2021-05-01"
Decimalstring"2.718281828"
Doublenumber3.14159265
Floatnumber3.14159265
GeoPointgeojson{"type":"Point","coordinates":[102.0,0.5]}
GeoShapegeojson{"type":"LineString","coordinates":[[102.0,0.0],[103.0,1.0],[104.0,0.0],[105.0,1.0]]}
Integernumber238940
Longstring"58319870951433"
Shortnumber8739
Stringstring"Call me Ishmael"
TimestampISO 8601 extended offset date-time string in UTC zone"2021-01-04T05:00:00Z"

Note that for backwards compatibility, the Boolean, Byte, Double, Float, Integer, and Short types can also be encoded as JSON strings.

containsAllTermsInOrder
object
optional

Returns objects where the specified field contains all of the terms in the order provided, but they do have to be adjacent to each other.

Show children

Show children

field
string

The name of the property in the API. To find the API name for your property, use the Get object type endpoint or check the Ontology Manager.

value
string
withinPolygon
object
optional

Returns objects where the specified field contains a point within the polygon provided.

Show children

Show children

field
string

The name of the property in the API. To find the API name for your property, use the Get object type endpoint or check the Ontology Manager.

value
union
Show children

Show children

Polygon
object
optional
Show children

Show children

coordinates
list<LinearRing>
optional
Show children

Show children

LinearRing
list<Position>

A linear ring is a closed LineString with four or more positions.

The first and last positions are equivalent, and they MUST contain identical values; their representation SHOULD also be identical.

A linear ring is the boundary of a surface or the boundary of a hole in a surface.

A linear ring MUST follow the right-hand rule with respect to the area it bounds, i.e., exterior rings are counterclockwise, and holes are clockwise.

Show children

Show children

Position
list<Coordinate>

GeoJSon fundamental geometry construct.

A position is an array of numbers. There MUST be two or more elements. The first two elements are longitude and latitude, precisely in that order and using decimal numbers. Altitude or elevation MAY be included as an optional third element.

Implementations SHOULD NOT extend positions beyond three elements because the semantics of extra elements are unspecified and ambiguous. Historically, some implementations have used a fourth element to carry a linear referencing measure (sometimes denoted as "M") or a numerical timestamp, but in most situations a parser will not be able to properly interpret these values. The interpretation and meaning of additional elements is beyond the scope of this specification, and additional elements MAY be ignored by parsers.

Show children

Show children

Coordinate
number
bbox
list<Coordinate>
optional

A GeoJSON object MAY have a member named "bbox" to include information on the coordinate range for its Geometries, Features, or FeatureCollections. The value of the bbox member MUST be an array of length 2*n where n is the number of dimensions represented in the contained geometries, with all axes of the most southwesterly point followed by all axes of the more northeasterly point. The axes order of a bbox follows the axes order of geometries.

Show children

Show children

Coordinate
number
intersectsPolygon
object
optional

Returns objects where the specified field intersects the polygon provided.

Show children

Show children

field
string

The name of the property in the API. To find the API name for your property, use the Get object type endpoint or check the Ontology Manager.

value
union
Show children

Show children

Polygon
object
optional
Show children

Show children

coordinates
list<LinearRing>
optional
Show children

Show children

LinearRing
list<Position>

A linear ring is a closed LineString with four or more positions.

The first and last positions are equivalent, and they MUST contain identical values; their representation SHOULD also be identical.

A linear ring is the boundary of a surface or the boundary of a hole in a surface.

A linear ring MUST follow the right-hand rule with respect to the area it bounds, i.e., exterior rings are counterclockwise, and holes are clockwise.

Show children

Show children

Position
list<Coordinate>

GeoJSon fundamental geometry construct.

A position is an array of numbers. There MUST be two or more elements. The first two elements are longitude and latitude, precisely in that order and using decimal numbers. Altitude or elevation MAY be included as an optional third element.

Implementations SHOULD NOT extend positions beyond three elements because the semantics of extra elements are unspecified and ambiguous. Historically, some implementations have used a fourth element to carry a linear referencing measure (sometimes denoted as "M") or a numerical timestamp, but in most situations a parser will not be able to properly interpret these values. The interpretation and meaning of additional elements is beyond the scope of this specification, and additional elements MAY be ignored by parsers.

Show children

Show children

Coordinate
number
bbox
list<Coordinate>
optional

A GeoJSON object MAY have a member named "bbox" to include information on the coordinate range for its Geometries, Features, or FeatureCollections. The value of the bbox member MUST be an array of length 2*n where n is the number of dimensions represented in the contained geometries, with all axes of the most southwesterly point followed by all axes of the more northeasterly point. The axes order of a bbox follows the axes order of geometries.

Show children

Show children

Coordinate
number
lte
object
optional

Returns objects where the specified field is less than or equal to a value.

Show children

Show children

field
string

The name of the property in the API. To find the API name for your property, use the Get object type endpoint or check the Ontology Manager.

value
any

Represents the value of a property in the following format.

TypeJSON encodingExample
Arrayarray["alpha", "bravo", "charlie"]
AttachmentJSON encoded AttachmentProperty object{"rid":"ri.blobster.main.attachment.2f944bae-5851-4204-8615-920c969a9f2e"}
Booleanbooleantrue
Bytenumber31
DateISO 8601 extended local date string"2021-05-01"
Decimalstring"2.718281828"
Doublenumber3.14159265
Floatnumber3.14159265
GeoPointgeojson{"type":"Point","coordinates":[102.0,0.5]}
GeoShapegeojson{"type":"LineString","coordinates":[[102.0,0.0],[103.0,1.0],[104.0,0.0],[105.0,1.0]]}
Integernumber238940
Longstring"58319870951433"
Shortnumber8739
Stringstring"Call me Ishmael"
TimestampISO 8601 extended offset date-time string in UTC zone"2021-01-04T05:00:00Z"

Note that for backwards compatibility, the Boolean, Byte, Double, Float, Integer, and Short types can also be encoded as JSON strings.

startsWith
object
optional

Returns objects where the specified field starts with the provided value.

Show children

Show children

field
string

The name of the property in the API. To find the API name for your property, use the Get object type endpoint or check the Ontology Manager.

value
string
in
object
optional

Returns objects where the specified field equals any of the provided values.

Show children

Show children

field
string

The name of the property in the API. To find the API name for your property, use the Get object type endpoint or check the Ontology Manager.

value
list<PropertyValue>
optional
Show children

Show children

PropertyValue
any

Represents the value of a property in the following format.

TypeJSON encodingExample
Arrayarray["alpha", "bravo", "charlie"]
AttachmentJSON encoded AttachmentProperty object{"rid":"ri.blobster.main.attachment.2f944bae-5851-4204-8615-920c969a9f2e"}
Booleanbooleantrue
Bytenumber31
DateISO 8601 extended local date string"2021-05-01"
Decimalstring"2.718281828"
Doublenumber3.14159265
Floatnumber3.14159265
GeoPointgeojson{"type":"Point","coordinates":[102.0,0.5]}
GeoShapegeojson{"type":"LineString","coordinates":[[102.0,0.0],[103.0,1.0],[104.0,0.0],[105.0,1.0]]}
Integernumber238940
Longstring"58319870951433"
Shortnumber8739
Stringstring"Call me Ishmael"
TimestampISO 8601 extended offset date-time string in UTC zone"2021-01-04T05:00:00Z"

Note that for backwards compatibility, the Boolean, Byte, Double, Float, Integer, and Short types can also be encoded as JSON strings.

doesNotIntersectPolygon
object
optional

Returns objects where the specified field does not intersect the polygon provided.

Show children

Show children

field
string

The name of the property in the API. To find the API name for your property, use the Get object type endpoint or check the Ontology Manager.

value
union
Show children

Show children

Polygon
object
optional
Show children

Show children

coordinates
list<LinearRing>
optional
Show children

Show children

LinearRing
list<Position>

A linear ring is a closed LineString with four or more positions.

The first and last positions are equivalent, and they MUST contain identical values; their representation SHOULD also be identical.

A linear ring is the boundary of a surface or the boundary of a hole in a surface.

A linear ring MUST follow the right-hand rule with respect to the area it bounds, i.e., exterior rings are counterclockwise, and holes are clockwise.

Show children

Show children

Position
list<Coordinate>

GeoJSon fundamental geometry construct.

A position is an array of numbers. There MUST be two or more elements. The first two elements are longitude and latitude, precisely in that order and using decimal numbers. Altitude or elevation MAY be included as an optional third element.

Implementations SHOULD NOT extend positions beyond three elements because the semantics of extra elements are unspecified and ambiguous. Historically, some implementations have used a fourth element to carry a linear referencing measure (sometimes denoted as "M") or a numerical timestamp, but in most situations a parser will not be able to properly interpret these values. The interpretation and meaning of additional elements is beyond the scope of this specification, and additional elements MAY be ignored by parsers.

Show children

Show children

Coordinate
number
bbox
list<Coordinate>
optional

A GeoJSON object MAY have a member named "bbox" to include information on the coordinate range for its Geometries, Features, or FeatureCollections. The value of the bbox member MUST be an array of length 2*n where n is the number of dimensions represented in the contained geometries, with all axes of the most southwesterly point followed by all axes of the more northeasterly point. The axes order of a bbox follows the axes order of geometries.

Show children

Show children

Coordinate
number
lt
object
optional

Returns objects where the specified field is less than a value.

Show children

Show children

field
string

The name of the property in the API. To find the API name for your property, use the Get object type endpoint or check the Ontology Manager.

value
any

Represents the value of a property in the following format.

TypeJSON encodingExample
Arrayarray["alpha", "bravo", "charlie"]
AttachmentJSON encoded AttachmentProperty object{"rid":"ri.blobster.main.attachment.2f944bae-5851-4204-8615-920c969a9f2e"}
Booleanbooleantrue
Bytenumber31
DateISO 8601 extended local date string"2021-05-01"
Decimalstring"2.718281828"
Doublenumber3.14159265
Floatnumber3.14159265
GeoPointgeojson{"type":"Point","coordinates":[102.0,0.5]}
GeoShapegeojson{"type":"LineString","coordinates":[[102.0,0.0],[103.0,1.0],[104.0,0.0],[105.0,1.0]]}
Integernumber238940
Longstring"58319870951433"
Shortnumber8739
Stringstring"Call me Ishmael"
TimestampISO 8601 extended offset date-time string in UTC zone"2021-01-04T05:00:00Z"

Note that for backwards compatibility, the Boolean, Byte, Double, Float, Integer, and Short types can also be encoded as JSON strings.

doesNotIntersectBoundingBox
object
optional

Returns objects where the specified field does not intersect the bounding box provided.

Show children

Show children

field
string

The name of the property in the API. To find the API name for your property, use the Get object type endpoint or check the Ontology Manager.

value
object

The top left and bottom right coordinate points that make up the bounding box.

Show children

Show children

topLeft
union
Show children

Show children

Point
object
optional
Show children

Show children

coordinates
list<Coordinate>
optional

GeoJSon fundamental geometry construct.

A position is an array of numbers. There MUST be two or more elements. The first two elements are longitude and latitude, precisely in that order and using decimal numbers. Altitude or elevation MAY be included as an optional third element.

Implementations SHOULD NOT extend positions beyond three elements because the semantics of extra elements are unspecified and ambiguous. Historically, some implementations have used a fourth element to carry a linear referencing measure (sometimes denoted as "M") or a numerical timestamp, but in most situations a parser will not be able to properly interpret these values. The interpretation and meaning of additional elements is beyond the scope of this specification, and additional elements MAY be ignored by parsers.

Show children

Show children

Coordinate
number
bbox
list<Coordinate>
optional

A GeoJSON object MAY have a member named "bbox" to include information on the coordinate range for its Geometries, Features, or FeatureCollections. The value of the bbox member MUST be an array of length 2*n where n is the number of dimensions represented in the contained geometries, with all axes of the most southwesterly point followed by all axes of the more northeasterly point. The axes order of a bbox follows the axes order of geometries.

Show children

Show children

Coordinate
number
bottomRight
union
Show children

Show children

Point
object
optional
Show children

Show children

coordinates
list<Coordinate>
optional

GeoJSon fundamental geometry construct.

A position is an array of numbers. There MUST be two or more elements. The first two elements are longitude and latitude, precisely in that order and using decimal numbers. Altitude or elevation MAY be included as an optional third element.

Implementations SHOULD NOT extend positions beyond three elements because the semantics of extra elements are unspecified and ambiguous. Historically, some implementations have used a fourth element to carry a linear referencing measure (sometimes denoted as "M") or a numerical timestamp, but in most situations a parser will not be able to properly interpret these values. The interpretation and meaning of additional elements is beyond the scope of this specification, and additional elements MAY be ignored by parsers.

Show children

Show children

Coordinate
number
bbox
list<Coordinate>
optional

A GeoJSON object MAY have a member named "bbox" to include information on the coordinate range for its Geometries, Features, or FeatureCollections. The value of the bbox member MUST be an array of length 2*n where n is the number of dimensions represented in the contained geometries, with all axes of the most southwesterly point followed by all axes of the more northeasterly point. The axes order of a bbox follows the axes order of geometries.

Show children

Show children

Coordinate
number
eq
object
optional

Returns objects where the specified field is equal to a value.

Show children

Show children

field
string

The name of the property in the API. To find the API name for your property, use the Get object type endpoint or check the Ontology Manager.

value
any

Represents the value of a property in the following format.

TypeJSON encodingExample
Arrayarray["alpha", "bravo", "charlie"]
AttachmentJSON encoded AttachmentProperty object{"rid":"ri.blobster.main.attachment.2f944bae-5851-4204-8615-920c969a9f2e"}
Booleanbooleantrue
Bytenumber31
DateISO 8601 extended local date string"2021-05-01"
Decimalstring"2.718281828"
Doublenumber3.14159265
Floatnumber3.14159265
GeoPointgeojson{"type":"Point","coordinates":[102.0,0.5]}
GeoShapegeojson{"type":"LineString","coordinates":[[102.0,0.0],[103.0,1.0],[104.0,0.0],[105.0,1.0]]}
Integernumber238940
Longstring"58319870951433"
Shortnumber8739
Stringstring"Call me Ishmael"
TimestampISO 8601 extended offset date-time string in UTC zone"2021-01-04T05:00:00Z"

Note that for backwards compatibility, the Boolean, Byte, Double, Float, Integer, and Short types can also be encoded as JSON strings.

containsAllTerms
object
optional

Returns objects where the specified field contains all of the whitespace separated words in any order in the provided value. This query supports fuzzy matching.

Show children

Show children

field
string

The name of the property in the API. To find the API name for your property, use the Get object type endpoint or check the Ontology Manager.

value
string
fuzzy
boolean
optional

Setting fuzzy to true allows approximate matching in search queries that support it.

gt
object
optional

Returns objects where the specified field is greater than a value.

Show children

Show children

field
string

The name of the property in the API. To find the API name for your property, use the Get object type endpoint or check the Ontology Manager.

value
any

Represents the value of a property in the following format.

TypeJSON encodingExample
Arrayarray["alpha", "bravo", "charlie"]
AttachmentJSON encoded AttachmentProperty object{"rid":"ri.blobster.main.attachment.2f944bae-5851-4204-8615-920c969a9f2e"}
Booleanbooleantrue
Bytenumber31
DateISO 8601 extended local date string"2021-05-01"
Decimalstring"2.718281828"
Doublenumber3.14159265
Floatnumber3.14159265
GeoPointgeojson{"type":"Point","coordinates":[102.0,0.5]}
GeoShapegeojson{"type":"LineString","coordinates":[[102.0,0.0],[103.0,1.0],[104.0,0.0],[105.0,1.0]]}
Integernumber238940
Longstring"58319870951433"
Shortnumber8739
Stringstring"Call me Ishmael"
TimestampISO 8601 extended offset date-time string in UTC zone"2021-01-04T05:00:00Z"

Note that for backwards compatibility, the Boolean, Byte, Double, Float, Integer, and Short types can also be encoded as JSON strings.

withinDistanceOf
object
optional

Returns objects where the specified field contains a point within the distance provided of the center point.

Show children

Show children

field
string

The name of the property in the API. To find the API name for your property, use the Get object type endpoint or check the Ontology Manager.

value
object

The coordinate point to use as the center of the distance query.

Show children

Show children

center
union
Show children

Show children

Point
object
optional
Show children

Show children

coordinates
list<Coordinate>
optional

GeoJSon fundamental geometry construct.

A position is an array of numbers. There MUST be two or more elements. The first two elements are longitude and latitude, precisely in that order and using decimal numbers. Altitude or elevation MAY be included as an optional third element.

Implementations SHOULD NOT extend positions beyond three elements because the semantics of extra elements are unspecified and ambiguous. Historically, some implementations have used a fourth element to carry a linear referencing measure (sometimes denoted as "M") or a numerical timestamp, but in most situations a parser will not be able to properly interpret these values. The interpretation and meaning of additional elements is beyond the scope of this specification, and additional elements MAY be ignored by parsers.

Show children

Show children

Coordinate
number
bbox
list<Coordinate>
optional

A GeoJSON object MAY have a member named "bbox" to include information on the coordinate range for its Geometries, Features, or FeatureCollections. The value of the bbox member MUST be an array of length 2*n where n is the number of dimensions represented in the contained geometries, with all axes of the most southwesterly point followed by all axes of the more northeasterly point. The axes order of a bbox follows the axes order of geometries.

Show children

Show children

Coordinate
number
distance
object

A measurement of distance.

Show children

Show children

value
number
unit
string (enum)

Enum values: MILLIMETERS, CENTIMETERS, METERS, KILOMETERS, INCHES, FEET, YARDS, MILES, NAUTICAL_MILES

withinBoundingBox
object
optional

Returns objects where the specified field contains a point within the bounding box provided.

Show children

Show children

field
string

The name of the property in the API. To find the API name for your property, use the Get object type endpoint or check the Ontology Manager.

value
object

The top left and bottom right coordinate points that make up the bounding box.

Show children

Show children

topLeft
union
Show children

Show children

Point
object
optional
Show children

Show children

coordinates
list<Coordinate>
optional

GeoJSon fundamental geometry construct.

A position is an array of numbers. There MUST be two or more elements. The first two elements are longitude and latitude, precisely in that order and using decimal numbers. Altitude or elevation MAY be included as an optional third element.

Implementations SHOULD NOT extend positions beyond three elements because the semantics of extra elements are unspecified and ambiguous. Historically, some implementations have used a fourth element to carry a linear referencing measure (sometimes denoted as "M") or a numerical timestamp, but in most situations a parser will not be able to properly interpret these values. The interpretation and meaning of additional elements is beyond the scope of this specification, and additional elements MAY be ignored by parsers.

Show children

Show children

Coordinate
number
bbox
list<Coordinate>
optional

A GeoJSON object MAY have a member named "bbox" to include information on the coordinate range for its Geometries, Features, or FeatureCollections. The value of the bbox member MUST be an array of length 2*n where n is the number of dimensions represented in the contained geometries, with all axes of the most southwesterly point followed by all axes of the more northeasterly point. The axes order of a bbox follows the axes order of geometries.

Show children

Show children

Coordinate
number
bottomRight
union
Show children

Show children

Point
object
optional
Show children

Show children

coordinates
list<Coordinate>
optional

GeoJSon fundamental geometry construct.

A position is an array of numbers. There MUST be two or more elements. The first two elements are longitude and latitude, precisely in that order and using decimal numbers. Altitude or elevation MAY be included as an optional third element.

Implementations SHOULD NOT extend positions beyond three elements because the semantics of extra elements are unspecified and ambiguous. Historically, some implementations have used a fourth element to carry a linear referencing measure (sometimes denoted as "M") or a numerical timestamp, but in most situations a parser will not be able to properly interpret these values. The interpretation and meaning of additional elements is beyond the scope of this specification, and additional elements MAY be ignored by parsers.

Show children

Show children

Coordinate
number
bbox
list<Coordinate>
optional

A GeoJSON object MAY have a member named "bbox" to include information on the coordinate range for its Geometries, Features, or FeatureCollections. The value of the bbox member MUST be an array of length 2*n where n is the number of dimensions represented in the contained geometries, with all axes of the most southwesterly point followed by all axes of the more northeasterly point. The axes order of a bbox follows the axes order of geometries.

Show children

Show children

Coordinate
number
contains
object
optional

Returns objects where the specified array contains a value.

Show children

Show children

field
string

The name of the property in the API. To find the API name for your property, use the Get object type endpoint or check the Ontology Manager.

value
any

Represents the value of a property in the following format.

TypeJSON encodingExample
Arrayarray["alpha", "bravo", "charlie"]
AttachmentJSON encoded AttachmentProperty object{"rid":"ri.blobster.main.attachment.2f944bae-5851-4204-8615-920c969a9f2e"}
Booleanbooleantrue
Bytenumber31
DateISO 8601 extended local date string"2021-05-01"
Decimalstring"2.718281828"
Doublenumber3.14159265
Floatnumber3.14159265
GeoPointgeojson{"type":"Point","coordinates":[102.0,0.5]}
GeoShapegeojson{"type":"LineString","coordinates":[[102.0,0.0],[103.0,1.0],[104.0,0.0],[105.0,1.0]]}
Integernumber238940
Longstring"58319870951433"
Shortnumber8739
Stringstring"Call me Ishmael"
TimestampISO 8601 extended offset date-time string in UTC zone"2021-01-04T05:00:00Z"

Note that for backwards compatibility, the Boolean, Byte, Double, Float, Integer, and Short types can also be encoded as JSON strings.

not
object
optional

Returns objects where the query is not satisfied.

Show children

Show children

value
union
Show children

Show children

or
object
optional

Returns objects where at least 1 query is satisfied.

Show children

Show children

value
list<SearchJsonQueryV2>
optional
Show children

Show children

SearchJsonQueryV2
union
in
object
optional

Returns objects where the specified field equals any of the provided values.

Show children

Show children

field
string

The name of the property in the API. To find the API name for your property, use the Get object type endpoint or check the Ontology Manager.

value
list<PropertyValue>
optional
Show children

Show children

PropertyValue
any

Represents the value of a property in the following format.

TypeJSON encodingExample
Arrayarray["alpha", "bravo", "charlie"]
AttachmentJSON encoded AttachmentProperty object{"rid":"ri.blobster.main.attachment.2f944bae-5851-4204-8615-920c969a9f2e"}
Booleanbooleantrue
Bytenumber31
DateISO 8601 extended local date string"2021-05-01"
Decimalstring"2.718281828"
Doublenumber3.14159265
Floatnumber3.14159265
GeoPointgeojson{"type":"Point","coordinates":[102.0,0.5]}
GeoShapegeojson{"type":"LineString","coordinates":[[102.0,0.0],[103.0,1.0],[104.0,0.0],[105.0,1.0]]}
Integernumber238940
Longstring"58319870951433"
Shortnumber8739
Stringstring"Call me Ishmael"
TimestampISO 8601 extended offset date-time string in UTC zone"2021-01-04T05:00:00Z"

Note that for backwards compatibility, the Boolean, Byte, Double, Float, Integer, and Short types can also be encoded as JSON strings.

doesNotIntersectPolygon
object
optional

Returns objects where the specified field does not intersect the polygon provided.

Show children

Show children

field
string

The name of the property in the API. To find the API name for your property, use the Get object type endpoint or check the Ontology Manager.

value
union
Show children

Show children

Polygon
object
optional
Show children

Show children

coordinates
list<LinearRing>
optional
Show children

Show children

LinearRing
list<Position>

A linear ring is a closed LineString with four or more positions.

The first and last positions are equivalent, and they MUST contain identical values; their representation SHOULD also be identical.

A linear ring is the boundary of a surface or the boundary of a hole in a surface.

A linear ring MUST follow the right-hand rule with respect to the area it bounds, i.e., exterior rings are counterclockwise, and holes are clockwise.

Show children

Show children

Position
list<Coordinate>

GeoJSon fundamental geometry construct.

A position is an array of numbers. There MUST be two or more elements. The first two elements are longitude and latitude, precisely in that order and using decimal numbers. Altitude or elevation MAY be included as an optional third element.

Implementations SHOULD NOT extend positions beyond three elements because the semantics of extra elements are unspecified and ambiguous. Historically, some implementations have used a fourth element to carry a linear referencing measure (sometimes denoted as "M") or a numerical timestamp, but in most situations a parser will not be able to properly interpret these values. The interpretation and meaning of additional elements is beyond the scope of this specification, and additional elements MAY be ignored by parsers.

Show children

Show children

Coordinate
number
bbox
list<Coordinate>
optional

A GeoJSON object MAY have a member named "bbox" to include information on the coordinate range for its Geometries, Features, or FeatureCollections. The value of the bbox member MUST be an array of length 2*n where n is the number of dimensions represented in the contained geometries, with all axes of the most southwesterly point followed by all axes of the more northeasterly point. The axes order of a bbox follows the axes order of geometries.

Show children

Show children

Coordinate
number
lt
object
optional

Returns objects where the specified field is less than a value.

Show children

Show children

field
string

The name of the property in the API. To find the API name for your property, use the Get object type endpoint or check the Ontology Manager.

value
any

Represents the value of a property in the following format.

TypeJSON encodingExample
Arrayarray["alpha", "bravo", "charlie"]
AttachmentJSON encoded AttachmentProperty object{"rid":"ri.blobster.main.attachment.2f944bae-5851-4204-8615-920c969a9f2e"}
Booleanbooleantrue
Bytenumber31
DateISO 8601 extended local date string"2021-05-01"
Decimalstring"2.718281828"
Doublenumber3.14159265
Floatnumber3.14159265
GeoPointgeojson{"type":"Point","coordinates":[102.0,0.5]}
GeoShapegeojson{"type":"LineString","coordinates":[[102.0,0.0],[103.0,1.0],[104.0,0.0],[105.0,1.0]]}
Integernumber238940
Longstring"58319870951433"
Shortnumber8739
Stringstring"Call me Ishmael"
TimestampISO 8601 extended offset date-time string in UTC zone"2021-01-04T05:00:00Z"

Note that for backwards compatibility, the Boolean, Byte, Double, Float, Integer, and Short types can also be encoded as JSON strings.

doesNotIntersectBoundingBox
object
optional

Returns objects where the specified field does not intersect the bounding box provided.

Show children

Show children

field
string

The name of the property in the API. To find the API name for your property, use the Get object type endpoint or check the Ontology Manager.

value
object

The top left and bottom right coordinate points that make up the bounding box.

Show children

Show children

topLeft
union
Show children

Show children

Point
object
optional
Show children

Show children

coordinates
list<Coordinate>
optional

GeoJSon fundamental geometry construct.

A position is an array of numbers. There MUST be two or more elements. The first two elements are longitude and latitude, precisely in that order and using decimal numbers. Altitude or elevation MAY be included as an optional third element.

Implementations SHOULD NOT extend positions beyond three elements because the semantics of extra elements are unspecified and ambiguous. Historically, some implementations have used a fourth element to carry a linear referencing measure (sometimes denoted as "M") or a numerical timestamp, but in most situations a parser will not be able to properly interpret these values. The interpretation and meaning of additional elements is beyond the scope of this specification, and additional elements MAY be ignored by parsers.

Show children

Show children

Coordinate
number
bbox
list<Coordinate>
optional

A GeoJSON object MAY have a member named "bbox" to include information on the coordinate range for its Geometries, Features, or FeatureCollections. The value of the bbox member MUST be an array of length 2*n where n is the number of dimensions represented in the contained geometries, with all axes of the most southwesterly point followed by all axes of the more northeasterly point. The axes order of a bbox follows the axes order of geometries.

Show children

Show children

Coordinate
number
bottomRight
union
Show children

Show children

Point
object
optional
Show children

Show children

coordinates
list<Coordinate>
optional

GeoJSon fundamental geometry construct.

A position is an array of numbers. There MUST be two or more elements. The first two elements are longitude and latitude, precisely in that order and using decimal numbers. Altitude or elevation MAY be included as an optional third element.

Implementations SHOULD NOT extend positions beyond three elements because the semantics of extra elements are unspecified and ambiguous. Historically, some implementations have used a fourth element to carry a linear referencing measure (sometimes denoted as "M") or a numerical timestamp, but in most situations a parser will not be able to properly interpret these values. The interpretation and meaning of additional elements is beyond the scope of this specification, and additional elements MAY be ignored by parsers.

Show children

Show children

Coordinate
number
bbox
list<Coordinate>
optional

A GeoJSON object MAY have a member named "bbox" to include information on the coordinate range for its Geometries, Features, or FeatureCollections. The value of the bbox member MUST be an array of length 2*n where n is the number of dimensions represented in the contained geometries, with all axes of the most southwesterly point followed by all axes of the more northeasterly point. The axes order of a bbox follows the axes order of geometries.

Show children

Show children

Coordinate
number
eq
object
optional

Returns objects where the specified field is equal to a value.

Show children

Show children

field
string

The name of the property in the API. To find the API name for your property, use the Get object type endpoint or check the Ontology Manager.

value
any

Represents the value of a property in the following format.

TypeJSON encodingExample
Arrayarray["alpha", "bravo", "charlie"]
AttachmentJSON encoded AttachmentProperty object{"rid":"ri.blobster.main.attachment.2f944bae-5851-4204-8615-920c969a9f2e"}
Booleanbooleantrue
Bytenumber31
DateISO 8601 extended local date string"2021-05-01"
Decimalstring"2.718281828"
Doublenumber3.14159265
Floatnumber3.14159265
GeoPointgeojson{"type":"Point","coordinates":[102.0,0.5]}
GeoShapegeojson{"type":"LineString","coordinates":[[102.0,0.0],[103.0,1.0],[104.0,0.0],[105.0,1.0]]}
Integernumber238940
Longstring"58319870951433"
Shortnumber8739
Stringstring"Call me Ishmael"
TimestampISO 8601 extended offset date-time string in UTC zone"2021-01-04T05:00:00Z"

Note that for backwards compatibility, the Boolean, Byte, Double, Float, Integer, and Short types can also be encoded as JSON strings.

containsAllTerms
object
optional

Returns objects where the specified field contains all of the whitespace separated words in any order in the provided value. This query supports fuzzy matching.

Show children

Show children

field
string

The name of the property in the API. To find the API name for your property, use the Get object type endpoint or check the Ontology Manager.

value
string
fuzzy
boolean
optional

Setting fuzzy to true allows approximate matching in search queries that support it.

gt
object
optional

Returns objects where the specified field is greater than a value.

Show children

Show children

field
string

The name of the property in the API. To find the API name for your property, use the Get object type endpoint or check the Ontology Manager.

value
any

Represents the value of a property in the following format.

TypeJSON encodingExample
Arrayarray["alpha", "bravo", "charlie"]
AttachmentJSON encoded AttachmentProperty object{"rid":"ri.blobster.main.attachment.2f944bae-5851-4204-8615-920c969a9f2e"}
Booleanbooleantrue
Bytenumber31
DateISO 8601 extended local date string"2021-05-01"
Decimalstring"2.718281828"
Doublenumber3.14159265
Floatnumber3.14159265
GeoPointgeojson{"type":"Point","coordinates":[102.0,0.5]}
GeoShapegeojson{"type":"LineString","coordinates":[[102.0,0.0],[103.0,1.0],[104.0,0.0],[105.0,1.0]]}
Integernumber238940
Longstring"58319870951433"
Shortnumber8739
Stringstring"Call me Ishmael"
TimestampISO 8601 extended offset date-time string in UTC zone"2021-01-04T05:00:00Z"

Note that for backwards compatibility, the Boolean, Byte, Double, Float, Integer, and Short types can also be encoded as JSON strings.

withinDistanceOf
object
optional

Returns objects where the specified field contains a point within the distance provided of the center point.

Show children

Show children

field
string

The name of the property in the API. To find the API name for your property, use the Get object type endpoint or check the Ontology Manager.

value
object

The coordinate point to use as the center of the distance query.

Show children

Show children

center
union
Show children

Show children

Point
object
optional
Show children

Show children

coordinates
list<Coordinate>
optional

GeoJSon fundamental geometry construct.

A position is an array of numbers. There MUST be two or more elements. The first two elements are longitude and latitude, precisely in that order and using decimal numbers. Altitude or elevation MAY be included as an optional third element.

Implementations SHOULD NOT extend positions beyond three elements because the semantics of extra elements are unspecified and ambiguous. Historically, some implementations have used a fourth element to carry a linear referencing measure (sometimes denoted as "M") or a numerical timestamp, but in most situations a parser will not be able to properly interpret these values. The interpretation and meaning of additional elements is beyond the scope of this specification, and additional elements MAY be ignored by parsers.

Show children

Show children

Coordinate
number
bbox
list<Coordinate>
optional

A GeoJSON object MAY have a member named "bbox" to include information on the coordinate range for its Geometries, Features, or FeatureCollections. The value of the bbox member MUST be an array of length 2*n where n is the number of dimensions represented in the contained geometries, with all axes of the most southwesterly point followed by all axes of the more northeasterly point. The axes order of a bbox follows the axes order of geometries.

Show children

Show children

Coordinate
number
distance
object

A measurement of distance.

Show children

Show children

value
number
unit
string (enum)

Enum values: MILLIMETERS, CENTIMETERS, METERS, KILOMETERS, INCHES, FEET, YARDS, MILES, NAUTICAL_MILES

withinBoundingBox
object
optional

Returns objects where the specified field contains a point within the bounding box provided.

Show children

Show children

field
string

The name of the property in the API. To find the API name for your property, use the Get object type endpoint or check the Ontology Manager.

value
object

The top left and bottom right coordinate points that make up the bounding box.

Show children

Show children

topLeft
union
Show children

Show children

Point
object
optional
Show children

Show children

coordinates
list<Coordinate>
optional

GeoJSon fundamental geometry construct.

A position is an array of numbers. There MUST be two or more elements. The first two elements are longitude and latitude, precisely in that order and using decimal numbers. Altitude or elevation MAY be included as an optional third element.

Implementations SHOULD NOT extend positions beyond three elements because the semantics of extra elements are unspecified and ambiguous. Historically, some implementations have used a fourth element to carry a linear referencing measure (sometimes denoted as "M") or a numerical timestamp, but in most situations a parser will not be able to properly interpret these values. The interpretation and meaning of additional elements is beyond the scope of this specification, and additional elements MAY be ignored by parsers.

Show children

Show children

Coordinate
number
bbox
list<Coordinate>
optional

A GeoJSON object MAY have a member named "bbox" to include information on the coordinate range for its Geometries, Features, or FeatureCollections. The value of the bbox member MUST be an array of length 2*n where n is the number of dimensions represented in the contained geometries, with all axes of the most southwesterly point followed by all axes of the more northeasterly point. The axes order of a bbox follows the axes order of geometries.

Show children

Show children

Coordinate
number
bottomRight
union
Show children

Show children

Point
object
optional
Show children

Show children

coordinates
list<Coordinate>
optional

GeoJSon fundamental geometry construct.

A position is an array of numbers. There MUST be two or more elements. The first two elements are longitude and latitude, precisely in that order and using decimal numbers. Altitude or elevation MAY be included as an optional third element.

Implementations SHOULD NOT extend positions beyond three elements because the semantics of extra elements are unspecified and ambiguous. Historically, some implementations have used a fourth element to carry a linear referencing measure (sometimes denoted as "M") or a numerical timestamp, but in most situations a parser will not be able to properly interpret these values. The interpretation and meaning of additional elements is beyond the scope of this specification, and additional elements MAY be ignored by parsers.

Show children

Show children

Coordinate
number
bbox
list<Coordinate>
optional

A GeoJSON object MAY have a member named "bbox" to include information on the coordinate range for its Geometries, Features, or FeatureCollections. The value of the bbox member MUST be an array of length 2*n where n is the number of dimensions represented in the contained geometries, with all axes of the most southwesterly point followed by all axes of the more northeasterly point. The axes order of a bbox follows the axes order of geometries.

Show children

Show children

Coordinate
number
contains
object
optional

Returns objects where the specified array contains a value.

Show children

Show children

field
string

The name of the property in the API. To find the API name for your property, use the Get object type endpoint or check the Ontology Manager.

value
any

Represents the value of a property in the following format.

TypeJSON encodingExample
Arrayarray["alpha", "bravo", "charlie"]
AttachmentJSON encoded AttachmentProperty object{"rid":"ri.blobster.main.attachment.2f944bae-5851-4204-8615-920c969a9f2e"}
Booleanbooleantrue
Bytenumber31
DateISO 8601 extended local date string"2021-05-01"
Decimalstring"2.718281828"
Doublenumber3.14159265
Floatnumber3.14159265
GeoPointgeojson{"type":"Point","coordinates":[102.0,0.5]}
GeoShapegeojson{"type":"LineString","coordinates":[[102.0,0.0],[103.0,1.0],[104.0,0.0],[105.0,1.0]]}
Integernumber238940
Longstring"58319870951433"
Shortnumber8739
Stringstring"Call me Ishmael"
TimestampISO 8601 extended offset date-time string in UTC zone"2021-01-04T05:00:00Z"

Note that for backwards compatibility, the Boolean, Byte, Double, Float, Integer, and Short types can also be encoded as JSON strings.

not
object
optional

Returns objects where the query is not satisfied.

Show children

Show children

value
union
intersectsBoundingBox
object
optional

Returns objects where the specified field intersects the bounding box provided.

Show children

Show children

field
string

The name of the property in the API. To find the API name for your property, use the Get object type endpoint or check the Ontology Manager.

value
object

The top left and bottom right coordinate points that make up the bounding box.

Show children

Show children

topLeft
union
Show children

Show children

Point
object
optional
Show children

Show children

coordinates
list<Coordinate>
optional

GeoJSon fundamental geometry construct.

A position is an array of numbers. There MUST be two or more elements. The first two elements are longitude and latitude, precisely in that order and using decimal numbers. Altitude or elevation MAY be included as an optional third element.

Implementations SHOULD NOT extend positions beyond three elements because the semantics of extra elements are unspecified and ambiguous. Historically, some implementations have used a fourth element to carry a linear referencing measure (sometimes denoted as "M") or a numerical timestamp, but in most situations a parser will not be able to properly interpret these values. The interpretation and meaning of additional elements is beyond the scope of this specification, and additional elements MAY be ignored by parsers.

Show children

Show children

Coordinate
number
bbox
list<Coordinate>
optional

A GeoJSON object MAY have a member named "bbox" to include information on the coordinate range for its Geometries, Features, or FeatureCollections. The value of the bbox member MUST be an array of length 2*n where n is the number of dimensions represented in the contained geometries, with all axes of the most southwesterly point followed by all axes of the more northeasterly point. The axes order of a bbox follows the axes order of geometries.

Show children

Show children

Coordinate
number
bottomRight
union
Show children

Show children

Point
object
optional
Show children

Show children

coordinates
list<Coordinate>
optional

GeoJSon fundamental geometry construct.

A position is an array of numbers. There MUST be two or more elements. The first two elements are longitude and latitude, precisely in that order and using decimal numbers. Altitude or elevation MAY be included as an optional third element.

Implementations SHOULD NOT extend positions beyond three elements because the semantics of extra elements are unspecified and ambiguous. Historically, some implementations have used a fourth element to carry a linear referencing measure (sometimes denoted as "M") or a numerical timestamp, but in most situations a parser will not be able to properly interpret these values. The interpretation and meaning of additional elements is beyond the scope of this specification, and additional elements MAY be ignored by parsers.

Show children

Show children

Coordinate
number
bbox
list<Coordinate>
optional

A GeoJSON object MAY have a member named "bbox" to include information on the coordinate range for its Geometries, Features, or FeatureCollections. The value of the bbox member MUST be an array of length 2*n where n is the number of dimensions represented in the contained geometries, with all axes of the most southwesterly point followed by all axes of the more northeasterly point. The axes order of a bbox follows the axes order of geometries.

Show children

Show children

Coordinate
number
and
object
optional

Returns objects where every query is satisfied.

Show children

Show children

value
list<SearchJsonQueryV2>
optional
Show children

Show children

SearchJsonQueryV2
union
isNull
object
optional

Returns objects based on the existence of the specified field.

Show children

Show children

field
string

The name of the property in the API. To find the API name for your property, use the Get object type endpoint or check the Ontology Manager.

value
boolean
containsAllTermsInOrderPrefixLastTerm
object
optional

Returns objects where the specified field contains all of the terms in the order provided, but they do have to be adjacent to each other. The last term can be a partial prefix match.

Show children

Show children

field
string

The name of the property in the API. To find the API name for your property, use the Get object type endpoint or check the Ontology Manager.

value
string
containsAnyTerm
object
optional

Returns objects where the specified field contains any of the whitespace separated words in any order in the provided value. This query supports fuzzy matching.

Show children

Show children

field
string

The name of the property in the API. To find the API name for your property, use the Get object type endpoint or check the Ontology Manager.

value
string
fuzzy
boolean
optional

Setting fuzzy to true allows approximate matching in search queries that support it.

gte
object
optional

Returns objects where the specified field is greater than or equal to a value.

Show children

Show children

field
string

The name of the property in the API. To find the API name for your property, use the Get object type endpoint or check the Ontology Manager.

value
any

Represents the value of a property in the following format.

TypeJSON encodingExample
Arrayarray["alpha", "bravo", "charlie"]
AttachmentJSON encoded AttachmentProperty object{"rid":"ri.blobster.main.attachment.2f944bae-5851-4204-8615-920c969a9f2e"}
Booleanbooleantrue
Bytenumber31
DateISO 8601 extended local date string"2021-05-01"
Decimalstring"2.718281828"
Doublenumber3.14159265
Floatnumber3.14159265
GeoPointgeojson{"type":"Point","coordinates":[102.0,0.5]}
GeoShapegeojson{"type":"LineString","coordinates":[[102.0,0.0],[103.0,1.0],[104.0,0.0],[105.0,1.0]]}
Integernumber238940
Longstring"58319870951433"
Shortnumber8739
Stringstring"Call me Ishmael"
TimestampISO 8601 extended offset date-time string in UTC zone"2021-01-04T05:00:00Z"

Note that for backwards compatibility, the Boolean, Byte, Double, Float, Integer, and Short types can also be encoded as JSON strings.

containsAllTermsInOrder
object
optional

Returns objects where the specified field contains all of the terms in the order provided, but they do have to be adjacent to each other.

Show children

Show children

field
string

The name of the property in the API. To find the API name for your property, use the Get object type endpoint or check the Ontology Manager.

value
string
withinPolygon
object
optional

Returns objects where the specified field contains a point within the polygon provided.

Show children

Show children

field
string

The name of the property in the API. To find the API name for your property, use the Get object type endpoint or check the Ontology Manager.

value
union
Show children

Show children

Polygon
object
optional
Show children

Show children

coordinates
list<LinearRing>
optional
Show children

Show children

LinearRing
list<Position>

A linear ring is a closed LineString with four or more positions.

The first and last positions are equivalent, and they MUST contain identical values; their representation SHOULD also be identical.

A linear ring is the boundary of a surface or the boundary of a hole in a surface.

A linear ring MUST follow the right-hand rule with respect to the area it bounds, i.e., exterior rings are counterclockwise, and holes are clockwise.

Show children

Show children

Position
list<Coordinate>

GeoJSon fundamental geometry construct.

A position is an array of numbers. There MUST be two or more elements. The first two elements are longitude and latitude, precisely in that order and using decimal numbers. Altitude or elevation MAY be included as an optional third element.

Implementations SHOULD NOT extend positions beyond three elements because the semantics of extra elements are unspecified and ambiguous. Historically, some implementations have used a fourth element to carry a linear referencing measure (sometimes denoted as "M") or a numerical timestamp, but in most situations a parser will not be able to properly interpret these values. The interpretation and meaning of additional elements is beyond the scope of this specification, and additional elements MAY be ignored by parsers.

Show children

Show children

Coordinate
number
bbox
list<Coordinate>
optional

A GeoJSON object MAY have a member named "bbox" to include information on the coordinate range for its Geometries, Features, or FeatureCollections. The value of the bbox member MUST be an array of length 2*n where n is the number of dimensions represented in the contained geometries, with all axes of the most southwesterly point followed by all axes of the more northeasterly point. The axes order of a bbox follows the axes order of geometries.

Show children

Show children

Coordinate
number
intersectsPolygon
object
optional

Returns objects where the specified field intersects the polygon provided.

Show children

Show children

field
string

The name of the property in the API. To find the API name for your property, use the Get object type endpoint or check the Ontology Manager.

value
union
Show children

Show children

Polygon
object
optional
Show children

Show children

coordinates
list<LinearRing>
optional
Show children

Show children

LinearRing
list<Position>

A linear ring is a closed LineString with four or more positions.

The first and last positions are equivalent, and they MUST contain identical values; their representation SHOULD also be identical.

A linear ring is the boundary of a surface or the boundary of a hole in a surface.

A linear ring MUST follow the right-hand rule with respect to the area it bounds, i.e., exterior rings are counterclockwise, and holes are clockwise.

Show children

Show children

Position
list<Coordinate>

GeoJSon fundamental geometry construct.

A position is an array of numbers. There MUST be two or more elements. The first two elements are longitude and latitude, precisely in that order and using decimal numbers. Altitude or elevation MAY be included as an optional third element.

Implementations SHOULD NOT extend positions beyond three elements because the semantics of extra elements are unspecified and ambiguous. Historically, some implementations have used a fourth element to carry a linear referencing measure (sometimes denoted as "M") or a numerical timestamp, but in most situations a parser will not be able to properly interpret these values. The interpretation and meaning of additional elements is beyond the scope of this specification, and additional elements MAY be ignored by parsers.

Show children

Show children

Coordinate
number
bbox
list<Coordinate>
optional

A GeoJSON object MAY have a member named "bbox" to include information on the coordinate range for its Geometries, Features, or FeatureCollections. The value of the bbox member MUST be an array of length 2*n where n is the number of dimensions represented in the contained geometries, with all axes of the most southwesterly point followed by all axes of the more northeasterly point. The axes order of a bbox follows the axes order of geometries.

Show children

Show children

Coordinate
number
lte
object
optional

Returns objects where the specified field is less than or equal to a value.

Show children

Show children

field
string

The name of the property in the API. To find the API name for your property, use the Get object type endpoint or check the Ontology Manager.

value
any

Represents the value of a property in the following format.

TypeJSON encodingExample
Arrayarray["alpha", "bravo", "charlie"]
AttachmentJSON encoded AttachmentProperty object{"rid":"ri.blobster.main.attachment.2f944bae-5851-4204-8615-920c969a9f2e"}
Booleanbooleantrue
Bytenumber31
DateISO 8601 extended local date string"2021-05-01"
Decimalstring"2.718281828"
Doublenumber3.14159265
Floatnumber3.14159265
GeoPointgeojson{"type":"Point","coordinates":[102.0,0.5]}
GeoShapegeojson{"type":"LineString","coordinates":[[102.0,0.0],[103.0,1.0],[104.0,0.0],[105.0,1.0]]}
Integernumber238940
Longstring"58319870951433"
Shortnumber8739
Stringstring"Call me Ishmael"
TimestampISO 8601 extended offset date-time string in UTC zone"2021-01-04T05:00:00Z"

Note that for backwards compatibility, the Boolean, Byte, Double, Float, Integer, and Short types can also be encoded as JSON strings.

startsWith
object
optional

Returns objects where the specified field starts with the provided value.

Show children

Show children

field
string

The name of the property in the API. To find the API name for your property, use the Get object type endpoint or check the Ontology Manager.

value
string
intersectsBoundingBox
object
optional

Returns objects where the specified field intersects the bounding box provided.

Show children

Show children

field
string

The name of the property in the API. To find the API name for your property, use the Get object type endpoint or check the Ontology Manager.

value
object

The top left and bottom right coordinate points that make up the bounding box.

Show children

Show children

topLeft
union
Show children

Show children

Point
object
optional
Show children

Show children

coordinates
list<Coordinate>
optional

GeoJSon fundamental geometry construct.

A position is an array of numbers. There MUST be two or more elements. The first two elements are longitude and latitude, precisely in that order and using decimal numbers. Altitude or elevation MAY be included as an optional third element.

Implementations SHOULD NOT extend positions beyond three elements because the semantics of extra elements are unspecified and ambiguous. Historically, some implementations have used a fourth element to carry a linear referencing measure (sometimes denoted as "M") or a numerical timestamp, but in most situations a parser will not be able to properly interpret these values. The interpretation and meaning of additional elements is beyond the scope of this specification, and additional elements MAY be ignored by parsers.

Show children

Show children

Coordinate
number
bbox
list<Coordinate>
optional

A GeoJSON object MAY have a member named "bbox" to include information on the coordinate range for its Geometries, Features, or FeatureCollections. The value of the bbox member MUST be an array of length 2*n where n is the number of dimensions represented in the contained geometries, with all axes of the most southwesterly point followed by all axes of the more northeasterly point. The axes order of a bbox follows the axes order of geometries.

Show children

Show children

Coordinate
number
bottomRight
union
Show children

Show children

Point
object
optional
Show children

Show children

coordinates
list<Coordinate>
optional

GeoJSon fundamental geometry construct.

A position is an array of numbers. There MUST be two or more elements. The first two elements are longitude and latitude, precisely in that order and using decimal numbers. Altitude or elevation MAY be included as an optional third element.

Implementations SHOULD NOT extend positions beyond three elements because the semantics of extra elements are unspecified and ambiguous. Historically, some implementations have used a fourth element to carry a linear referencing measure (sometimes denoted as "M") or a numerical timestamp, but in most situations a parser will not be able to properly interpret these values. The interpretation and meaning of additional elements is beyond the scope of this specification, and additional elements MAY be ignored by parsers.

Show children

Show children

Coordinate
number
bbox
list<Coordinate>
optional

A GeoJSON object MAY have a member named "bbox" to include information on the coordinate range for its Geometries, Features, or FeatureCollections. The value of the bbox member MUST be an array of length 2*n where n is the number of dimensions represented in the contained geometries, with all axes of the most southwesterly point followed by all axes of the more northeasterly point. The axes order of a bbox follows the axes order of geometries.

Show children

Show children

Coordinate
number
and
object
optional

Returns objects where every query is satisfied.

Show children

Show children

value
list<SearchJsonQueryV2>
optional
Show children

Show children

SearchJsonQueryV2
union
Show children

Show children

or
object
optional

Returns objects where at least 1 query is satisfied.

Show children

Show children

value
list<SearchJsonQueryV2>
optional
Show children

Show children

SearchJsonQueryV2
union
in
object
optional

Returns objects where the specified field equals any of the provided values.

Show children

Show children

field
string

The name of the property in the API. To find the API name for your property, use the Get object type endpoint or check the Ontology Manager.

value
list<PropertyValue>
optional
Show children

Show children

PropertyValue
any

Represents the value of a property in the following format.

TypeJSON encodingExample
Arrayarray["alpha", "bravo", "charlie"]
AttachmentJSON encoded AttachmentProperty object{"rid":"ri.blobster.main.attachment.2f944bae-5851-4204-8615-920c969a9f2e"}
Booleanbooleantrue
Bytenumber31
DateISO 8601 extended local date string"2021-05-01"
Decimalstring"2.718281828"
Doublenumber3.14159265
Floatnumber3.14159265
GeoPointgeojson{"type":"Point","coordinates":[102.0,0.5]}
GeoShapegeojson{"type":"LineString","coordinates":[[102.0,0.0],[103.0,1.0],[104.0,0.0],[105.0,1.0]]}
Integernumber238940
Longstring"58319870951433"
Shortnumber8739
Stringstring"Call me Ishmael"
TimestampISO 8601 extended offset date-time string in UTC zone"2021-01-04T05:00:00Z"

Note that for backwards compatibility, the Boolean, Byte, Double, Float, Integer, and Short types can also be encoded as JSON strings.

doesNotIntersectPolygon
object
optional

Returns objects where the specified field does not intersect the polygon provided.

Show children

Show children

field
string

The name of the property in the API. To find the API name for your property, use the Get object type endpoint or check the Ontology Manager.

value
union
Show children

Show children

Polygon
object
optional
Show children

Show children

coordinates
list<LinearRing>
optional
Show children

Show children

LinearRing
list<Position>

A linear ring is a closed LineString with four or more positions.

The first and last positions are equivalent, and they MUST contain identical values; their representation SHOULD also be identical.

A linear ring is the boundary of a surface or the boundary of a hole in a surface.

A linear ring MUST follow the right-hand rule with respect to the area it bounds, i.e., exterior rings are counterclockwise, and holes are clockwise.

Show children

Show children

Position
list<Coordinate>

GeoJSon fundamental geometry construct.

A position is an array of numbers. There MUST be two or more elements. The first two elements are longitude and latitude, precisely in that order and using decimal numbers. Altitude or elevation MAY be included as an optional third element.

Implementations SHOULD NOT extend positions beyond three elements because the semantics of extra elements are unspecified and ambiguous. Historically, some implementations have used a fourth element to carry a linear referencing measure (sometimes denoted as "M") or a numerical timestamp, but in most situations a parser will not be able to properly interpret these values. The interpretation and meaning of additional elements is beyond the scope of this specification, and additional elements MAY be ignored by parsers.

Show children

Show children

Coordinate
number
bbox
list<Coordinate>
optional

A GeoJSON object MAY have a member named "bbox" to include information on the coordinate range for its Geometries, Features, or FeatureCollections. The value of the bbox member MUST be an array of length 2*n where n is the number of dimensions represented in the contained geometries, with all axes of the most southwesterly point followed by all axes of the more northeasterly point. The axes order of a bbox follows the axes order of geometries.

Show children

Show children

Coordinate
number
lt
object
optional

Returns objects where the specified field is less than a value.

Show children

Show children

field
string

The name of the property in the API. To find the API name for your property, use the Get object type endpoint or check the Ontology Manager.

value
any

Represents the value of a property in the following format.

TypeJSON encodingExample
Arrayarray["alpha", "bravo", "charlie"]
AttachmentJSON encoded AttachmentProperty object{"rid":"ri.blobster.main.attachment.2f944bae-5851-4204-8615-920c969a9f2e"}
Booleanbooleantrue
Bytenumber31
DateISO 8601 extended local date string"2021-05-01"
Decimalstring"2.718281828"
Doublenumber3.14159265
Floatnumber3.14159265
GeoPointgeojson{"type":"Point","coordinates":[102.0,0.5]}
GeoShapegeojson{"type":"LineString","coordinates":[[102.0,0.0],[103.0,1.0],[104.0,0.0],[105.0,1.0]]}
Integernumber238940
Longstring"58319870951433"
Shortnumber8739
Stringstring"Call me Ishmael"
TimestampISO 8601 extended offset date-time string in UTC zone"2021-01-04T05:00:00Z"

Note that for backwards compatibility, the Boolean, Byte, Double, Float, Integer, and Short types can also be encoded as JSON strings.

doesNotIntersectBoundingBox
object
optional

Returns objects where the specified field does not intersect the bounding box provided.

Show children

Show children

field
string

The name of the property in the API. To find the API name for your property, use the Get object type endpoint or check the Ontology Manager.

value
object

The top left and bottom right coordinate points that make up the bounding box.

Show children

Show children

topLeft
union
Show children

Show children

Point
object
optional
Show children

Show children

coordinates
list<Coordinate>
optional

GeoJSon fundamental geometry construct.

A position is an array of numbers. There MUST be two or more elements. The first two elements are longitude and latitude, precisely in that order and using decimal numbers. Altitude or elevation MAY be included as an optional third element.

Implementations SHOULD NOT extend positions beyond three elements because the semantics of extra elements are unspecified and ambiguous. Historically, some implementations have used a fourth element to carry a linear referencing measure (sometimes denoted as "M") or a numerical timestamp, but in most situations a parser will not be able to properly interpret these values. The interpretation and meaning of additional elements is beyond the scope of this specification, and additional elements MAY be ignored by parsers.

Show children

Show children

Coordinate
number
bbox
list<Coordinate>
optional

A GeoJSON object MAY have a member named "bbox" to include information on the coordinate range for its Geometries, Features, or FeatureCollections. The value of the bbox member MUST be an array of length 2*n where n is the number of dimensions represented in the contained geometries, with all axes of the most southwesterly point followed by all axes of the more northeasterly point. The axes order of a bbox follows the axes order of geometries.

Show children

Show children

Coordinate
number
bottomRight
union
Show children

Show children

Point
object
optional
Show children

Show children

coordinates
list<Coordinate>
optional

GeoJSon fundamental geometry construct.

A position is an array of numbers. There MUST be two or more elements. The first two elements are longitude and latitude, precisely in that order and using decimal numbers. Altitude or elevation MAY be included as an optional third element.

Implementations SHOULD NOT extend positions beyond three elements because the semantics of extra elements are unspecified and ambiguous. Historically, some implementations have used a fourth element to carry a linear referencing measure (sometimes denoted as "M") or a numerical timestamp, but in most situations a parser will not be able to properly interpret these values. The interpretation and meaning of additional elements is beyond the scope of this specification, and additional elements MAY be ignored by parsers.

Show children

Show children

Coordinate
number
bbox
list<Coordinate>
optional

A GeoJSON object MAY have a member named "bbox" to include information on the coordinate range for its Geometries, Features, or FeatureCollections. The value of the bbox member MUST be an array of length 2*n where n is the number of dimensions represented in the contained geometries, with all axes of the most southwesterly point followed by all axes of the more northeasterly point. The axes order of a bbox follows the axes order of geometries.

Show children

Show children

Coordinate
number
eq
object
optional

Returns objects where the specified field is equal to a value.

Show children

Show children

field
string

The name of the property in the API. To find the API name for your property, use the Get object type endpoint or check the Ontology Manager.

value
any

Represents the value of a property in the following format.

TypeJSON encodingExample
Arrayarray["alpha", "bravo", "charlie"]
AttachmentJSON encoded AttachmentProperty object{"rid":"ri.blobster.main.attachment.2f944bae-5851-4204-8615-920c969a9f2e"}
Booleanbooleantrue
Bytenumber31
DateISO 8601 extended local date string"2021-05-01"
Decimalstring"2.718281828"
Doublenumber3.14159265
Floatnumber3.14159265
GeoPointgeojson{"type":"Point","coordinates":[102.0,0.5]}
GeoShapegeojson{"type":"LineString","coordinates":[[102.0,0.0],[103.0,1.0],[104.0,0.0],[105.0,1.0]]}
Integernumber238940
Longstring"58319870951433"
Shortnumber8739
Stringstring"Call me Ishmael"
TimestampISO 8601 extended offset date-time string in UTC zone"2021-01-04T05:00:00Z"

Note that for backwards compatibility, the Boolean, Byte, Double, Float, Integer, and Short types can also be encoded as JSON strings.

containsAllTerms
object
optional

Returns objects where the specified field contains all of the whitespace separated words in any order in the provided value. This query supports fuzzy matching.

Show children

Show children

field
string

The name of the property in the API. To find the API name for your property, use the Get object type endpoint or check the Ontology Manager.

value
string
fuzzy
boolean
optional

Setting fuzzy to true allows approximate matching in search queries that support it.

gt
object
optional

Returns objects where the specified field is greater than a value.

Show children

Show children

field
string

The name of the property in the API. To find the API name for your property, use the Get object type endpoint or check the Ontology Manager.

value
any

Represents the value of a property in the following format.

TypeJSON encodingExample
Arrayarray["alpha", "bravo", "charlie"]
AttachmentJSON encoded AttachmentProperty object{"rid":"ri.blobster.main.attachment.2f944bae-5851-4204-8615-920c969a9f2e"}
Booleanbooleantrue
Bytenumber31
DateISO 8601 extended local date string"2021-05-01"
Decimalstring"2.718281828"
Doublenumber3.14159265
Floatnumber3.14159265
GeoPointgeojson{"type":"Point","coordinates":[102.0,0.5]}
GeoShapegeojson{"type":"LineString","coordinates":[[102.0,0.0],[103.0,1.0],[104.0,0.0],[105.0,1.0]]}
Integernumber238940
Longstring"58319870951433"
Shortnumber8739
Stringstring"Call me Ishmael"
TimestampISO 8601 extended offset date-time string in UTC zone"2021-01-04T05:00:00Z"

Note that for backwards compatibility, the Boolean, Byte, Double, Float, Integer, and Short types can also be encoded as JSON strings.

withinDistanceOf
object
optional

Returns objects where the specified field contains a point within the distance provided of the center point.

Show children

Show children

field
string

The name of the property in the API. To find the API name for your property, use the Get object type endpoint or check the Ontology Manager.

value
object

The coordinate point to use as the center of the distance query.

Show children

Show children

center
union
Show children

Show children

Point
object
optional
Show children

Show children

coordinates
list<Coordinate>
optional

GeoJSon fundamental geometry construct.

A position is an array of numbers. There MUST be two or more elements. The first two elements are longitude and latitude, precisely in that order and using decimal numbers. Altitude or elevation MAY be included as an optional third element.

Implementations SHOULD NOT extend positions beyond three elements because the semantics of extra elements are unspecified and ambiguous. Historically, some implementations have used a fourth element to carry a linear referencing measure (sometimes denoted as "M") or a numerical timestamp, but in most situations a parser will not be able to properly interpret these values. The interpretation and meaning of additional elements is beyond the scope of this specification, and additional elements MAY be ignored by parsers.

Show children

Show children

Coordinate
number
bbox
list<Coordinate>
optional

A GeoJSON object MAY have a member named "bbox" to include information on the coordinate range for its Geometries, Features, or FeatureCollections. The value of the bbox member MUST be an array of length 2*n where n is the number of dimensions represented in the contained geometries, with all axes of the most southwesterly point followed by all axes of the more northeasterly point. The axes order of a bbox follows the axes order of geometries.

Show children

Show children

Coordinate
number
distance
object

A measurement of distance.

Show children

Show children

value
number
unit
string (enum)

Enum values: MILLIMETERS, CENTIMETERS, METERS, KILOMETERS, INCHES, FEET, YARDS, MILES, NAUTICAL_MILES

withinBoundingBox
object
optional

Returns objects where the specified field contains a point within the bounding box provided.

Show children

Show children

field
string

The name of the property in the API. To find the API name for your property, use the Get object type endpoint or check the Ontology Manager.

value
object

The top left and bottom right coordinate points that make up the bounding box.

Show children

Show children

topLeft
union
Show children

Show children

Point
object
optional
Show children

Show children

coordinates
list<Coordinate>
optional

GeoJSon fundamental geometry construct.

A position is an array of numbers. There MUST be two or more elements. The first two elements are longitude and latitude, precisely in that order and using decimal numbers. Altitude or elevation MAY be included as an optional third element.

Implementations SHOULD NOT extend positions beyond three elements because the semantics of extra elements are unspecified and ambiguous. Historically, some implementations have used a fourth element to carry a linear referencing measure (sometimes denoted as "M") or a numerical timestamp, but in most situations a parser will not be able to properly interpret these values. The interpretation and meaning of additional elements is beyond the scope of this specification, and additional elements MAY be ignored by parsers.

Show children

Show children

Coordinate
number
bbox
list<Coordinate>
optional

A GeoJSON object MAY have a member named "bbox" to include information on the coordinate range for its Geometries, Features, or FeatureCollections. The value of the bbox member MUST be an array of length 2*n where n is the number of dimensions represented in the contained geometries, with all axes of the most southwesterly point followed by all axes of the more northeasterly point. The axes order of a bbox follows the axes order of geometries.

Show children

Show children

Coordinate
number
bottomRight
union
Show children

Show children

Point
object
optional
Show children

Show children

coordinates
list<Coordinate>
optional

GeoJSon fundamental geometry construct.

A position is an array of numbers. There MUST be two or more elements. The first two elements are longitude and latitude, precisely in that order and using decimal numbers. Altitude or elevation MAY be included as an optional third element.

Implementations SHOULD NOT extend positions beyond three elements because the semantics of extra elements are unspecified and ambiguous. Historically, some implementations have used a fourth element to carry a linear referencing measure (sometimes denoted as "M") or a numerical timestamp, but in most situations a parser will not be able to properly interpret these values. The interpretation and meaning of additional elements is beyond the scope of this specification, and additional elements MAY be ignored by parsers.

Show children

Show children

Coordinate
number
bbox
list<Coordinate>
optional

A GeoJSON object MAY have a member named "bbox" to include information on the coordinate range for its Geometries, Features, or FeatureCollections. The value of the bbox member MUST be an array of length 2*n where n is the number of dimensions represented in the contained geometries, with all axes of the most southwesterly point followed by all axes of the more northeasterly point. The axes order of a bbox follows the axes order of geometries.

Show children

Show children

Coordinate
number
contains
object
optional

Returns objects where the specified array contains a value.

Show children

Show children

field
string

The name of the property in the API. To find the API name for your property, use the Get object type endpoint or check the Ontology Manager.

value
any

Represents the value of a property in the following format.

TypeJSON encodingExample
Arrayarray["alpha", "bravo", "charlie"]
AttachmentJSON encoded AttachmentProperty object{"rid":"ri.blobster.main.attachment.2f944bae-5851-4204-8615-920c969a9f2e"}
Booleanbooleantrue
Bytenumber31
DateISO 8601 extended local date string"2021-05-01"
Decimalstring"2.718281828"
Doublenumber3.14159265
Floatnumber3.14159265
GeoPointgeojson{"type":"Point","coordinates":[102.0,0.5]}
GeoShapegeojson{"type":"LineString","coordinates":[[102.0,0.0],[103.0,1.0],[104.0,0.0],[105.0,1.0]]}
Integernumber238940
Longstring"58319870951433"
Shortnumber8739
Stringstring"Call me Ishmael"
TimestampISO 8601 extended offset date-time string in UTC zone"2021-01-04T05:00:00Z"

Note that for backwards compatibility, the Boolean, Byte, Double, Float, Integer, and Short types can also be encoded as JSON strings.

not
object
optional

Returns objects where the query is not satisfied.

Show children

Show children

value
union
intersectsBoundingBox
object
optional

Returns objects where the specified field intersects the bounding box provided.

Show children

Show children

field
string

The name of the property in the API. To find the API name for your property, use the Get object type endpoint or check the Ontology Manager.

value
object

The top left and bottom right coordinate points that make up the bounding box.

Show children

Show children

topLeft
union
Show children

Show children

Point
object
optional
Show children

Show children

coordinates
list<Coordinate>
optional

GeoJSon fundamental geometry construct.

A position is an array of numbers. There MUST be two or more elements. The first two elements are longitude and latitude, precisely in that order and using decimal numbers. Altitude or elevation MAY be included as an optional third element.

Implementations SHOULD NOT extend positions beyond three elements because the semantics of extra elements are unspecified and ambiguous. Historically, some implementations have used a fourth element to carry a linear referencing measure (sometimes denoted as "M") or a numerical timestamp, but in most situations a parser will not be able to properly interpret these values. The interpretation and meaning of additional elements is beyond the scope of this specification, and additional elements MAY be ignored by parsers.

Show children

Show children

Coordinate
number
bbox
list<Coordinate>
optional

A GeoJSON object MAY have a member named "bbox" to include information on the coordinate range for its Geometries, Features, or FeatureCollections. The value of the bbox member MUST be an array of length 2*n where n is the number of dimensions represented in the contained geometries, with all axes of the most southwesterly point followed by all axes of the more northeasterly point. The axes order of a bbox follows the axes order of geometries.

Show children

Show children

Coordinate
number
bottomRight
union
Show children

Show children

Point
object
optional
Show children

Show children

coordinates
list<Coordinate>
optional

GeoJSon fundamental geometry construct.

A position is an array of numbers. There MUST be two or more elements. The first two elements are longitude and latitude, precisely in that order and using decimal numbers. Altitude or elevation MAY be included as an optional third element.

Implementations SHOULD NOT extend positions beyond three elements because the semantics of extra elements are unspecified and ambiguous. Historically, some implementations have used a fourth element to carry a linear referencing measure (sometimes denoted as "M") or a numerical timestamp, but in most situations a parser will not be able to properly interpret these values. The interpretation and meaning of additional elements is beyond the scope of this specification, and additional elements MAY be ignored by parsers.

Show children

Show children

Coordinate
number
bbox
list<Coordinate>
optional

A GeoJSON object MAY have a member named "bbox" to include information on the coordinate range for its Geometries, Features, or FeatureCollections. The value of the bbox member MUST be an array of length 2*n where n is the number of dimensions represented in the contained geometries, with all axes of the most southwesterly point followed by all axes of the more northeasterly point. The axes order of a bbox follows the axes order of geometries.

Show children

Show children

Coordinate
number
and
object
optional

Returns objects where every query is satisfied.

Show children

Show children

value
list<SearchJsonQueryV2>
optional
Show children

Show children

SearchJsonQueryV2
union
isNull
object
optional

Returns objects based on the existence of the specified field.

Show children

Show children

field
string

The name of the property in the API. To find the API name for your property, use the Get object type endpoint or check the Ontology Manager.

value
boolean
containsAllTermsInOrderPrefixLastTerm
object
optional

Returns objects where the specified field contains all of the terms in the order provided, but they do have to be adjacent to each other. The last term can be a partial prefix match.

Show children

Show children

field
string

The name of the property in the API. To find the API name for your property, use the Get object type endpoint or check the Ontology Manager.

value
string
containsAnyTerm
object
optional

Returns objects where the specified field contains any of the whitespace separated words in any order in the provided value. This query supports fuzzy matching.

Show children

Show children

field
string

The name of the property in the API. To find the API name for your property, use the Get object type endpoint or check the Ontology Manager.

value
string
fuzzy
boolean
optional

Setting fuzzy to true allows approximate matching in search queries that support it.

gte
object
optional

Returns objects where the specified field is greater than or equal to a value.

Show children

Show children

field
string

The name of the property in the API. To find the API name for your property, use the Get object type endpoint or check the Ontology Manager.

value
any

Represents the value of a property in the following format.

TypeJSON encodingExample
Arrayarray["alpha", "bravo", "charlie"]
AttachmentJSON encoded AttachmentProperty object{"rid":"ri.blobster.main.attachment.2f944bae-5851-4204-8615-920c969a9f2e"}
Booleanbooleantrue
Bytenumber31
DateISO 8601 extended local date string"2021-05-01"
Decimalstring"2.718281828"
Doublenumber3.14159265
Floatnumber3.14159265
GeoPointgeojson{"type":"Point","coordinates":[102.0,0.5]}
GeoShapegeojson{"type":"LineString","coordinates":[[102.0,0.0],[103.0,1.0],[104.0,0.0],[105.0,1.0]]}
Integernumber238940
Longstring"58319870951433"
Shortnumber8739
Stringstring"Call me Ishmael"
TimestampISO 8601 extended offset date-time string in UTC zone"2021-01-04T05:00:00Z"

Note that for backwards compatibility, the Boolean, Byte, Double, Float, Integer, and Short types can also be encoded as JSON strings.

containsAllTermsInOrder
object
optional

Returns objects where the specified field contains all of the terms in the order provided, but they do have to be adjacent to each other.

Show children

Show children

field
string

The name of the property in the API. To find the API name for your property, use the Get object type endpoint or check the Ontology Manager.

value
string
withinPolygon
object
optional

Returns objects where the specified field contains a point within the polygon provided.

Show children

Show children

field
string

The name of the property in the API. To find the API name for your property, use the Get object type endpoint or check the Ontology Manager.

value
union
Show children

Show children

Polygon
object
optional
Show children

Show children

coordinates
list<LinearRing>
optional
Show children

Show children

LinearRing
list<Position>

A linear ring is a closed LineString with four or more positions.

The first and last positions are equivalent, and they MUST contain identical values; their representation SHOULD also be identical.

A linear ring is the boundary of a surface or the boundary of a hole in a surface.

A linear ring MUST follow the right-hand rule with respect to the area it bounds, i.e., exterior rings are counterclockwise, and holes are clockwise.

Show children

Show children

Position
list<Coordinate>

GeoJSon fundamental geometry construct.

A position is an array of numbers. There MUST be two or more elements. The first two elements are longitude and latitude, precisely in that order and using decimal numbers. Altitude or elevation MAY be included as an optional third element.

Implementations SHOULD NOT extend positions beyond three elements because the semantics of extra elements are unspecified and ambiguous. Historically, some implementations have used a fourth element to carry a linear referencing measure (sometimes denoted as "M") or a numerical timestamp, but in most situations a parser will not be able to properly interpret these values. The interpretation and meaning of additional elements is beyond the scope of this specification, and additional elements MAY be ignored by parsers.

Show children

Show children

Coordinate
number
bbox
list<Coordinate>
optional

A GeoJSON object MAY have a member named "bbox" to include information on the coordinate range for its Geometries, Features, or FeatureCollections. The value of the bbox member MUST be an array of length 2*n where n is the number of dimensions represented in the contained geometries, with all axes of the most southwesterly point followed by all axes of the more northeasterly point. The axes order of a bbox follows the axes order of geometries.

Show children

Show children

Coordinate
number
intersectsPolygon
object
optional

Returns objects where the specified field intersects the polygon provided.

Show children

Show children

field
string

The name of the property in the API. To find the API name for your property, use the Get object type endpoint or check the Ontology Manager.

value
union
Show children

Show children

Polygon
object
optional
Show children

Show children

coordinates
list<LinearRing>
optional
Show children

Show children

LinearRing
list<Position>

A linear ring is a closed LineString with four or more positions.

The first and last positions are equivalent, and they MUST contain identical values; their representation SHOULD also be identical.

A linear ring is the boundary of a surface or the boundary of a hole in a surface.

A linear ring MUST follow the right-hand rule with respect to the area it bounds, i.e., exterior rings are counterclockwise, and holes are clockwise.

Show children

Show children

Position
list<Coordinate>

GeoJSon fundamental geometry construct.

A position is an array of numbers. There MUST be two or more elements. The first two elements are longitude and latitude, precisely in that order and using decimal numbers. Altitude or elevation MAY be included as an optional third element.

Implementations SHOULD NOT extend positions beyond three elements because the semantics of extra elements are unspecified and ambiguous. Historically, some implementations have used a fourth element to carry a linear referencing measure (sometimes denoted as "M") or a numerical timestamp, but in most situations a parser will not be able to properly interpret these values. The interpretation and meaning of additional elements is beyond the scope of this specification, and additional elements MAY be ignored by parsers.

Show children

Show children

Coordinate
number
bbox
list<Coordinate>
optional

A GeoJSON object MAY have a member named "bbox" to include information on the coordinate range for its Geometries, Features, or FeatureCollections. The value of the bbox member MUST be an array of length 2*n where n is the number of dimensions represented in the contained geometries, with all axes of the most southwesterly point followed by all axes of the more northeasterly point. The axes order of a bbox follows the axes order of geometries.

Show children

Show children

Coordinate
number
lte
object
optional

Returns objects where the specified field is less than or equal to a value.

Show children

Show children

field
string

The name of the property in the API. To find the API name for your property, use the Get object type endpoint or check the Ontology Manager.

value
any

Represents the value of a property in the following format.

TypeJSON encodingExample
Arrayarray["alpha", "bravo", "charlie"]
AttachmentJSON encoded AttachmentProperty object{"rid":"ri.blobster.main.attachment.2f944bae-5851-4204-8615-920c969a9f2e"}
Booleanbooleantrue
Bytenumber31
DateISO 8601 extended local date string"2021-05-01"
Decimalstring"2.718281828"
Doublenumber3.14159265
Floatnumber3.14159265
GeoPointgeojson{"type":"Point","coordinates":[102.0,0.5]}
GeoShapegeojson{"type":"LineString","coordinates":[[102.0,0.0],[103.0,1.0],[104.0,0.0],[105.0,1.0]]}
Integernumber238940
Longstring"58319870951433"
Shortnumber8739
Stringstring"Call me Ishmael"
TimestampISO 8601 extended offset date-time string in UTC zone"2021-01-04T05:00:00Z"

Note that for backwards compatibility, the Boolean, Byte, Double, Float, Integer, and Short types can also be encoded as JSON strings.

startsWith
object
optional

Returns objects where the specified field starts with the provided value.

Show children

Show children

field
string

The name of the property in the API. To find the API name for your property, use the Get object type endpoint or check the Ontology Manager.

value
string
isNull
object
optional

Returns objects based on the existence of the specified field.

Show children

Show children

field
string

The name of the property in the API. To find the API name for your property, use the Get object type endpoint or check the Ontology Manager.

value
boolean
containsAllTermsInOrderPrefixLastTerm
object
optional

Returns objects where the specified field contains all of the terms in the order provided, but they do have to be adjacent to each other. The last term can be a partial prefix match.

Show children

Show children

field
string

The name of the property in the API. To find the API name for your property, use the Get object type endpoint or check the Ontology Manager.

value
string
containsAnyTerm
object
optional

Returns objects where the specified field contains any of the whitespace separated words in any order in the provided value. This query supports fuzzy matching.

Show children

Show children

field
string

The name of the property in the API. To find the API name for your property, use the Get object type endpoint or check the Ontology Manager.

value
string
fuzzy
boolean
optional

Setting fuzzy to true allows approximate matching in search queries that support it.

gte
object
optional

Returns objects where the specified field is greater than or equal to a value.

Show children

Show children

field
string

The name of the property in the API. To find the API name for your property, use the Get object type endpoint or check the Ontology Manager.

value
any

Represents the value of a property in the following format.

TypeJSON encodingExample
Arrayarray["alpha", "bravo", "charlie"]
AttachmentJSON encoded AttachmentProperty object{"rid":"ri.blobster.main.attachment.2f944bae-5851-4204-8615-920c969a9f2e"}
Booleanbooleantrue
Bytenumber31
DateISO 8601 extended local date string"2021-05-01"
Decimalstring"2.718281828"
Doublenumber3.14159265
Floatnumber3.14159265
GeoPointgeojson{"type":"Point","coordinates":[102.0,0.5]}
GeoShapegeojson{"type":"LineString","coordinates":[[102.0,0.0],[103.0,1.0],[104.0,0.0],[105.0,1.0]]}
Integernumber238940
Longstring"58319870951433"
Shortnumber8739
Stringstring"Call me Ishmael"
TimestampISO 8601 extended offset date-time string in UTC zone"2021-01-04T05:00:00Z"

Note that for backwards compatibility, the Boolean, Byte, Double, Float, Integer, and Short types can also be encoded as JSON strings.

containsAllTermsInOrder
object
optional

Returns objects where the specified field contains all of the terms in the order provided, but they do have to be adjacent to each other.

Show children

Show children

field
string

The name of the property in the API. To find the API name for your property, use the Get object type endpoint or check the Ontology Manager.

value
string
withinPolygon
object
optional

Returns objects where the specified field contains a point within the polygon provided.

Show children

Show children

field
string

The name of the property in the API. To find the API name for your property, use the Get object type endpoint or check the Ontology Manager.

value
union
Show children

Show children

Polygon
object
optional
Show children

Show children

coordinates
list<LinearRing>
optional
Show children

Show children

LinearRing
list<Position>

A linear ring is a closed LineString with four or more positions.

The first and last positions are equivalent, and they MUST contain identical values; their representation SHOULD also be identical.

A linear ring is the boundary of a surface or the boundary of a hole in a surface.

A linear ring MUST follow the right-hand rule with respect to the area it bounds, i.e., exterior rings are counterclockwise, and holes are clockwise.

Show children

Show children

Position
list<Coordinate>

GeoJSon fundamental geometry construct.

A position is an array of numbers. There MUST be two or more elements. The first two elements are longitude and latitude, precisely in that order and using decimal numbers. Altitude or elevation MAY be included as an optional third element.

Implementations SHOULD NOT extend positions beyond three elements because the semantics of extra elements are unspecified and ambiguous. Historically, some implementations have used a fourth element to carry a linear referencing measure (sometimes denoted as "M") or a numerical timestamp, but in most situations a parser will not be able to properly interpret these values. The interpretation and meaning of additional elements is beyond the scope of this specification, and additional elements MAY be ignored by parsers.

Show children

Show children

Coordinate
number
bbox
list<Coordinate>
optional

A GeoJSON object MAY have a member named "bbox" to include information on the coordinate range for its Geometries, Features, or FeatureCollections. The value of the bbox member MUST be an array of length 2*n where n is the number of dimensions represented in the contained geometries, with all axes of the most southwesterly point followed by all axes of the more northeasterly point. The axes order of a bbox follows the axes order of geometries.

Show children

Show children

Coordinate
number
intersectsPolygon
object
optional

Returns objects where the specified field intersects the polygon provided.

Show children

Show children

field
string

The name of the property in the API. To find the API name for your property, use the Get object type endpoint or check the Ontology Manager.

value
union
Show children

Show children

Polygon
object
optional
Show children

Show children

coordinates
list<LinearRing>
optional
Show children

Show children

LinearRing
list<Position>

A linear ring is a closed LineString with four or more positions.

The first and last positions are equivalent, and they MUST contain identical values; their representation SHOULD also be identical.

A linear ring is the boundary of a surface or the boundary of a hole in a surface.

A linear ring MUST follow the right-hand rule with respect to the area it bounds, i.e., exterior rings are counterclockwise, and holes are clockwise.

Show children

Show children

Position
list<Coordinate>

GeoJSon fundamental geometry construct.

A position is an array of numbers. There MUST be two or more elements. The first two elements are longitude and latitude, precisely in that order and using decimal numbers. Altitude or elevation MAY be included as an optional third element.

Implementations SHOULD NOT extend positions beyond three elements because the semantics of extra elements are unspecified and ambiguous. Historically, some implementations have used a fourth element to carry a linear referencing measure (sometimes denoted as "M") or a numerical timestamp, but in most situations a parser will not be able to properly interpret these values. The interpretation and meaning of additional elements is beyond the scope of this specification, and additional elements MAY be ignored by parsers.

Show children

Show children

Coordinate
number
bbox
list<Coordinate>
optional

A GeoJSON object MAY have a member named "bbox" to include information on the coordinate range for its Geometries, Features, or FeatureCollections. The value of the bbox member MUST be an array of length 2*n where n is the number of dimensions represented in the contained geometries, with all axes of the most southwesterly point followed by all axes of the more northeasterly point. The axes order of a bbox follows the axes order of geometries.

Show children

Show children

Coordinate
number
lte
object
optional

Returns objects where the specified field is less than or equal to a value.

Show children

Show children

field
string

The name of the property in the API. To find the API name for your property, use the Get object type endpoint or check the Ontology Manager.

value
any

Represents the value of a property in the following format.

TypeJSON encodingExample
Arrayarray["alpha", "bravo", "charlie"]
AttachmentJSON encoded AttachmentProperty object{"rid":"ri.blobster.main.attachment.2f944bae-5851-4204-8615-920c969a9f2e"}
Booleanbooleantrue
Bytenumber31
DateISO 8601 extended local date string"2021-05-01"
Decimalstring"2.718281828"
Doublenumber3.14159265
Floatnumber3.14159265
GeoPointgeojson{"type":"Point","coordinates":[102.0,0.5]}
GeoShapegeojson{"type":"LineString","coordinates":[[102.0,0.0],[103.0,1.0],[104.0,0.0],[105.0,1.0]]}
Integernumber238940
Longstring"58319870951433"
Shortnumber8739
Stringstring"Call me Ishmael"
TimestampISO 8601 extended offset date-time string in UTC zone"2021-01-04T05:00:00Z"

Note that for backwards compatibility, the Boolean, Byte, Double, Float, Integer, and Short types can also be encoded as JSON strings.

startsWith
object
optional

Returns objects where the specified field starts with the provided value.

Show children

Show children

field
string

The name of the property in the API. To find the API name for your property, use the Get object type endpoint or check the Ontology Manager.

value
string
searchAround
object
optional
Show children

Show children

objectSet
union

Represents the definition of an ObjectSet in the Ontology.

link
string

The name of the link type in the API. To find the API name for your Link Type, check the Ontology Manager application.

static
object
optional
Show children

Show children

objects
list<ObjectRid>
optional
Show children

Show children

ObjectRid
string

The unique resource identifier of an object, useful for interacting with other Foundry APIs.

intersect
object
optional
Show children

Show children

objectSets
list<ObjectSet>
optional
Show children

Show children

ObjectSet
union

Represents the definition of an ObjectSet in the Ontology.

subtract
object
optional
Show children

Show children

objectSets
list<ObjectSet>
optional
Show children

Show children

ObjectSet
union

Represents the definition of an ObjectSet in the Ontology.

union
object
optional
Show children

Show children

objectSets
list<ObjectSet>
optional
Show children

Show children

ObjectSet
union

Represents the definition of an ObjectSet in the Ontology.

base
object
optional
Show children

Show children

objectType
string
where
union
Show children

Show children

or
object
optional

Returns objects where at least 1 query is satisfied.

Show children

Show children

value
list<SearchJsonQueryV2>
optional
Show children

Show children

SearchJsonQueryV2
union
Show children

Show children

or
object
optional

Returns objects where at least 1 query is satisfied.

Show children

Show children

value
list<SearchJsonQueryV2>
optional
Show children

Show children

SearchJsonQueryV2
union
in
object
optional

Returns objects where the specified field equals any of the provided values.

Show children

Show children

field
string

The name of the property in the API. To find the API name for your property, use the Get object type endpoint or check the Ontology Manager.

value
list<PropertyValue>
optional
Show children

Show children

PropertyValue
any

Represents the value of a property in the following format.

TypeJSON encodingExample
Arrayarray["alpha", "bravo", "charlie"]
AttachmentJSON encoded AttachmentProperty object{"rid":"ri.blobster.main.attachment.2f944bae-5851-4204-8615-920c969a9f2e"}
Booleanbooleantrue
Bytenumber31
DateISO 8601 extended local date string"2021-05-01"
Decimalstring"2.718281828"
Doublenumber3.14159265
Floatnumber3.14159265
GeoPointgeojson{"type":"Point","coordinates":[102.0,0.5]}
GeoShapegeojson{"type":"LineString","coordinates":[[102.0,0.0],[103.0,1.0],[104.0,0.0],[105.0,1.0]]}
Integernumber238940
Longstring"58319870951433"
Shortnumber8739
Stringstring"Call me Ishmael"
TimestampISO 8601 extended offset date-time string in UTC zone"2021-01-04T05:00:00Z"

Note that for backwards compatibility, the Boolean, Byte, Double, Float, Integer, and Short types can also be encoded as JSON strings.

doesNotIntersectPolygon
object
optional

Returns objects where the specified field does not intersect the polygon provided.

Show children

Show children

field
string

The name of the property in the API. To find the API name for your property, use the Get object type endpoint or check the Ontology Manager.

value
union
Show children

Show children

Polygon
object
optional
Show children

Show children

coordinates
list<LinearRing>
optional
Show children

Show children

LinearRing
list<Position>

A linear ring is a closed LineString with four or more positions.

The first and last positions are equivalent, and they MUST contain identical values; their representation SHOULD also be identical.

A linear ring is the boundary of a surface or the boundary of a hole in a surface.

A linear ring MUST follow the right-hand rule with respect to the area it bounds, i.e., exterior rings are counterclockwise, and holes are clockwise.

Show children

Show children

Position
list<Coordinate>

GeoJSon fundamental geometry construct.

A position is an array of numbers. There MUST be two or more elements. The first two elements are longitude and latitude, precisely in that order and using decimal numbers. Altitude or elevation MAY be included as an optional third element.

Implementations SHOULD NOT extend positions beyond three elements because the semantics of extra elements are unspecified and ambiguous. Historically, some implementations have used a fourth element to carry a linear referencing measure (sometimes denoted as "M") or a numerical timestamp, but in most situations a parser will not be able to properly interpret these values. The interpretation and meaning of additional elements is beyond the scope of this specification, and additional elements MAY be ignored by parsers.

Show children

Show children

Coordinate
number
bbox
list<Coordinate>
optional

A GeoJSON object MAY have a member named "bbox" to include information on the coordinate range for its Geometries, Features, or FeatureCollections. The value of the bbox member MUST be an array of length 2*n where n is the number of dimensions represented in the contained geometries, with all axes of the most southwesterly point followed by all axes of the more northeasterly point. The axes order of a bbox follows the axes order of geometries.

Show children

Show children

Coordinate
number
lt
object
optional

Returns objects where the specified field is less than a value.

Show children

Show children

field
string

The name of the property in the API. To find the API name for your property, use the Get object type endpoint or check the Ontology Manager.

value
any

Represents the value of a property in the following format.

TypeJSON encodingExample
Arrayarray["alpha", "bravo", "charlie"]
AttachmentJSON encoded AttachmentProperty object{"rid":"ri.blobster.main.attachment.2f944bae-5851-4204-8615-920c969a9f2e"}
Booleanbooleantrue
Bytenumber31
DateISO 8601 extended local date string"2021-05-01"
Decimalstring"2.718281828"
Doublenumber3.14159265
Floatnumber3.14159265
GeoPointgeojson{"type":"Point","coordinates":[102.0,0.5]}
GeoShapegeojson{"type":"LineString","coordinates":[[102.0,0.0],[103.0,1.0],[104.0,0.0],[105.0,1.0]]}
Integernumber238940
Longstring"58319870951433"
Shortnumber8739
Stringstring"Call me Ishmael"
TimestampISO 8601 extended offset date-time string in UTC zone"2021-01-04T05:00:00Z"

Note that for backwards compatibility, the Boolean, Byte, Double, Float, Integer, and Short types can also be encoded as JSON strings.

doesNotIntersectBoundingBox
object
optional

Returns objects where the specified field does not intersect the bounding box provided.

Show children

Show children

field
string

The name of the property in the API. To find the API name for your property, use the Get object type endpoint or check the Ontology Manager.

value
object

The top left and bottom right coordinate points that make up the bounding box.

Show children

Show children

topLeft
union
Show children

Show children

Point
object
optional
Show children

Show children

coordinates
list<Coordinate>
optional

GeoJSon fundamental geometry construct.

A position is an array of numbers. There MUST be two or more elements. The first two elements are longitude and latitude, precisely in that order and using decimal numbers. Altitude or elevation MAY be included as an optional third element.

Implementations SHOULD NOT extend positions beyond three elements because the semantics of extra elements are unspecified and ambiguous. Historically, some implementations have used a fourth element to carry a linear referencing measure (sometimes denoted as "M") or a numerical timestamp, but in most situations a parser will not be able to properly interpret these values. The interpretation and meaning of additional elements is beyond the scope of this specification, and additional elements MAY be ignored by parsers.

Show children

Show children

Coordinate
number
bbox
list<Coordinate>
optional

A GeoJSON object MAY have a member named "bbox" to include information on the coordinate range for its Geometries, Features, or FeatureCollections. The value of the bbox member MUST be an array of length 2*n where n is the number of dimensions represented in the contained geometries, with all axes of the most southwesterly point followed by all axes of the more northeasterly point. The axes order of a bbox follows the axes order of geometries.

Show children

Show children

Coordinate
number
bottomRight
union
Show children

Show children

Point
object
optional
Show children

Show children

coordinates
list<Coordinate>
optional

GeoJSon fundamental geometry construct.

A position is an array of numbers. There MUST be two or more elements. The first two elements are longitude and latitude, precisely in that order and using decimal numbers. Altitude or elevation MAY be included as an optional third element.

Implementations SHOULD NOT extend positions beyond three elements because the semantics of extra elements are unspecified and ambiguous. Historically, some implementations have used a fourth element to carry a linear referencing measure (sometimes denoted as "M") or a numerical timestamp, but in most situations a parser will not be able to properly interpret these values. The interpretation and meaning of additional elements is beyond the scope of this specification, and additional elements MAY be ignored by parsers.

Show children

Show children

Coordinate
number
bbox
list<Coordinate>
optional

A GeoJSON object MAY have a member named "bbox" to include information on the coordinate range for its Geometries, Features, or FeatureCollections. The value of the bbox member MUST be an array of length 2*n where n is the number of dimensions represented in the contained geometries, with all axes of the most southwesterly point followed by all axes of the more northeasterly point. The axes order of a bbox follows the axes order of geometries.

Show children

Show children

Coordinate
number
eq
object
optional

Returns objects where the specified field is equal to a value.

Show children

Show children

field
string

The name of the property in the API. To find the API name for your property, use the Get object type endpoint or check the Ontology Manager.

value
any

Represents the value of a property in the following format.

TypeJSON encodingExample
Arrayarray["alpha", "bravo", "charlie"]
AttachmentJSON encoded AttachmentProperty object{"rid":"ri.blobster.main.attachment.2f944bae-5851-4204-8615-920c969a9f2e"}
Booleanbooleantrue
Bytenumber31
DateISO 8601 extended local date string"2021-05-01"
Decimalstring"2.718281828"
Doublenumber3.14159265
Floatnumber3.14159265
GeoPointgeojson{"type":"Point","coordinates":[102.0,0.5]}
GeoShapegeojson{"type":"LineString","coordinates":[[102.0,0.0],[103.0,1.0],[104.0,0.0],[105.0,1.0]]}
Integernumber238940
Longstring"58319870951433"
Shortnumber8739
Stringstring"Call me Ishmael"
TimestampISO 8601 extended offset date-time string in UTC zone"2021-01-04T05:00:00Z"

Note that for backwards compatibility, the Boolean, Byte, Double, Float, Integer, and Short types can also be encoded as JSON strings.

containsAllTerms
object
optional

Returns objects where the specified field contains all of the whitespace separated words in any order in the provided value. This query supports fuzzy matching.

Show children

Show children

field
string

The name of the property in the API. To find the API name for your property, use the Get object type endpoint or check the Ontology Manager.

value
string
fuzzy
boolean
optional

Setting fuzzy to true allows approximate matching in search queries that support it.

gt
object
optional

Returns objects where the specified field is greater than a value.

Show children

Show children

field
string

The name of the property in the API. To find the API name for your property, use the Get object type endpoint or check the Ontology Manager.

value
any

Represents the value of a property in the following format.

TypeJSON encodingExample
Arrayarray["alpha", "bravo", "charlie"]
AttachmentJSON encoded AttachmentProperty object{"rid":"ri.blobster.main.attachment.2f944bae-5851-4204-8615-920c969a9f2e"}
Booleanbooleantrue
Bytenumber31
DateISO 8601 extended local date string"2021-05-01"
Decimalstring"2.718281828"
Doublenumber3.14159265
Floatnumber3.14159265
GeoPointgeojson{"type":"Point","coordinates":[102.0,0.5]}
GeoShapegeojson{"type":"LineString","coordinates":[[102.0,0.0],[103.0,1.0],[104.0,0.0],[105.0,1.0]]}
Integernumber238940
Longstring"58319870951433"
Shortnumber8739
Stringstring"Call me Ishmael"
TimestampISO 8601 extended offset date-time string in UTC zone"2021-01-04T05:00:00Z"

Note that for backwards compatibility, the Boolean, Byte, Double, Float, Integer, and Short types can also be encoded as JSON strings.

withinDistanceOf
object
optional

Returns objects where the specified field contains a point within the distance provided of the center point.

Show children

Show children

field
string

The name of the property in the API. To find the API name for your property, use the Get object type endpoint or check the Ontology Manager.

value
object

The coordinate point to use as the center of the distance query.

Show children

Show children

center
union
Show children

Show children

Point
object
optional
Show children

Show children

coordinates
list<Coordinate>
optional

GeoJSon fundamental geometry construct.

A position is an array of numbers. There MUST be two or more elements. The first two elements are longitude and latitude, precisely in that order and using decimal numbers. Altitude or elevation MAY be included as an optional third element.

Implementations SHOULD NOT extend positions beyond three elements because the semantics of extra elements are unspecified and ambiguous. Historically, some implementations have used a fourth element to carry a linear referencing measure (sometimes denoted as "M") or a numerical timestamp, but in most situations a parser will not be able to properly interpret these values. The interpretation and meaning of additional elements is beyond the scope of this specification, and additional elements MAY be ignored by parsers.

Show children

Show children

Coordinate
number
bbox
list<Coordinate>
optional

A GeoJSON object MAY have a member named "bbox" to include information on the coordinate range for its Geometries, Features, or FeatureCollections. The value of the bbox member MUST be an array of length 2*n where n is the number of dimensions represented in the contained geometries, with all axes of the most southwesterly point followed by all axes of the more northeasterly point. The axes order of a bbox follows the axes order of geometries.

Show children

Show children

Coordinate
number
distance
object

A measurement of distance.

Show children

Show children

value
number
unit
string (enum)

Enum values: MILLIMETERS, CENTIMETERS, METERS, KILOMETERS, INCHES, FEET, YARDS, MILES, NAUTICAL_MILES

withinBoundingBox
object
optional

Returns objects where the specified field contains a point within the bounding box provided.

Show children

Show children

field
string

The name of the property in the API. To find the API name for your property, use the Get object type endpoint or check the Ontology Manager.

value
object

The top left and bottom right coordinate points that make up the bounding box.

Show children

Show children

topLeft
union
Show children

Show children

Point
object
optional
Show children

Show children

coordinates
list<Coordinate>
optional

GeoJSon fundamental geometry construct.

A position is an array of numbers. There MUST be two or more elements. The first two elements are longitude and latitude, precisely in that order and using decimal numbers. Altitude or elevation MAY be included as an optional third element.

Implementations SHOULD NOT extend positions beyond three elements because the semantics of extra elements are unspecified and ambiguous. Historically, some implementations have used a fourth element to carry a linear referencing measure (sometimes denoted as "M") or a numerical timestamp, but in most situations a parser will not be able to properly interpret these values. The interpretation and meaning of additional elements is beyond the scope of this specification, and additional elements MAY be ignored by parsers.

Show children

Show children

Coordinate
number
bbox
list<Coordinate>
optional

A GeoJSON object MAY have a member named "bbox" to include information on the coordinate range for its Geometries, Features, or FeatureCollections. The value of the bbox member MUST be an array of length 2*n where n is the number of dimensions represented in the contained geometries, with all axes of the most southwesterly point followed by all axes of the more northeasterly point. The axes order of a bbox follows the axes order of geometries.

Show children

Show children

Coordinate
number
bottomRight
union
Show children

Show children

Point
object
optional
Show children

Show children

coordinates
list<Coordinate>
optional

GeoJSon fundamental geometry construct.

A position is an array of numbers. There MUST be two or more elements. The first two elements are longitude and latitude, precisely in that order and using decimal numbers. Altitude or elevation MAY be included as an optional third element.

Implementations SHOULD NOT extend positions beyond three elements because the semantics of extra elements are unspecified and ambiguous. Historically, some implementations have used a fourth element to carry a linear referencing measure (sometimes denoted as "M") or a numerical timestamp, but in most situations a parser will not be able to properly interpret these values. The interpretation and meaning of additional elements is beyond the scope of this specification, and additional elements MAY be ignored by parsers.

Show children

Show children

Coordinate
number
bbox
list<Coordinate>
optional

A GeoJSON object MAY have a member named "bbox" to include information on the coordinate range for its Geometries, Features, or FeatureCollections. The value of the bbox member MUST be an array of length 2*n where n is the number of dimensions represented in the contained geometries, with all axes of the most southwesterly point followed by all axes of the more northeasterly point. The axes order of a bbox follows the axes order of geometries.

Show children

Show children

Coordinate
number
contains
object
optional

Returns objects where the specified array contains a value.

Show children

Show children

field
string

The name of the property in the API. To find the API name for your property, use the Get object type endpoint or check the Ontology Manager.

value
any

Represents the value of a property in the following format.

TypeJSON encodingExample
Arrayarray["alpha", "bravo", "charlie"]
AttachmentJSON encoded AttachmentProperty object{"rid":"ri.blobster.main.attachment.2f944bae-5851-4204-8615-920c969a9f2e"}
Booleanbooleantrue
Bytenumber31
DateISO 8601 extended local date string"2021-05-01"
Decimalstring"2.718281828"
Doublenumber3.14159265
Floatnumber3.14159265
GeoPointgeojson{"type":"Point","coordinates":[102.0,0.5]}
GeoShapegeojson{"type":"LineString","coordinates":[[102.0,0.0],[103.0,1.0],[104.0,0.0],[105.0,1.0]]}
Integernumber238940
Longstring"58319870951433"
Shortnumber8739
Stringstring"Call me Ishmael"
TimestampISO 8601 extended offset date-time string in UTC zone"2021-01-04T05:00:00Z"

Note that for backwards compatibility, the Boolean, Byte, Double, Float, Integer, and Short types can also be encoded as JSON strings.

not
object
optional

Returns objects where the query is not satisfied.

Show children

Show children

value
union
intersectsBoundingBox
object
optional

Returns objects where the specified field intersects the bounding box provided.

Show children

Show children

field
string

The name of the property in the API. To find the API name for your property, use the Get object type endpoint or check the Ontology Manager.

value
object

The top left and bottom right coordinate points that make up the bounding box.

Show children

Show children

topLeft
union
Show children

Show children

Point
object
optional
Show children

Show children

coordinates
list<Coordinate>
optional

GeoJSon fundamental geometry construct.

A position is an array of numbers. There MUST be two or more elements. The first two elements are longitude and latitude, precisely in that order and using decimal numbers. Altitude or elevation MAY be included as an optional third element.

Implementations SHOULD NOT extend positions beyond three elements because the semantics of extra elements are unspecified and ambiguous. Historically, some implementations have used a fourth element to carry a linear referencing measure (sometimes denoted as "M") or a numerical timestamp, but in most situations a parser will not be able to properly interpret these values. The interpretation and meaning of additional elements is beyond the scope of this specification, and additional elements MAY be ignored by parsers.

Show children

Show children

Coordinate
number
bbox
list<Coordinate>
optional

A GeoJSON object MAY have a member named "bbox" to include information on the coordinate range for its Geometries, Features, or FeatureCollections. The value of the bbox member MUST be an array of length 2*n where n is the number of dimensions represented in the contained geometries, with all axes of the most southwesterly point followed by all axes of the more northeasterly point. The axes order of a bbox follows the axes order of geometries.

Show children

Show children

Coordinate
number
bottomRight
union
Show children

Show children

Point
object
optional
Show children

Show children

coordinates
list<Coordinate>
optional

GeoJSon fundamental geometry construct.

A position is an array of numbers. There MUST be two or more elements. The first two elements are longitude and latitude, precisely in that order and using decimal numbers. Altitude or elevation MAY be included as an optional third element.

Implementations SHOULD NOT extend positions beyond three elements because the semantics of extra elements are unspecified and ambiguous. Historically, some implementations have used a fourth element to carry a linear referencing measure (sometimes denoted as "M") or a numerical timestamp, but in most situations a parser will not be able to properly interpret these values. The interpretation and meaning of additional elements is beyond the scope of this specification, and additional elements MAY be ignored by parsers.

Show children

Show children

Coordinate
number
bbox
list<Coordinate>
optional

A GeoJSON object MAY have a member named "bbox" to include information on the coordinate range for its Geometries, Features, or FeatureCollections. The value of the bbox member MUST be an array of length 2*n where n is the number of dimensions represented in the contained geometries, with all axes of the most southwesterly point followed by all axes of the more northeasterly point. The axes order of a bbox follows the axes order of geometries.

Show children

Show children

Coordinate
number
and
object
optional

Returns objects where every query is satisfied.

Show children

Show children

value
list<SearchJsonQueryV2>
optional
Show children

Show children

SearchJsonQueryV2
union
isNull
object
optional

Returns objects based on the existence of the specified field.

Show children

Show children

field
string

The name of the property in the API. To find the API name for your property, use the Get object type endpoint or check the Ontology Manager.

value
boolean
containsAllTermsInOrderPrefixLastTerm
object
optional

Returns objects where the specified field contains all of the terms in the order provided, but they do have to be adjacent to each other. The last term can be a partial prefix match.

Show children

Show children

field
string

The name of the property in the API. To find the API name for your property, use the Get object type endpoint or check the Ontology Manager.

value
string
containsAnyTerm
object
optional

Returns objects where the specified field contains any of the whitespace separated words in any order in the provided value. This query supports fuzzy matching.

Show children

Show children

field
string

The name of the property in the API. To find the API name for your property, use the Get object type endpoint or check the Ontology Manager.

value
string
fuzzy
boolean
optional

Setting fuzzy to true allows approximate matching in search queries that support it.

gte
object
optional

Returns objects where the specified field is greater than or equal to a value.

Show children

Show children

field
string

The name of the property in the API. To find the API name for your property, use the Get object type endpoint or check the Ontology Manager.

value
any

Represents the value of a property in the following format.

TypeJSON encodingExample
Arrayarray["alpha", "bravo", "charlie"]
AttachmentJSON encoded AttachmentProperty object{"rid":"ri.blobster.main.attachment.2f944bae-5851-4204-8615-920c969a9f2e"}
Booleanbooleantrue
Bytenumber31
DateISO 8601 extended local date string"2021-05-01"
Decimalstring"2.718281828"
Doublenumber3.14159265
Floatnumber3.14159265
GeoPointgeojson{"type":"Point","coordinates":[102.0,0.5]}
GeoShapegeojson{"type":"LineString","coordinates":[[102.0,0.0],[103.0,1.0],[104.0,0.0],[105.0,1.0]]}
Integernumber238940
Longstring"58319870951433"
Shortnumber8739
Stringstring"Call me Ishmael"
TimestampISO 8601 extended offset date-time string in UTC zone"2021-01-04T05:00:00Z"

Note that for backwards compatibility, the Boolean, Byte, Double, Float, Integer, and Short types can also be encoded as JSON strings.

containsAllTermsInOrder
object
optional

Returns objects where the specified field contains all of the terms in the order provided, but they do have to be adjacent to each other.

Show children

Show children

field
string

The name of the property in the API. To find the API name for your property, use the Get object type endpoint or check the Ontology Manager.

value
string
withinPolygon
object
optional

Returns objects where the specified field contains a point within the polygon provided.

Show children

Show children

field
string

The name of the property in the API. To find the API name for your property, use the Get object type endpoint or check the Ontology Manager.

value
union
Show children

Show children

Polygon
object
optional
Show children

Show children

coordinates
list<LinearRing>
optional
Show children

Show children

LinearRing
list<Position>

A linear ring is a closed LineString with four or more positions.

The first and last positions are equivalent, and they MUST contain identical values; their representation SHOULD also be identical.

A linear ring is the boundary of a surface or the boundary of a hole in a surface.

A linear ring MUST follow the right-hand rule with respect to the area it bounds, i.e., exterior rings are counterclockwise, and holes are clockwise.

Show children

Show children

Position
list<Coordinate>

GeoJSon fundamental geometry construct.

A position is an array of numbers. There MUST be two or more elements. The first two elements are longitude and latitude, precisely in that order and using decimal numbers. Altitude or elevation MAY be included as an optional third element.

Implementations SHOULD NOT extend positions beyond three elements because the semantics of extra elements are unspecified and ambiguous. Historically, some implementations have used a fourth element to carry a linear referencing measure (sometimes denoted as "M") or a numerical timestamp, but in most situations a parser will not be able to properly interpret these values. The interpretation and meaning of additional elements is beyond the scope of this specification, and additional elements MAY be ignored by parsers.

Show children

Show children

Coordinate
number
bbox
list<Coordinate>
optional

A GeoJSON object MAY have a member named "bbox" to include information on the coordinate range for its Geometries, Features, or FeatureCollections. The value of the bbox member MUST be an array of length 2*n where n is the number of dimensions represented in the contained geometries, with all axes of the most southwesterly point followed by all axes of the more northeasterly point. The axes order of a bbox follows the axes order of geometries.

Show children

Show children

Coordinate
number
intersectsPolygon
object
optional

Returns objects where the specified field intersects the polygon provided.

Show children

Show children

field
string

The name of the property in the API. To find the API name for your property, use the Get object type endpoint or check the Ontology Manager.

value
union
Show children

Show children

Polygon
object
optional
Show children

Show children

coordinates
list<LinearRing>
optional
Show children

Show children

LinearRing
list<Position>

A linear ring is a closed LineString with four or more positions.

The first and last positions are equivalent, and they MUST contain identical values; their representation SHOULD also be identical.

A linear ring is the boundary of a surface or the boundary of a hole in a surface.

A linear ring MUST follow the right-hand rule with respect to the area it bounds, i.e., exterior rings are counterclockwise, and holes are clockwise.

Show children

Show children

Position
list<Coordinate>

GeoJSon fundamental geometry construct.

A position is an array of numbers. There MUST be two or more elements. The first two elements are longitude and latitude, precisely in that order and using decimal numbers. Altitude or elevation MAY be included as an optional third element.

Implementations SHOULD NOT extend positions beyond three elements because the semantics of extra elements are unspecified and ambiguous. Historically, some implementations have used a fourth element to carry a linear referencing measure (sometimes denoted as "M") or a numerical timestamp, but in most situations a parser will not be able to properly interpret these values. The interpretation and meaning of additional elements is beyond the scope of this specification, and additional elements MAY be ignored by parsers.

Show children

Show children

Coordinate
number
bbox
list<Coordinate>
optional

A GeoJSON object MAY have a member named "bbox" to include information on the coordinate range for its Geometries, Features, or FeatureCollections. The value of the bbox member MUST be an array of length 2*n where n is the number of dimensions represented in the contained geometries, with all axes of the most southwesterly point followed by all axes of the more northeasterly point. The axes order of a bbox follows the axes order of geometries.

Show children

Show children

Coordinate
number
lte
object
optional

Returns objects where the specified field is less than or equal to a value.

Show children

Show children

field
string

The name of the property in the API. To find the API name for your property, use the Get object type endpoint or check the Ontology Manager.

value
any

Represents the value of a property in the following format.

TypeJSON encodingExample
Arrayarray["alpha", "bravo", "charlie"]
AttachmentJSON encoded AttachmentProperty object{"rid":"ri.blobster.main.attachment.2f944bae-5851-4204-8615-920c969a9f2e"}
Booleanbooleantrue
Bytenumber31
DateISO 8601 extended local date string"2021-05-01"
Decimalstring"2.718281828"
Doublenumber3.14159265
Floatnumber3.14159265
GeoPointgeojson{"type":"Point","coordinates":[102.0,0.5]}
GeoShapegeojson{"type":"LineString","coordinates":[[102.0,0.0],[103.0,1.0],[104.0,0.0],[105.0,1.0]]}
Integernumber238940
Longstring"58319870951433"
Shortnumber8739
Stringstring"Call me Ishmael"
TimestampISO 8601 extended offset date-time string in UTC zone"2021-01-04T05:00:00Z"

Note that for backwards compatibility, the Boolean, Byte, Double, Float, Integer, and Short types can also be encoded as JSON strings.

startsWith
object
optional

Returns objects where the specified field starts with the provided value.

Show children

Show children

field
string

The name of the property in the API. To find the API name for your property, use the Get object type endpoint or check the Ontology Manager.

value
string
in
object
optional

Returns objects where the specified field equals any of the provided values.

Show children

Show children

field
string

The name of the property in the API. To find the API name for your property, use the Get object type endpoint or check the Ontology Manager.

value
list<PropertyValue>
optional
Show children

Show children

PropertyValue
any

Represents the value of a property in the following format.

TypeJSON encodingExample
Arrayarray["alpha", "bravo", "charlie"]
AttachmentJSON encoded AttachmentProperty object{"rid":"ri.blobster.main.attachment.2f944bae-5851-4204-8615-920c969a9f2e"}
Booleanbooleantrue
Bytenumber31
DateISO 8601 extended local date string"2021-05-01"
Decimalstring"2.718281828"
Doublenumber3.14159265
Floatnumber3.14159265
GeoPointgeojson{"type":"Point","coordinates":[102.0,0.5]}
GeoShapegeojson{"type":"LineString","coordinates":[[102.0,0.0],[103.0,1.0],[104.0,0.0],[105.0,1.0]]}
Integernumber238940
Longstring"58319870951433"
Shortnumber8739
Stringstring"Call me Ishmael"
TimestampISO 8601 extended offset date-time string in UTC zone"2021-01-04T05:00:00Z"

Note that for backwards compatibility, the Boolean, Byte, Double, Float, Integer, and Short types can also be encoded as JSON strings.

doesNotIntersectPolygon
object
optional

Returns objects where the specified field does not intersect the polygon provided.

Show children

Show children

field
string

The name of the property in the API. To find the API name for your property, use the Get object type endpoint or check the Ontology Manager.

value
union
Show children

Show children

Polygon
object
optional
Show children

Show children

coordinates
list<LinearRing>
optional
Show children

Show children

LinearRing
list<Position>

A linear ring is a closed LineString with four or more positions.

The first and last positions are equivalent, and they MUST contain identical values; their representation SHOULD also be identical.

A linear ring is the boundary of a surface or the boundary of a hole in a surface.

A linear ring MUST follow the right-hand rule with respect to the area it bounds, i.e., exterior rings are counterclockwise, and holes are clockwise.

Show children

Show children

Position
list<Coordinate>

GeoJSon fundamental geometry construct.

A position is an array of numbers. There MUST be two or more elements. The first two elements are longitude and latitude, precisely in that order and using decimal numbers. Altitude or elevation MAY be included as an optional third element.

Implementations SHOULD NOT extend positions beyond three elements because the semantics of extra elements are unspecified and ambiguous. Historically, some implementations have used a fourth element to carry a linear referencing measure (sometimes denoted as "M") or a numerical timestamp, but in most situations a parser will not be able to properly interpret these values. The interpretation and meaning of additional elements is beyond the scope of this specification, and additional elements MAY be ignored by parsers.

Show children

Show children

Coordinate
number
bbox
list<Coordinate>
optional

A GeoJSON object MAY have a member named "bbox" to include information on the coordinate range for its Geometries, Features, or FeatureCollections. The value of the bbox member MUST be an array of length 2*n where n is the number of dimensions represented in the contained geometries, with all axes of the most southwesterly point followed by all axes of the more northeasterly point. The axes order of a bbox follows the axes order of geometries.

Show children

Show children

Coordinate
number
lt
object
optional

Returns objects where the specified field is less than a value.

Show children

Show children

field
string

The name of the property in the API. To find the API name for your property, use the Get object type endpoint or check the Ontology Manager.

value
any

Represents the value of a property in the following format.

TypeJSON encodingExample
Arrayarray["alpha", "bravo", "charlie"]
AttachmentJSON encoded AttachmentProperty object{"rid":"ri.blobster.main.attachment.2f944bae-5851-4204-8615-920c969a9f2e"}
Booleanbooleantrue
Bytenumber31
DateISO 8601 extended local date string"2021-05-01"
Decimalstring"2.718281828"
Doublenumber3.14159265
Floatnumber3.14159265
GeoPointgeojson{"type":"Point","coordinates":[102.0,0.5]}
GeoShapegeojson{"type":"LineString","coordinates":[[102.0,0.0],[103.0,1.0],[104.0,0.0],[105.0,1.0]]}
Integernumber238940
Longstring"58319870951433"
Shortnumber8739
Stringstring"Call me Ishmael"
TimestampISO 8601 extended offset date-time string in UTC zone"2021-01-04T05:00:00Z"

Note that for backwards compatibility, the Boolean, Byte, Double, Float, Integer, and Short types can also be encoded as JSON strings.

doesNotIntersectBoundingBox
object
optional

Returns objects where the specified field does not intersect the bounding box provided.

Show children

Show children

field
string

The name of the property in the API. To find the API name for your property, use the Get object type endpoint or check the Ontology Manager.

value
object

The top left and bottom right coordinate points that make up the bounding box.

Show children

Show children

topLeft
union
Show children

Show children

Point
object
optional
Show children

Show children

coordinates
list<Coordinate>
optional

GeoJSon fundamental geometry construct.

A position is an array of numbers. There MUST be two or more elements. The first two elements are longitude and latitude, precisely in that order and using decimal numbers. Altitude or elevation MAY be included as an optional third element.

Implementations SHOULD NOT extend positions beyond three elements because the semantics of extra elements are unspecified and ambiguous. Historically, some implementations have used a fourth element to carry a linear referencing measure (sometimes denoted as "M") or a numerical timestamp, but in most situations a parser will not be able to properly interpret these values. The interpretation and meaning of additional elements is beyond the scope of this specification, and additional elements MAY be ignored by parsers.

Show children

Show children

Coordinate
number
bbox
list<Coordinate>
optional

A GeoJSON object MAY have a member named "bbox" to include information on the coordinate range for its Geometries, Features, or FeatureCollections. The value of the bbox member MUST be an array of length 2*n where n is the number of dimensions represented in the contained geometries, with all axes of the most southwesterly point followed by all axes of the more northeasterly point. The axes order of a bbox follows the axes order of geometries.

Show children

Show children

Coordinate
number
bottomRight
union
Show children

Show children

Point
object
optional
Show children

Show children

coordinates
list<Coordinate>
optional

GeoJSon fundamental geometry construct.

A position is an array of numbers. There MUST be two or more elements. The first two elements are longitude and latitude, precisely in that order and using decimal numbers. Altitude or elevation MAY be included as an optional third element.

Implementations SHOULD NOT extend positions beyond three elements because the semantics of extra elements are unspecified and ambiguous. Historically, some implementations have used a fourth element to carry a linear referencing measure (sometimes denoted as "M") or a numerical timestamp, but in most situations a parser will not be able to properly interpret these values. The interpretation and meaning of additional elements is beyond the scope of this specification, and additional elements MAY be ignored by parsers.

Show children

Show children

Coordinate
number
bbox
list<Coordinate>
optional

A GeoJSON object MAY have a member named "bbox" to include information on the coordinate range for its Geometries, Features, or FeatureCollections. The value of the bbox member MUST be an array of length 2*n where n is the number of dimensions represented in the contained geometries, with all axes of the most southwesterly point followed by all axes of the more northeasterly point. The axes order of a bbox follows the axes order of geometries.

Show children

Show children

Coordinate
number
eq
object
optional

Returns objects where the specified field is equal to a value.

Show children

Show children

field
string

The name of the property in the API. To find the API name for your property, use the Get object type endpoint or check the Ontology Manager.

value
any

Represents the value of a property in the following format.

TypeJSON encodingExample
Arrayarray["alpha", "bravo", "charlie"]
AttachmentJSON encoded AttachmentProperty object{"rid":"ri.blobster.main.attachment.2f944bae-5851-4204-8615-920c969a9f2e"}
Booleanbooleantrue
Bytenumber31
DateISO 8601 extended local date string"2021-05-01"
Decimalstring"2.718281828"
Doublenumber3.14159265
Floatnumber3.14159265
GeoPointgeojson{"type":"Point","coordinates":[102.0,0.5]}
GeoShapegeojson{"type":"LineString","coordinates":[[102.0,0.0],[103.0,1.0],[104.0,0.0],[105.0,1.0]]}
Integernumber238940
Longstring"58319870951433"
Shortnumber8739
Stringstring"Call me Ishmael"
TimestampISO 8601 extended offset date-time string in UTC zone"2021-01-04T05:00:00Z"

Note that for backwards compatibility, the Boolean, Byte, Double, Float, Integer, and Short types can also be encoded as JSON strings.

containsAllTerms
object
optional

Returns objects where the specified field contains all of the whitespace separated words in any order in the provided value. This query supports fuzzy matching.

Show children

Show children

field
string

The name of the property in the API. To find the API name for your property, use the Get object type endpoint or check the Ontology Manager.

value
string
fuzzy
boolean
optional

Setting fuzzy to true allows approximate matching in search queries that support it.

gt
object
optional

Returns objects where the specified field is greater than a value.

Show children

Show children

field
string

The name of the property in the API. To find the API name for your property, use the Get object type endpoint or check the Ontology Manager.

value
any

Represents the value of a property in the following format.

TypeJSON encodingExample
Arrayarray["alpha", "bravo", "charlie"]
AttachmentJSON encoded AttachmentProperty object{"rid":"ri.blobster.main.attachment.2f944bae-5851-4204-8615-920c969a9f2e"}
Booleanbooleantrue
Bytenumber31
DateISO 8601 extended local date string"2021-05-01"
Decimalstring"2.718281828"
Doublenumber3.14159265
Floatnumber3.14159265
GeoPointgeojson{"type":"Point","coordinates":[102.0,0.5]}
GeoShapegeojson{"type":"LineString","coordinates":[[102.0,0.0],[103.0,1.0],[104.0,0.0],[105.0,1.0]]}
Integernumber238940
Longstring"58319870951433"
Shortnumber8739
Stringstring"Call me Ishmael"
TimestampISO 8601 extended offset date-time string in UTC zone"2021-01-04T05:00:00Z"

Note that for backwards compatibility, the Boolean, Byte, Double, Float, Integer, and Short types can also be encoded as JSON strings.

withinDistanceOf
object
optional

Returns objects where the specified field contains a point within the distance provided of the center point.

Show children

Show children

field
string

The name of the property in the API. To find the API name for your property, use the Get object type endpoint or check the Ontology Manager.

value
object

The coordinate point to use as the center of the distance query.

Show children

Show children

center
union
Show children

Show children

Point
object
optional
Show children

Show children

coordinates
list<Coordinate>
optional

GeoJSon fundamental geometry construct.

A position is an array of numbers. There MUST be two or more elements. The first two elements are longitude and latitude, precisely in that order and using decimal numbers. Altitude or elevation MAY be included as an optional third element.

Implementations SHOULD NOT extend positions beyond three elements because the semantics of extra elements are unspecified and ambiguous. Historically, some implementations have used a fourth element to carry a linear referencing measure (sometimes denoted as "M") or a numerical timestamp, but in most situations a parser will not be able to properly interpret these values. The interpretation and meaning of additional elements is beyond the scope of this specification, and additional elements MAY be ignored by parsers.

Show children

Show children

Coordinate
number
bbox
list<Coordinate>
optional

A GeoJSON object MAY have a member named "bbox" to include information on the coordinate range for its Geometries, Features, or FeatureCollections. The value of the bbox member MUST be an array of length 2*n where n is the number of dimensions represented in the contained geometries, with all axes of the most southwesterly point followed by all axes of the more northeasterly point. The axes order of a bbox follows the axes order of geometries.

Show children

Show children

Coordinate
number
distance
object

A measurement of distance.

Show children

Show children

value
number
unit
string (enum)

Enum values: MILLIMETERS, CENTIMETERS, METERS, KILOMETERS, INCHES, FEET, YARDS, MILES, NAUTICAL_MILES

withinBoundingBox
object
optional

Returns objects where the specified field contains a point within the bounding box provided.

Show children

Show children

field
string

The name of the property in the API. To find the API name for your property, use the Get object type endpoint or check the Ontology Manager.

value
object

The top left and bottom right coordinate points that make up the bounding box.

Show children

Show children

topLeft
union
Show children

Show children

Point
object
optional
Show children

Show children

coordinates
list<Coordinate>
optional

GeoJSon fundamental geometry construct.

A position is an array of numbers. There MUST be two or more elements. The first two elements are longitude and latitude, precisely in that order and using decimal numbers. Altitude or elevation MAY be included as an optional third element.

Implementations SHOULD NOT extend positions beyond three elements because the semantics of extra elements are unspecified and ambiguous. Historically, some implementations have used a fourth element to carry a linear referencing measure (sometimes denoted as "M") or a numerical timestamp, but in most situations a parser will not be able to properly interpret these values. The interpretation and meaning of additional elements is beyond the scope of this specification, and additional elements MAY be ignored by parsers.

Show children

Show children

Coordinate
number
bbox
list<Coordinate>
optional

A GeoJSON object MAY have a member named "bbox" to include information on the coordinate range for its Geometries, Features, or FeatureCollections. The value of the bbox member MUST be an array of length 2*n where n is the number of dimensions represented in the contained geometries, with all axes of the most southwesterly point followed by all axes of the more northeasterly point. The axes order of a bbox follows the axes order of geometries.

Show children

Show children

Coordinate
number
bottomRight
union
Show children

Show children

Point
object
optional
Show children

Show children

coordinates
list<Coordinate>
optional

GeoJSon fundamental geometry construct.

A position is an array of numbers. There MUST be two or more elements. The first two elements are longitude and latitude, precisely in that order and using decimal numbers. Altitude or elevation MAY be included as an optional third element.

Implementations SHOULD NOT extend positions beyond three elements because the semantics of extra elements are unspecified and ambiguous. Historically, some implementations have used a fourth element to carry a linear referencing measure (sometimes denoted as "M") or a numerical timestamp, but in most situations a parser will not be able to properly interpret these values. The interpretation and meaning of additional elements is beyond the scope of this specification, and additional elements MAY be ignored by parsers.

Show children

Show children

Coordinate
number
bbox
list<Coordinate>
optional

A GeoJSON object MAY have a member named "bbox" to include information on the coordinate range for its Geometries, Features, or FeatureCollections. The value of the bbox member MUST be an array of length 2*n where n is the number of dimensions represented in the contained geometries, with all axes of the most southwesterly point followed by all axes of the more northeasterly point. The axes order of a bbox follows the axes order of geometries.

Show children

Show children

Coordinate
number
contains
object
optional

Returns objects where the specified array contains a value.

Show children

Show children

field
string

The name of the property in the API. To find the API name for your property, use the Get object type endpoint or check the Ontology Manager.

value
any

Represents the value of a property in the following format.

TypeJSON encodingExample
Arrayarray["alpha", "bravo", "charlie"]
AttachmentJSON encoded AttachmentProperty object{"rid":"ri.blobster.main.attachment.2f944bae-5851-4204-8615-920c969a9f2e"}
Booleanbooleantrue
Bytenumber31
DateISO 8601 extended local date string"2021-05-01"
Decimalstring"2.718281828"
Doublenumber3.14159265
Floatnumber3.14159265
GeoPointgeojson{"type":"Point","coordinates":[102.0,0.5]}
GeoShapegeojson{"type":"LineString","coordinates":[[102.0,0.0],[103.0,1.0],[104.0,0.0],[105.0,1.0]]}
Integernumber238940
Longstring"58319870951433"
Shortnumber8739
Stringstring"Call me Ishmael"
TimestampISO 8601 extended offset date-time string in UTC zone"2021-01-04T05:00:00Z"

Note that for backwards compatibility, the Boolean, Byte, Double, Float, Integer, and Short types can also be encoded as JSON strings.

not
object
optional

Returns objects where the query is not satisfied.

Show children

Show children

value
union
Show children

Show children

or
object
optional

Returns objects where at least 1 query is satisfied.

Show children

Show children

value
list<SearchJsonQueryV2>
optional
Show children

Show children

SearchJsonQueryV2
union
in
object
optional

Returns objects where the specified field equals any of the provided values.

Show children

Show children

field
string

The name of the property in the API. To find the API name for your property, use the Get object type endpoint or check the Ontology Manager.

value
list<PropertyValue>
optional
Show children

Show children

PropertyValue
any

Represents the value of a property in the following format.

TypeJSON encodingExample
Arrayarray["alpha", "bravo", "charlie"]
AttachmentJSON encoded AttachmentProperty object{"rid":"ri.blobster.main.attachment.2f944bae-5851-4204-8615-920c969a9f2e"}
Booleanbooleantrue
Bytenumber31
DateISO 8601 extended local date string"2021-05-01"
Decimalstring"2.718281828"
Doublenumber3.14159265
Floatnumber3.14159265
GeoPointgeojson{"type":"Point","coordinates":[102.0,0.5]}
GeoShapegeojson{"type":"LineString","coordinates":[[102.0,0.0],[103.0,1.0],[104.0,0.0],[105.0,1.0]]}
Integernumber238940
Longstring"58319870951433"
Shortnumber8739
Stringstring"Call me Ishmael"
TimestampISO 8601 extended offset date-time string in UTC zone"2021-01-04T05:00:00Z"

Note that for backwards compatibility, the Boolean, Byte, Double, Float, Integer, and Short types can also be encoded as JSON strings.

doesNotIntersectPolygon
object
optional

Returns objects where the specified field does not intersect the polygon provided.

Show children

Show children

field
string

The name of the property in the API. To find the API name for your property, use the Get object type endpoint or check the Ontology Manager.

value
union
Show children

Show children

Polygon
object
optional
Show children

Show children

coordinates
list<LinearRing>
optional
Show children

Show children

LinearRing
list<Position>

A linear ring is a closed LineString with four or more positions.

The first and last positions are equivalent, and they MUST contain identical values; their representation SHOULD also be identical.

A linear ring is the boundary of a surface or the boundary of a hole in a surface.

A linear ring MUST follow the right-hand rule with respect to the area it bounds, i.e., exterior rings are counterclockwise, and holes are clockwise.

Show children

Show children

Position
list<Coordinate>

GeoJSon fundamental geometry construct.

A position is an array of numbers. There MUST be two or more elements. The first two elements are longitude and latitude, precisely in that order and using decimal numbers. Altitude or elevation MAY be included as an optional third element.

Implementations SHOULD NOT extend positions beyond three elements because the semantics of extra elements are unspecified and ambiguous. Historically, some implementations have used a fourth element to carry a linear referencing measure (sometimes denoted as "M") or a numerical timestamp, but in most situations a parser will not be able to properly interpret these values. The interpretation and meaning of additional elements is beyond the scope of this specification, and additional elements MAY be ignored by parsers.

Show children

Show children

Coordinate
number
bbox
list<Coordinate>
optional

A GeoJSON object MAY have a member named "bbox" to include information on the coordinate range for its Geometries, Features, or FeatureCollections. The value of the bbox member MUST be an array of length 2*n where n is the number of dimensions represented in the contained geometries, with all axes of the most southwesterly point followed by all axes of the more northeasterly point. The axes order of a bbox follows the axes order of geometries.

Show children

Show children

Coordinate
number
lt
object
optional

Returns objects where the specified field is less than a value.

Show children

Show children

field
string

The name of the property in the API. To find the API name for your property, use the Get object type endpoint or check the Ontology Manager.

value
any

Represents the value of a property in the following format.

TypeJSON encodingExample
Arrayarray["alpha", "bravo", "charlie"]
AttachmentJSON encoded AttachmentProperty object{"rid":"ri.blobster.main.attachment.2f944bae-5851-4204-8615-920c969a9f2e"}
Booleanbooleantrue
Bytenumber31
DateISO 8601 extended local date string"2021-05-01"
Decimalstring"2.718281828"
Doublenumber3.14159265
Floatnumber3.14159265
GeoPointgeojson{"type":"Point","coordinates":[102.0,0.5]}
GeoShapegeojson{"type":"LineString","coordinates":[[102.0,0.0],[103.0,1.0],[104.0,0.0],[105.0,1.0]]}
Integernumber238940
Longstring"58319870951433"
Shortnumber8739
Stringstring"Call me Ishmael"
TimestampISO 8601 extended offset date-time string in UTC zone"2021-01-04T05:00:00Z"

Note that for backwards compatibility, the Boolean, Byte, Double, Float, Integer, and Short types can also be encoded as JSON strings.

doesNotIntersectBoundingBox
object
optional

Returns objects where the specified field does not intersect the bounding box provided.

Show children

Show children

field
string

The name of the property in the API. To find the API name for your property, use the Get object type endpoint or check the Ontology Manager.

value
object

The top left and bottom right coordinate points that make up the bounding box.

Show children

Show children

topLeft
union
Show children

Show children

Point
object
optional
Show children

Show children

coordinates
list<Coordinate>
optional

GeoJSon fundamental geometry construct.

A position is an array of numbers. There MUST be two or more elements. The first two elements are longitude and latitude, precisely in that order and using decimal numbers. Altitude or elevation MAY be included as an optional third element.

Implementations SHOULD NOT extend positions beyond three elements because the semantics of extra elements are unspecified and ambiguous. Historically, some implementations have used a fourth element to carry a linear referencing measure (sometimes denoted as "M") or a numerical timestamp, but in most situations a parser will not be able to properly interpret these values. The interpretation and meaning of additional elements is beyond the scope of this specification, and additional elements MAY be ignored by parsers.

Show children

Show children

Coordinate
number
bbox
list<Coordinate>
optional

A GeoJSON object MAY have a member named "bbox" to include information on the coordinate range for its Geometries, Features, or FeatureCollections. The value of the bbox member MUST be an array of length 2*n where n is the number of dimensions represented in the contained geometries, with all axes of the most southwesterly point followed by all axes of the more northeasterly point. The axes order of a bbox follows the axes order of geometries.

Show children

Show children

Coordinate
number
bottomRight
union
Show children

Show children

Point
object
optional
Show children

Show children

coordinates
list<Coordinate>
optional

GeoJSon fundamental geometry construct.

A position is an array of numbers. There MUST be two or more elements. The first two elements are longitude and latitude, precisely in that order and using decimal numbers. Altitude or elevation MAY be included as an optional third element.

Implementations SHOULD NOT extend positions beyond three elements because the semantics of extra elements are unspecified and ambiguous. Historically, some implementations have used a fourth element to carry a linear referencing measure (sometimes denoted as "M") or a numerical timestamp, but in most situations a parser will not be able to properly interpret these values. The interpretation and meaning of additional elements is beyond the scope of this specification, and additional elements MAY be ignored by parsers.

Show children

Show children

Coordinate
number
bbox
list<Coordinate>
optional

A GeoJSON object MAY have a member named "bbox" to include information on the coordinate range for its Geometries, Features, or FeatureCollections. The value of the bbox member MUST be an array of length 2*n where n is the number of dimensions represented in the contained geometries, with all axes of the most southwesterly point followed by all axes of the more northeasterly point. The axes order of a bbox follows the axes order of geometries.

Show children

Show children

Coordinate
number
eq
object
optional

Returns objects where the specified field is equal to a value.

Show children

Show children

field
string

The name of the property in the API. To find the API name for your property, use the Get object type endpoint or check the Ontology Manager.

value
any

Represents the value of a property in the following format.

TypeJSON encodingExample
Arrayarray["alpha", "bravo", "charlie"]
AttachmentJSON encoded AttachmentProperty object{"rid":"ri.blobster.main.attachment.2f944bae-5851-4204-8615-920c969a9f2e"}
Booleanbooleantrue
Bytenumber31
DateISO 8601 extended local date string"2021-05-01"
Decimalstring"2.718281828"
Doublenumber3.14159265
Floatnumber3.14159265
GeoPointgeojson{"type":"Point","coordinates":[102.0,0.5]}
GeoShapegeojson{"type":"LineString","coordinates":[[102.0,0.0],[103.0,1.0],[104.0,0.0],[105.0,1.0]]}
Integernumber238940
Longstring"58319870951433"
Shortnumber8739
Stringstring"Call me Ishmael"
TimestampISO 8601 extended offset date-time string in UTC zone"2021-01-04T05:00:00Z"

Note that for backwards compatibility, the Boolean, Byte, Double, Float, Integer, and Short types can also be encoded as JSON strings.

containsAllTerms
object
optional

Returns objects where the specified field contains all of the whitespace separated words in any order in the provided value. This query supports fuzzy matching.

Show children

Show children

field
string

The name of the property in the API. To find the API name for your property, use the Get object type endpoint or check the Ontology Manager.

value
string
fuzzy
boolean
optional

Setting fuzzy to true allows approximate matching in search queries that support it.

gt
object
optional

Returns objects where the specified field is greater than a value.

Show children

Show children

field
string

The name of the property in the API. To find the API name for your property, use the Get object type endpoint or check the Ontology Manager.

value
any

Represents the value of a property in the following format.

TypeJSON encodingExample
Arrayarray["alpha", "bravo", "charlie"]
AttachmentJSON encoded AttachmentProperty object{"rid":"ri.blobster.main.attachment.2f944bae-5851-4204-8615-920c969a9f2e"}
Booleanbooleantrue
Bytenumber31
DateISO 8601 extended local date string"2021-05-01"
Decimalstring"2.718281828"
Doublenumber3.14159265
Floatnumber3.14159265
GeoPointgeojson{"type":"Point","coordinates":[102.0,0.5]}
GeoShapegeojson{"type":"LineString","coordinates":[[102.0,0.0],[103.0,1.0],[104.0,0.0],[105.0,1.0]]}
Integernumber238940
Longstring"58319870951433"
Shortnumber8739
Stringstring"Call me Ishmael"
TimestampISO 8601 extended offset date-time string in UTC zone"2021-01-04T05:00:00Z"

Note that for backwards compatibility, the Boolean, Byte, Double, Float, Integer, and Short types can also be encoded as JSON strings.

withinDistanceOf
object
optional

Returns objects where the specified field contains a point within the distance provided of the center point.

Show children

Show children

field
string

The name of the property in the API. To find the API name for your property, use the Get object type endpoint or check the Ontology Manager.

value
object

The coordinate point to use as the center of the distance query.

Show children

Show children

center
union
Show children

Show children

Point
object
optional
Show children

Show children

coordinates
list<Coordinate>
optional

GeoJSon fundamental geometry construct.

A position is an array of numbers. There MUST be two or more elements. The first two elements are longitude and latitude, precisely in that order and using decimal numbers. Altitude or elevation MAY be included as an optional third element.

Implementations SHOULD NOT extend positions beyond three elements because the semantics of extra elements are unspecified and ambiguous. Historically, some implementations have used a fourth element to carry a linear referencing measure (sometimes denoted as "M") or a numerical timestamp, but in most situations a parser will not be able to properly interpret these values. The interpretation and meaning of additional elements is beyond the scope of this specification, and additional elements MAY be ignored by parsers.

Show children

Show children

Coordinate
number
bbox
list<Coordinate>
optional

A GeoJSON object MAY have a member named "bbox" to include information on the coordinate range for its Geometries, Features, or FeatureCollections. The value of the bbox member MUST be an array of length 2*n where n is the number of dimensions represented in the contained geometries, with all axes of the most southwesterly point followed by all axes of the more northeasterly point. The axes order of a bbox follows the axes order of geometries.

Show children

Show children

Coordinate
number
distance
object

A measurement of distance.

Show children

Show children

value
number
unit
string (enum)

Enum values: MILLIMETERS, CENTIMETERS, METERS, KILOMETERS, INCHES, FEET, YARDS, MILES, NAUTICAL_MILES

withinBoundingBox
object
optional

Returns objects where the specified field contains a point within the bounding box provided.

Show children

Show children

field
string

The name of the property in the API. To find the API name for your property, use the Get object type endpoint or check the Ontology Manager.

value
object

The top left and bottom right coordinate points that make up the bounding box.

Show children

Show children

topLeft
union
Show children

Show children

Point
object
optional
Show children

Show children

coordinates
list<Coordinate>
optional

GeoJSon fundamental geometry construct.

A position is an array of numbers. There MUST be two or more elements. The first two elements are longitude and latitude, precisely in that order and using decimal numbers. Altitude or elevation MAY be included as an optional third element.

Implementations SHOULD NOT extend positions beyond three elements because the semantics of extra elements are unspecified and ambiguous. Historically, some implementations have used a fourth element to carry a linear referencing measure (sometimes denoted as "M") or a numerical timestamp, but in most situations a parser will not be able to properly interpret these values. The interpretation and meaning of additional elements is beyond the scope of this specification, and additional elements MAY be ignored by parsers.

Show children

Show children

Coordinate
number
bbox
list<Coordinate>
optional

A GeoJSON object MAY have a member named "bbox" to include information on the coordinate range for its Geometries, Features, or FeatureCollections. The value of the bbox member MUST be an array of length 2*n where n is the number of dimensions represented in the contained geometries, with all axes of the most southwesterly point followed by all axes of the more northeasterly point. The axes order of a bbox follows the axes order of geometries.

Show children

Show children

Coordinate
number
bottomRight
union
Show children

Show children

Point
object
optional
Show children

Show children

coordinates
list<Coordinate>
optional

GeoJSon fundamental geometry construct.

A position is an array of numbers. There MUST be two or more elements. The first two elements are longitude and latitude, precisely in that order and using decimal numbers. Altitude or elevation MAY be included as an optional third element.

Implementations SHOULD NOT extend positions beyond three elements because the semantics of extra elements are unspecified and ambiguous. Historically, some implementations have used a fourth element to carry a linear referencing measure (sometimes denoted as "M") or a numerical timestamp, but in most situations a parser will not be able to properly interpret these values. The interpretation and meaning of additional elements is beyond the scope of this specification, and additional elements MAY be ignored by parsers.

Show children

Show children

Coordinate
number
bbox
list<Coordinate>
optional

A GeoJSON object MAY have a member named "bbox" to include information on the coordinate range for its Geometries, Features, or FeatureCollections. The value of the bbox member MUST be an array of length 2*n where n is the number of dimensions represented in the contained geometries, with all axes of the most southwesterly point followed by all axes of the more northeasterly point. The axes order of a bbox follows the axes order of geometries.

Show children

Show children

Coordinate
number
contains
object
optional

Returns objects where the specified array contains a value.

Show children

Show children

field
string

The name of the property in the API. To find the API name for your property, use the Get object type endpoint or check the Ontology Manager.

value
any

Represents the value of a property in the following format.

TypeJSON encodingExample
Arrayarray["alpha", "bravo", "charlie"]
AttachmentJSON encoded AttachmentProperty object{"rid":"ri.blobster.main.attachment.2f944bae-5851-4204-8615-920c969a9f2e"}
Booleanbooleantrue
Bytenumber31
DateISO 8601 extended local date string"2021-05-01"
Decimalstring"2.718281828"
Doublenumber3.14159265
Floatnumber3.14159265
GeoPointgeojson{"type":"Point","coordinates":[102.0,0.5]}
GeoShapegeojson{"type":"LineString","coordinates":[[102.0,0.0],[103.0,1.0],[104.0,0.0],[105.0,1.0]]}
Integernumber238940
Longstring"58319870951433"
Shortnumber8739
Stringstring"Call me Ishmael"
TimestampISO 8601 extended offset date-time string in UTC zone"2021-01-04T05:00:00Z"

Note that for backwards compatibility, the Boolean, Byte, Double, Float, Integer, and Short types can also be encoded as JSON strings.

not
object
optional

Returns objects where the query is not satisfied.

Show children

Show children

value
union
intersectsBoundingBox
object
optional

Returns objects where the specified field intersects the bounding box provided.

Show children

Show children

field
string

The name of the property in the API. To find the API name for your property, use the Get object type endpoint or check the Ontology Manager.

value
object

The top left and bottom right coordinate points that make up the bounding box.

Show children

Show children

topLeft
union
Show children

Show children

Point
object
optional
Show children

Show children

coordinates
list<Coordinate>
optional

GeoJSon fundamental geometry construct.

A position is an array of numbers. There MUST be two or more elements. The first two elements are longitude and latitude, precisely in that order and using decimal numbers. Altitude or elevation MAY be included as an optional third element.

Implementations SHOULD NOT extend positions beyond three elements because the semantics of extra elements are unspecified and ambiguous. Historically, some implementations have used a fourth element to carry a linear referencing measure (sometimes denoted as "M") or a numerical timestamp, but in most situations a parser will not be able to properly interpret these values. The interpretation and meaning of additional elements is beyond the scope of this specification, and additional elements MAY be ignored by parsers.

Show children

Show children

Coordinate
number
bbox
list<Coordinate>
optional

A GeoJSON object MAY have a member named "bbox" to include information on the coordinate range for its Geometries, Features, or FeatureCollections. The value of the bbox member MUST be an array of length 2*n where n is the number of dimensions represented in the contained geometries, with all axes of the most southwesterly point followed by all axes of the more northeasterly point. The axes order of a bbox follows the axes order of geometries.

Show children

Show children

Coordinate
number
bottomRight
union
Show children

Show children

Point
object
optional
Show children

Show children

coordinates
list<Coordinate>
optional

GeoJSon fundamental geometry construct.

A position is an array of numbers. There MUST be two or more elements. The first two elements are longitude and latitude, precisely in that order and using decimal numbers. Altitude or elevation MAY be included as an optional third element.

Implementations SHOULD NOT extend positions beyond three elements because the semantics of extra elements are unspecified and ambiguous. Historically, some implementations have used a fourth element to carry a linear referencing measure (sometimes denoted as "M") or a numerical timestamp, but in most situations a parser will not be able to properly interpret these values. The interpretation and meaning of additional elements is beyond the scope of this specification, and additional elements MAY be ignored by parsers.

Show children

Show children

Coordinate
number
bbox
list<Coordinate>
optional

A GeoJSON object MAY have a member named "bbox" to include information on the coordinate range for its Geometries, Features, or FeatureCollections. The value of the bbox member MUST be an array of length 2*n where n is the number of dimensions represented in the contained geometries, with all axes of the most southwesterly point followed by all axes of the more northeasterly point. The axes order of a bbox follows the axes order of geometries.

Show children

Show children

Coordinate
number
and
object
optional

Returns objects where every query is satisfied.

Show children

Show children

value
list<SearchJsonQueryV2>
optional
Show children

Show children

SearchJsonQueryV2
union
isNull
object
optional

Returns objects based on the existence of the specified field.

Show children

Show children

field
string

The name of the property in the API. To find the API name for your property, use the Get object type endpoint or check the Ontology Manager.

value
boolean
containsAllTermsInOrderPrefixLastTerm
object
optional

Returns objects where the specified field contains all of the terms in the order provided, but they do have to be adjacent to each other. The last term can be a partial prefix match.

Show children

Show children

field
string

The name of the property in the API. To find the API name for your property, use the Get object type endpoint or check the Ontology Manager.

value
string
containsAnyTerm
object
optional

Returns objects where the specified field contains any of the whitespace separated words in any order in the provided value. This query supports fuzzy matching.

Show children

Show children

field
string

The name of the property in the API. To find the API name for your property, use the Get object type endpoint or check the Ontology Manager.

value
string
fuzzy
boolean
optional

Setting fuzzy to true allows approximate matching in search queries that support it.

gte
object
optional

Returns objects where the specified field is greater than or equal to a value.

Show children

Show children

field
string

The name of the property in the API. To find the API name for your property, use the Get object type endpoint or check the Ontology Manager.

value
any

Represents the value of a property in the following format.

TypeJSON encodingExample
Arrayarray["alpha", "bravo", "charlie"]
AttachmentJSON encoded AttachmentProperty object{"rid":"ri.blobster.main.attachment.2f944bae-5851-4204-8615-920c969a9f2e"}
Booleanbooleantrue
Bytenumber31
DateISO 8601 extended local date string"2021-05-01"
Decimalstring"2.718281828"
Doublenumber3.14159265
Floatnumber3.14159265
GeoPointgeojson{"type":"Point","coordinates":[102.0,0.5]}
GeoShapegeojson{"type":"LineString","coordinates":[[102.0,0.0],[103.0,1.0],[104.0,0.0],[105.0,1.0]]}
Integernumber238940
Longstring"58319870951433"
Shortnumber8739
Stringstring"Call me Ishmael"
TimestampISO 8601 extended offset date-time string in UTC zone"2021-01-04T05:00:00Z"

Note that for backwards compatibility, the Boolean, Byte, Double, Float, Integer, and Short types can also be encoded as JSON strings.

containsAllTermsInOrder
object
optional

Returns objects where the specified field contains all of the terms in the order provided, but they do have to be adjacent to each other.

Show children

Show children

field
string

The name of the property in the API. To find the API name for your property, use the Get object type endpoint or check the Ontology Manager.

value
string
withinPolygon
object
optional

Returns objects where the specified field contains a point within the polygon provided.

Show children

Show children

field
string

The name of the property in the API. To find the API name for your property, use the Get object type endpoint or check the Ontology Manager.

value
union
Show children

Show children

Polygon
object
optional
Show children

Show children

coordinates
list<LinearRing>
optional
Show children

Show children

LinearRing
list<Position>

A linear ring is a closed LineString with four or more positions.

The first and last positions are equivalent, and they MUST contain identical values; their representation SHOULD also be identical.

A linear ring is the boundary of a surface or the boundary of a hole in a surface.

A linear ring MUST follow the right-hand rule with respect to the area it bounds, i.e., exterior rings are counterclockwise, and holes are clockwise.

Show children

Show children

Position
list<Coordinate>

GeoJSon fundamental geometry construct.

A position is an array of numbers. There MUST be two or more elements. The first two elements are longitude and latitude, precisely in that order and using decimal numbers. Altitude or elevation MAY be included as an optional third element.

Implementations SHOULD NOT extend positions beyond three elements because the semantics of extra elements are unspecified and ambiguous. Historically, some implementations have used a fourth element to carry a linear referencing measure (sometimes denoted as "M") or a numerical timestamp, but in most situations a parser will not be able to properly interpret these values. The interpretation and meaning of additional elements is beyond the scope of this specification, and additional elements MAY be ignored by parsers.

Show children

Show children

Coordinate
number
bbox
list<Coordinate>
optional

A GeoJSON object MAY have a member named "bbox" to include information on the coordinate range for its Geometries, Features, or FeatureCollections. The value of the bbox member MUST be an array of length 2*n where n is the number of dimensions represented in the contained geometries, with all axes of the most southwesterly point followed by all axes of the more northeasterly point. The axes order of a bbox follows the axes order of geometries.

Show children

Show children

Coordinate
number
intersectsPolygon
object
optional

Returns objects where the specified field intersects the polygon provided.

Show children

Show children

field
string

The name of the property in the API. To find the API name for your property, use the Get object type endpoint or check the Ontology Manager.

value
union
Show children

Show children

Polygon
object
optional
Show children

Show children

coordinates
list<LinearRing>
optional
Show children

Show children

LinearRing
list<Position>

A linear ring is a closed LineString with four or more positions.

The first and last positions are equivalent, and they MUST contain identical values; their representation SHOULD also be identical.

A linear ring is the boundary of a surface or the boundary of a hole in a surface.

A linear ring MUST follow the right-hand rule with respect to the area it bounds, i.e., exterior rings are counterclockwise, and holes are clockwise.

Show children

Show children

Position
list<Coordinate>

GeoJSon fundamental geometry construct.

A position is an array of numbers. There MUST be two or more elements. The first two elements are longitude and latitude, precisely in that order and using decimal numbers. Altitude or elevation MAY be included as an optional third element.

Implementations SHOULD NOT extend positions beyond three elements because the semantics of extra elements are unspecified and ambiguous. Historically, some implementations have used a fourth element to carry a linear referencing measure (sometimes denoted as "M") or a numerical timestamp, but in most situations a parser will not be able to properly interpret these values. The interpretation and meaning of additional elements is beyond the scope of this specification, and additional elements MAY be ignored by parsers.

Show children

Show children

Coordinate
number
bbox
list<Coordinate>
optional

A GeoJSON object MAY have a member named "bbox" to include information on the coordinate range for its Geometries, Features, or FeatureCollections. The value of the bbox member MUST be an array of length 2*n where n is the number of dimensions represented in the contained geometries, with all axes of the most southwesterly point followed by all axes of the more northeasterly point. The axes order of a bbox follows the axes order of geometries.

Show children

Show children

Coordinate
number
lte
object
optional

Returns objects where the specified field is less than or equal to a value.

Show children

Show children

field
string

The name of the property in the API. To find the API name for your property, use the Get object type endpoint or check the Ontology Manager.

value
any

Represents the value of a property in the following format.

TypeJSON encodingExample
Arrayarray["alpha", "bravo", "charlie"]
AttachmentJSON encoded AttachmentProperty object{"rid":"ri.blobster.main.attachment.2f944bae-5851-4204-8615-920c969a9f2e"}
Booleanbooleantrue
Bytenumber31
DateISO 8601 extended local date string"2021-05-01"
Decimalstring"2.718281828"
Doublenumber3.14159265
Floatnumber3.14159265
GeoPointgeojson{"type":"Point","coordinates":[102.0,0.5]}
GeoShapegeojson{"type":"LineString","coordinates":[[102.0,0.0],[103.0,1.0],[104.0,0.0],[105.0,1.0]]}
Integernumber238940
Longstring"58319870951433"
Shortnumber8739
Stringstring"Call me Ishmael"
TimestampISO 8601 extended offset date-time string in UTC zone"2021-01-04T05:00:00Z"

Note that for backwards compatibility, the Boolean, Byte, Double, Float, Integer, and Short types can also be encoded as JSON strings.

startsWith
object
optional

Returns objects where the specified field starts with the provided value.

Show children

Show children

field
string

The name of the property in the API. To find the API name for your property, use the Get object type endpoint or check the Ontology Manager.

value
string
intersectsBoundingBox
object
optional

Returns objects where the specified field intersects the bounding box provided.

Show children

Show children

field
string

The name of the property in the API. To find the API name for your property, use the Get object type endpoint or check the Ontology Manager.

value
object

The top left and bottom right coordinate points that make up the bounding box.

Show children

Show children

topLeft
union
Show children

Show children

Point
object
optional
Show children

Show children

coordinates
list<Coordinate>
optional

GeoJSon fundamental geometry construct.

A position is an array of numbers. There MUST be two or more elements. The first two elements are longitude and latitude, precisely in that order and using decimal numbers. Altitude or elevation MAY be included as an optional third element.

Implementations SHOULD NOT extend positions beyond three elements because the semantics of extra elements are unspecified and ambiguous. Historically, some implementations have used a fourth element to carry a linear referencing measure (sometimes denoted as "M") or a numerical timestamp, but in most situations a parser will not be able to properly interpret these values. The interpretation and meaning of additional elements is beyond the scope of this specification, and additional elements MAY be ignored by parsers.

Show children

Show children

Coordinate
number
bbox
list<Coordinate>
optional

A GeoJSON object MAY have a member named "bbox" to include information on the coordinate range for its Geometries, Features, or FeatureCollections. The value of the bbox member MUST be an array of length 2*n where n is the number of dimensions represented in the contained geometries, with all axes of the most southwesterly point followed by all axes of the more northeasterly point. The axes order of a bbox follows the axes order of geometries.

Show children

Show children

Coordinate
number
bottomRight
union
Show children

Show children

Point
object
optional
Show children

Show children

coordinates
list<Coordinate>
optional

GeoJSon fundamental geometry construct.

A position is an array of numbers. There MUST be two or more elements. The first two elements are longitude and latitude, precisely in that order and using decimal numbers. Altitude or elevation MAY be included as an optional third element.

Implementations SHOULD NOT extend positions beyond three elements because the semantics of extra elements are unspecified and ambiguous. Historically, some implementations have used a fourth element to carry a linear referencing measure (sometimes denoted as "M") or a numerical timestamp, but in most situations a parser will not be able to properly interpret these values. The interpretation and meaning of additional elements is beyond the scope of this specification, and additional elements MAY be ignored by parsers.

Show children

Show children

Coordinate
number
bbox
list<Coordinate>
optional

A GeoJSON object MAY have a member named "bbox" to include information on the coordinate range for its Geometries, Features, or FeatureCollections. The value of the bbox member MUST be an array of length 2*n where n is the number of dimensions represented in the contained geometries, with all axes of the most southwesterly point followed by all axes of the more northeasterly point. The axes order of a bbox follows the axes order of geometries.

Show children

Show children

Coordinate
number
and
object
optional

Returns objects where every query is satisfied.

Show children

Show children

value
list<SearchJsonQueryV2>
optional
Show children

Show children

SearchJsonQueryV2
union
Show children

Show children

or
object
optional

Returns objects where at least 1 query is satisfied.

Show children

Show children

value
list<SearchJsonQueryV2>
optional
Show children

Show children

SearchJsonQueryV2
union
in
object
optional

Returns objects where the specified field equals any of the provided values.

Show children

Show children

field
string

The name of the property in the API. To find the API name for your property, use the Get object type endpoint or check the Ontology Manager.

value
list<PropertyValue>
optional
Show children

Show children

PropertyValue
any

Represents the value of a property in the following format.

TypeJSON encodingExample
Arrayarray["alpha", "bravo", "charlie"]
AttachmentJSON encoded AttachmentProperty object{"rid":"ri.blobster.main.attachment.2f944bae-5851-4204-8615-920c969a9f2e"}
Booleanbooleantrue
Bytenumber31
DateISO 8601 extended local date string"2021-05-01"
Decimalstring"2.718281828"
Doublenumber3.14159265
Floatnumber3.14159265
GeoPointgeojson{"type":"Point","coordinates":[102.0,0.5]}
GeoShapegeojson{"type":"LineString","coordinates":[[102.0,0.0],[103.0,1.0],[104.0,0.0],[105.0,1.0]]}
Integernumber238940
Longstring"58319870951433"
Shortnumber8739
Stringstring"Call me Ishmael"
TimestampISO 8601 extended offset date-time string in UTC zone"2021-01-04T05:00:00Z"

Note that for backwards compatibility, the Boolean, Byte, Double, Float, Integer, and Short types can also be encoded as JSON strings.

doesNotIntersectPolygon
object
optional

Returns objects where the specified field does not intersect the polygon provided.

Show children

Show children

field
string

The name of the property in the API. To find the API name for your property, use the Get object type endpoint or check the Ontology Manager.

value
union
Show children

Show children

Polygon
object
optional
Show children

Show children

coordinates
list<LinearRing>
optional
Show children

Show children

LinearRing
list<Position>

A linear ring is a closed LineString with four or more positions.

The first and last positions are equivalent, and they MUST contain identical values; their representation SHOULD also be identical.

A linear ring is the boundary of a surface or the boundary of a hole in a surface.

A linear ring MUST follow the right-hand rule with respect to the area it bounds, i.e., exterior rings are counterclockwise, and holes are clockwise.

Show children

Show children

Position
list<Coordinate>

GeoJSon fundamental geometry construct.

A position is an array of numbers. There MUST be two or more elements. The first two elements are longitude and latitude, precisely in that order and using decimal numbers. Altitude or elevation MAY be included as an optional third element.

Implementations SHOULD NOT extend positions beyond three elements because the semantics of extra elements are unspecified and ambiguous. Historically, some implementations have used a fourth element to carry a linear referencing measure (sometimes denoted as "M") or a numerical timestamp, but in most situations a parser will not be able to properly interpret these values. The interpretation and meaning of additional elements is beyond the scope of this specification, and additional elements MAY be ignored by parsers.

Show children

Show children

Coordinate
number
bbox
list<Coordinate>
optional

A GeoJSON object MAY have a member named "bbox" to include information on the coordinate range for its Geometries, Features, or FeatureCollections. The value of the bbox member MUST be an array of length 2*n where n is the number of dimensions represented in the contained geometries, with all axes of the most southwesterly point followed by all axes of the more northeasterly point. The axes order of a bbox follows the axes order of geometries.

Show children

Show children

Coordinate
number
lt
object
optional

Returns objects where the specified field is less than a value.

Show children

Show children

field
string

The name of the property in the API. To find the API name for your property, use the Get object type endpoint or check the Ontology Manager.

value
any

Represents the value of a property in the following format.

TypeJSON encodingExample
Arrayarray["alpha", "bravo", "charlie"]
AttachmentJSON encoded AttachmentProperty object{"rid":"ri.blobster.main.attachment.2f944bae-5851-4204-8615-920c969a9f2e"}
Booleanbooleantrue
Bytenumber31
DateISO 8601 extended local date string"2021-05-01"
Decimalstring"2.718281828"
Doublenumber3.14159265
Floatnumber3.14159265
GeoPointgeojson{"type":"Point","coordinates":[102.0,0.5]}
GeoShapegeojson{"type":"LineString","coordinates":[[102.0,0.0],[103.0,1.0],[104.0,0.0],[105.0,1.0]]}
Integernumber238940
Longstring"58319870951433"
Shortnumber8739
Stringstring"Call me Ishmael"
TimestampISO 8601 extended offset date-time string in UTC zone"2021-01-04T05:00:00Z"

Note that for backwards compatibility, the Boolean, Byte, Double, Float, Integer, and Short types can also be encoded as JSON strings.

doesNotIntersectBoundingBox
object
optional

Returns objects where the specified field does not intersect the bounding box provided.

Show children

Show children

field
string

The name of the property in the API. To find the API name for your property, use the Get object type endpoint or check the Ontology Manager.

value
object

The top left and bottom right coordinate points that make up the bounding box.

Show children

Show children

topLeft
union
Show children

Show children

Point
object
optional
Show children

Show children

coordinates
list<Coordinate>
optional

GeoJSon fundamental geometry construct.

A position is an array of numbers. There MUST be two or more elements. The first two elements are longitude and latitude, precisely in that order and using decimal numbers. Altitude or elevation MAY be included as an optional third element.

Implementations SHOULD NOT extend positions beyond three elements because the semantics of extra elements are unspecified and ambiguous. Historically, some implementations have used a fourth element to carry a linear referencing measure (sometimes denoted as "M") or a numerical timestamp, but in most situations a parser will not be able to properly interpret these values. The interpretation and meaning of additional elements is beyond the scope of this specification, and additional elements MAY be ignored by parsers.

Show children

Show children

Coordinate
number
bbox
list<Coordinate>
optional

A GeoJSON object MAY have a member named "bbox" to include information on the coordinate range for its Geometries, Features, or FeatureCollections. The value of the bbox member MUST be an array of length 2*n where n is the number of dimensions represented in the contained geometries, with all axes of the most southwesterly point followed by all axes of the more northeasterly point. The axes order of a bbox follows the axes order of geometries.

Show children

Show children

Coordinate
number
bottomRight
union
Show children

Show children

Point
object
optional
Show children

Show children

coordinates
list<Coordinate>
optional

GeoJSon fundamental geometry construct.

A position is an array of numbers. There MUST be two or more elements. The first two elements are longitude and latitude, precisely in that order and using decimal numbers. Altitude or elevation MAY be included as an optional third element.

Implementations SHOULD NOT extend positions beyond three elements because the semantics of extra elements are unspecified and ambiguous. Historically, some implementations have used a fourth element to carry a linear referencing measure (sometimes denoted as "M") or a numerical timestamp, but in most situations a parser will not be able to properly interpret these values. The interpretation and meaning of additional elements is beyond the scope of this specification, and additional elements MAY be ignored by parsers.

Show children

Show children

Coordinate
number
bbox
list<Coordinate>
optional

A GeoJSON object MAY have a member named "bbox" to include information on the coordinate range for its Geometries, Features, or FeatureCollections. The value of the bbox member MUST be an array of length 2*n where n is the number of dimensions represented in the contained geometries, with all axes of the most southwesterly point followed by all axes of the more northeasterly point. The axes order of a bbox follows the axes order of geometries.

Show children

Show children

Coordinate
number
eq
object
optional

Returns objects where the specified field is equal to a value.

Show children

Show children

field
string

The name of the property in the API. To find the API name for your property, use the Get object type endpoint or check the Ontology Manager.

value
any

Represents the value of a property in the following format.

TypeJSON encodingExample
Arrayarray["alpha", "bravo", "charlie"]
AttachmentJSON encoded AttachmentProperty object{"rid":"ri.blobster.main.attachment.2f944bae-5851-4204-8615-920c969a9f2e"}
Booleanbooleantrue
Bytenumber31
DateISO 8601 extended local date string"2021-05-01"
Decimalstring"2.718281828"
Doublenumber3.14159265
Floatnumber3.14159265
GeoPointgeojson{"type":"Point","coordinates":[102.0,0.5]}
GeoShapegeojson{"type":"LineString","coordinates":[[102.0,0.0],[103.0,1.0],[104.0,0.0],[105.0,1.0]]}
Integernumber238940
Longstring"58319870951433"
Shortnumber8739
Stringstring"Call me Ishmael"
TimestampISO 8601 extended offset date-time string in UTC zone"2021-01-04T05:00:00Z"

Note that for backwards compatibility, the Boolean, Byte, Double, Float, Integer, and Short types can also be encoded as JSON strings.

containsAllTerms
object
optional

Returns objects where the specified field contains all of the whitespace separated words in any order in the provided value. This query supports fuzzy matching.

Show children

Show children

field
string

The name of the property in the API. To find the API name for your property, use the Get object type endpoint or check the Ontology Manager.

value
string
fuzzy
boolean
optional

Setting fuzzy to true allows approximate matching in search queries that support it.

gt
object
optional

Returns objects where the specified field is greater than a value.

Show children

Show children

field
string

The name of the property in the API. To find the API name for your property, use the Get object type endpoint or check the Ontology Manager.

value
any

Represents the value of a property in the following format.

TypeJSON encodingExample
Arrayarray["alpha", "bravo", "charlie"]
AttachmentJSON encoded AttachmentProperty object{"rid":"ri.blobster.main.attachment.2f944bae-5851-4204-8615-920c969a9f2e"}
Booleanbooleantrue
Bytenumber31
DateISO 8601 extended local date string"2021-05-01"
Decimalstring"2.718281828"
Doublenumber3.14159265
Floatnumber3.14159265
GeoPointgeojson{"type":"Point","coordinates":[102.0,0.5]}
GeoShapegeojson{"type":"LineString","coordinates":[[102.0,0.0],[103.0,1.0],[104.0,0.0],[105.0,1.0]]}
Integernumber238940
Longstring"58319870951433"
Shortnumber8739
Stringstring"Call me Ishmael"
TimestampISO 8601 extended offset date-time string in UTC zone"2021-01-04T05:00:00Z"

Note that for backwards compatibility, the Boolean, Byte, Double, Float, Integer, and Short types can also be encoded as JSON strings.

withinDistanceOf
object
optional

Returns objects where the specified field contains a point within the distance provided of the center point.

Show children

Show children

field
string

The name of the property in the API. To find the API name for your property, use the Get object type endpoint or check the Ontology Manager.

value
object

The coordinate point to use as the center of the distance query.

Show children

Show children

center
union
Show children

Show children

Point
object
optional
Show children

Show children

coordinates
list<Coordinate>
optional

GeoJSon fundamental geometry construct.

A position is an array of numbers. There MUST be two or more elements. The first two elements are longitude and latitude, precisely in that order and using decimal numbers. Altitude or elevation MAY be included as an optional third element.

Implementations SHOULD NOT extend positions beyond three elements because the semantics of extra elements are unspecified and ambiguous. Historically, some implementations have used a fourth element to carry a linear referencing measure (sometimes denoted as "M") or a numerical timestamp, but in most situations a parser will not be able to properly interpret these values. The interpretation and meaning of additional elements is beyond the scope of this specification, and additional elements MAY be ignored by parsers.

Show children

Show children

Coordinate
number
bbox
list<Coordinate>
optional

A GeoJSON object MAY have a member named "bbox" to include information on the coordinate range for its Geometries, Features, or FeatureCollections. The value of the bbox member MUST be an array of length 2*n where n is the number of dimensions represented in the contained geometries, with all axes of the most southwesterly point followed by all axes of the more northeasterly point. The axes order of a bbox follows the axes order of geometries.

Show children

Show children

Coordinate
number
distance
object

A measurement of distance.

Show children

Show children

value
number
unit
string (enum)

Enum values: MILLIMETERS, CENTIMETERS, METERS, KILOMETERS, INCHES, FEET, YARDS, MILES, NAUTICAL_MILES

withinBoundingBox
object
optional

Returns objects where the specified field contains a point within the bounding box provided.

Show children

Show children

field
string

The name of the property in the API. To find the API name for your property, use the Get object type endpoint or check the Ontology Manager.

value
object

The top left and bottom right coordinate points that make up the bounding box.

Show children

Show children

topLeft
union
Show children

Show children

Point
object
optional
Show children

Show children

coordinates
list<Coordinate>
optional

GeoJSon fundamental geometry construct.

A position is an array of numbers. There MUST be two or more elements. The first two elements are longitude and latitude, precisely in that order and using decimal numbers. Altitude or elevation MAY be included as an optional third element.

Implementations SHOULD NOT extend positions beyond three elements because the semantics of extra elements are unspecified and ambiguous. Historically, some implementations have used a fourth element to carry a linear referencing measure (sometimes denoted as "M") or a numerical timestamp, but in most situations a parser will not be able to properly interpret these values. The interpretation and meaning of additional elements is beyond the scope of this specification, and additional elements MAY be ignored by parsers.

Show children

Show children

Coordinate
number
bbox
list<Coordinate>
optional

A GeoJSON object MAY have a member named "bbox" to include information on the coordinate range for its Geometries, Features, or FeatureCollections. The value of the bbox member MUST be an array of length 2*n where n is the number of dimensions represented in the contained geometries, with all axes of the most southwesterly point followed by all axes of the more northeasterly point. The axes order of a bbox follows the axes order of geometries.

Show children

Show children

Coordinate
number
bottomRight
union
Show children

Show children

Point
object
optional
Show children

Show children

coordinates
list<Coordinate>
optional

GeoJSon fundamental geometry construct.

A position is an array of numbers. There MUST be two or more elements. The first two elements are longitude and latitude, precisely in that order and using decimal numbers. Altitude or elevation MAY be included as an optional third element.

Implementations SHOULD NOT extend positions beyond three elements because the semantics of extra elements are unspecified and ambiguous. Historically, some implementations have used a fourth element to carry a linear referencing measure (sometimes denoted as "M") or a numerical timestamp, but in most situations a parser will not be able to properly interpret these values. The interpretation and meaning of additional elements is beyond the scope of this specification, and additional elements MAY be ignored by parsers.

Show children

Show children

Coordinate
number
bbox
list<Coordinate>
optional

A GeoJSON object MAY have a member named "bbox" to include information on the coordinate range for its Geometries, Features, or FeatureCollections. The value of the bbox member MUST be an array of length 2*n where n is the number of dimensions represented in the contained geometries, with all axes of the most southwesterly point followed by all axes of the more northeasterly point. The axes order of a bbox follows the axes order of geometries.

Show children

Show children

Coordinate
number
contains
object
optional

Returns objects where the specified array contains a value.

Show children

Show children

field
string

The name of the property in the API. To find the API name for your property, use the Get object type endpoint or check the Ontology Manager.

value
any

Represents the value of a property in the following format.

TypeJSON encodingExample
Arrayarray["alpha", "bravo", "charlie"]
AttachmentJSON encoded AttachmentProperty object{"rid":"ri.blobster.main.attachment.2f944bae-5851-4204-8615-920c969a9f2e"}
Booleanbooleantrue
Bytenumber31
DateISO 8601 extended local date string"2021-05-01"
Decimalstring"2.718281828"
Doublenumber3.14159265
Floatnumber3.14159265
GeoPointgeojson{"type":"Point","coordinates":[102.0,0.5]}
GeoShapegeojson{"type":"LineString","coordinates":[[102.0,0.0],[103.0,1.0],[104.0,0.0],[105.0,1.0]]}
Integernumber238940
Longstring"58319870951433"
Shortnumber8739
Stringstring"Call me Ishmael"
TimestampISO 8601 extended offset date-time string in UTC zone"2021-01-04T05:00:00Z"

Note that for backwards compatibility, the Boolean, Byte, Double, Float, Integer, and Short types can also be encoded as JSON strings.

not
object
optional

Returns objects where the query is not satisfied.

Show children

Show children

value
union
intersectsBoundingBox
object
optional

Returns objects where the specified field intersects the bounding box provided.

Show children

Show children

field
string

The name of the property in the API. To find the API name for your property, use the Get object type endpoint or check the Ontology Manager.

value
object

The top left and bottom right coordinate points that make up the bounding box.

Show children

Show children

topLeft
union
Show children

Show children

Point
object
optional
Show children

Show children

coordinates
list<Coordinate>
optional

GeoJSon fundamental geometry construct.

A position is an array of numbers. There MUST be two or more elements. The first two elements are longitude and latitude, precisely in that order and using decimal numbers. Altitude or elevation MAY be included as an optional third element.

Implementations SHOULD NOT extend positions beyond three elements because the semantics of extra elements are unspecified and ambiguous. Historically, some implementations have used a fourth element to carry a linear referencing measure (sometimes denoted as "M") or a numerical timestamp, but in most situations a parser will not be able to properly interpret these values. The interpretation and meaning of additional elements is beyond the scope of this specification, and additional elements MAY be ignored by parsers.

Show children

Show children

Coordinate
number
bbox
list<Coordinate>
optional

A GeoJSON object MAY have a member named "bbox" to include information on the coordinate range for its Geometries, Features, or FeatureCollections. The value of the bbox member MUST be an array of length 2*n where n is the number of dimensions represented in the contained geometries, with all axes of the most southwesterly point followed by all axes of the more northeasterly point. The axes order of a bbox follows the axes order of geometries.

Show children

Show children

Coordinate
number
bottomRight
union
Show children

Show children

Point
object
optional
Show children

Show children

coordinates
list<Coordinate>
optional

GeoJSon fundamental geometry construct.

A position is an array of numbers. There MUST be two or more elements. The first two elements are longitude and latitude, precisely in that order and using decimal numbers. Altitude or elevation MAY be included as an optional third element.

Implementations SHOULD NOT extend positions beyond three elements because the semantics of extra elements are unspecified and ambiguous. Historically, some implementations have used a fourth element to carry a linear referencing measure (sometimes denoted as "M") or a numerical timestamp, but in most situations a parser will not be able to properly interpret these values. The interpretation and meaning of additional elements is beyond the scope of this specification, and additional elements MAY be ignored by parsers.

Show children

Show children

Coordinate
number
bbox
list<Coordinate>
optional

A GeoJSON object MAY have a member named "bbox" to include information on the coordinate range for its Geometries, Features, or FeatureCollections. The value of the bbox member MUST be an array of length 2*n where n is the number of dimensions represented in the contained geometries, with all axes of the most southwesterly point followed by all axes of the more northeasterly point. The axes order of a bbox follows the axes order of geometries.

Show children

Show children

Coordinate
number
and
object
optional

Returns objects where every query is satisfied.

Show children

Show children

value
list<SearchJsonQueryV2>
optional
Show children

Show children

SearchJsonQueryV2
union
isNull
object
optional

Returns objects based on the existence of the specified field.

Show children

Show children

field
string

The name of the property in the API. To find the API name for your property, use the Get object type endpoint or check the Ontology Manager.

value
boolean
containsAllTermsInOrderPrefixLastTerm
object
optional

Returns objects where the specified field contains all of the terms in the order provided, but they do have to be adjacent to each other. The last term can be a partial prefix match.

Show children

Show children

field
string

The name of the property in the API. To find the API name for your property, use the Get object type endpoint or check the Ontology Manager.

value
string
containsAnyTerm
object
optional

Returns objects where the specified field contains any of the whitespace separated words in any order in the provided value. This query supports fuzzy matching.

Show children

Show children

field
string

The name of the property in the API. To find the API name for your property, use the Get object type endpoint or check the Ontology Manager.

value
string
fuzzy
boolean
optional

Setting fuzzy to true allows approximate matching in search queries that support it.

gte
object
optional

Returns objects where the specified field is greater than or equal to a value.

Show children

Show children

field
string

The name of the property in the API. To find the API name for your property, use the Get object type endpoint or check the Ontology Manager.

value
any

Represents the value of a property in the following format.

TypeJSON encodingExample
Arrayarray["alpha", "bravo", "charlie"]
AttachmentJSON encoded AttachmentProperty object{"rid":"ri.blobster.main.attachment.2f944bae-5851-4204-8615-920c969a9f2e"}
Booleanbooleantrue
Bytenumber31
DateISO 8601 extended local date string"2021-05-01"
Decimalstring"2.718281828"
Doublenumber3.14159265
Floatnumber3.14159265
GeoPointgeojson{"type":"Point","coordinates":[102.0,0.5]}
GeoShapegeojson{"type":"LineString","coordinates":[[102.0,0.0],[103.0,1.0],[104.0,0.0],[105.0,1.0]]}
Integernumber238940
Longstring"58319870951433"
Shortnumber8739
Stringstring"Call me Ishmael"
TimestampISO 8601 extended offset date-time string in UTC zone"2021-01-04T05:00:00Z"

Note that for backwards compatibility, the Boolean, Byte, Double, Float, Integer, and Short types can also be encoded as JSON strings.

containsAllTermsInOrder
object
optional

Returns objects where the specified field contains all of the terms in the order provided, but they do have to be adjacent to each other.

Show children

Show children

field
string

The name of the property in the API. To find the API name for your property, use the Get object type endpoint or check the Ontology Manager.

value
string
withinPolygon
object
optional

Returns objects where the specified field contains a point within the polygon provided.

Show children

Show children

field
string

The name of the property in the API. To find the API name for your property, use the Get object type endpoint or check the Ontology Manager.

value
union
Show children

Show children

Polygon
object
optional
Show children

Show children

coordinates
list<LinearRing>
optional
Show children

Show children

LinearRing
list<Position>

A linear ring is a closed LineString with four or more positions.

The first and last positions are equivalent, and they MUST contain identical values; their representation SHOULD also be identical.

A linear ring is the boundary of a surface or the boundary of a hole in a surface.

A linear ring MUST follow the right-hand rule with respect to the area it bounds, i.e., exterior rings are counterclockwise, and holes are clockwise.

Show children

Show children

Position
list<Coordinate>

GeoJSon fundamental geometry construct.

A position is an array of numbers. There MUST be two or more elements. The first two elements are longitude and latitude, precisely in that order and using decimal numbers. Altitude or elevation MAY be included as an optional third element.

Implementations SHOULD NOT extend positions beyond three elements because the semantics of extra elements are unspecified and ambiguous. Historically, some implementations have used a fourth element to carry a linear referencing measure (sometimes denoted as "M") or a numerical timestamp, but in most situations a parser will not be able to properly interpret these values. The interpretation and meaning of additional elements is beyond the scope of this specification, and additional elements MAY be ignored by parsers.

Show children

Show children

Coordinate
number
bbox
list<Coordinate>
optional

A GeoJSON object MAY have a member named "bbox" to include information on the coordinate range for its Geometries, Features, or FeatureCollections. The value of the bbox member MUST be an array of length 2*n where n is the number of dimensions represented in the contained geometries, with all axes of the most southwesterly point followed by all axes of the more northeasterly point. The axes order of a bbox follows the axes order of geometries.

Show children

Show children

Coordinate
number
intersectsPolygon
object
optional

Returns objects where the specified field intersects the polygon provided.

Show children

Show children

field
string

The name of the property in the API. To find the API name for your property, use the Get object type endpoint or check the Ontology Manager.

value
union
Show children

Show children

Polygon
object
optional
Show children

Show children

coordinates
list<LinearRing>
optional
Show children

Show children

LinearRing
list<Position>

A linear ring is a closed LineString with four or more positions.

The first and last positions are equivalent, and they MUST contain identical values; their representation SHOULD also be identical.

A linear ring is the boundary of a surface or the boundary of a hole in a surface.

A linear ring MUST follow the right-hand rule with respect to the area it bounds, i.e., exterior rings are counterclockwise, and holes are clockwise.

Show children

Show children

Position
list<Coordinate>

GeoJSon fundamental geometry construct.

A position is an array of numbers. There MUST be two or more elements. The first two elements are longitude and latitude, precisely in that order and using decimal numbers. Altitude or elevation MAY be included as an optional third element.

Implementations SHOULD NOT extend positions beyond three elements because the semantics of extra elements are unspecified and ambiguous. Historically, some implementations have used a fourth element to carry a linear referencing measure (sometimes denoted as "M") or a numerical timestamp, but in most situations a parser will not be able to properly interpret these values. The interpretation and meaning of additional elements is beyond the scope of this specification, and additional elements MAY be ignored by parsers.

Show children

Show children

Coordinate
number
bbox
list<Coordinate>
optional

A GeoJSON object MAY have a member named "bbox" to include information on the coordinate range for its Geometries, Features, or FeatureCollections. The value of the bbox member MUST be an array of length 2*n where n is the number of dimensions represented in the contained geometries, with all axes of the most southwesterly point followed by all axes of the more northeasterly point. The axes order of a bbox follows the axes order of geometries.

Show children

Show children

Coordinate
number
lte
object
optional

Returns objects where the specified field is less than or equal to a value.

Show children

Show children

field
string

The name of the property in the API. To find the API name for your property, use the Get object type endpoint or check the Ontology Manager.

value
any

Represents the value of a property in the following format.

TypeJSON encodingExample
Arrayarray["alpha", "bravo", "charlie"]
AttachmentJSON encoded AttachmentProperty object{"rid":"ri.blobster.main.attachment.2f944bae-5851-4204-8615-920c969a9f2e"}
Booleanbooleantrue
Bytenumber31
DateISO 8601 extended local date string"2021-05-01"
Decimalstring"2.718281828"
Doublenumber3.14159265
Floatnumber3.14159265
GeoPointgeojson{"type":"Point","coordinates":[102.0,0.5]}
GeoShapegeojson{"type":"LineString","coordinates":[[102.0,0.0],[103.0,1.0],[104.0,0.0],[105.0,1.0]]}
Integernumber238940
Longstring"58319870951433"
Shortnumber8739
Stringstring"Call me Ishmael"
TimestampISO 8601 extended offset date-time string in UTC zone"2021-01-04T05:00:00Z"

Note that for backwards compatibility, the Boolean, Byte, Double, Float, Integer, and Short types can also be encoded as JSON strings.

startsWith
object
optional

Returns objects where the specified field starts with the provided value.

Show children

Show children

field
string

The name of the property in the API. To find the API name for your property, use the Get object type endpoint or check the Ontology Manager.

value
string
isNull
object
optional

Returns objects based on the existence of the specified field.

Show children

Show children

field
string

The name of the property in the API. To find the API name for your property, use the Get object type endpoint or check the Ontology Manager.

value
boolean
containsAllTermsInOrderPrefixLastTerm
object
optional

Returns objects where the specified field contains all of the terms in the order provided, but they do have to be adjacent to each other. The last term can be a partial prefix match.

Show children

Show children

field
string

The name of the property in the API. To find the API name for your property, use the Get object type endpoint or check the Ontology Manager.

value
string
containsAnyTerm
object
optional

Returns objects where the specified field contains any of the whitespace separated words in any order in the provided value. This query supports fuzzy matching.

Show children

Show children

field
string

The name of the property in the API. To find the API name for your property, use the Get object type endpoint or check the Ontology Manager.

value
string
fuzzy
boolean
optional

Setting fuzzy to true allows approximate matching in search queries that support it.

gte
object
optional

Returns objects where the specified field is greater than or equal to a value.

Show children

Show children

field
string

The name of the property in the API. To find the API name for your property, use the Get object type endpoint or check the Ontology Manager.

value
any

Represents the value of a property in the following format.

TypeJSON encodingExample
Arrayarray["alpha", "bravo", "charlie"]
AttachmentJSON encoded AttachmentProperty object{"rid":"ri.blobster.main.attachment.2f944bae-5851-4204-8615-920c969a9f2e"}
Booleanbooleantrue
Bytenumber31
DateISO 8601 extended local date string"2021-05-01"
Decimalstring"2.718281828"
Doublenumber3.14159265
Floatnumber3.14159265
GeoPointgeojson{"type":"Point","coordinates":[102.0,0.5]}
GeoShapegeojson{"type":"LineString","coordinates":[[102.0,0.0],[103.0,1.0],[104.0,0.0],[105.0,1.0]]}
Integernumber238940
Longstring"58319870951433"
Shortnumber8739
Stringstring"Call me Ishmael"
TimestampISO 8601 extended offset date-time string in UTC zone"2021-01-04T05:00:00Z"

Note that for backwards compatibility, the Boolean, Byte, Double, Float, Integer, and Short types can also be encoded as JSON strings.

containsAllTermsInOrder
object
optional

Returns objects where the specified field contains all of the terms in the order provided, but they do have to be adjacent to each other.

Show children

Show children

field
string

The name of the property in the API. To find the API name for your property, use the Get object type endpoint or check the Ontology Manager.

value
string
withinPolygon
object
optional

Returns objects where the specified field contains a point within the polygon provided.

Show children

Show children

field
string

The name of the property in the API. To find the API name for your property, use the Get object type endpoint or check the Ontology Manager.

value
union
Show children

Show children

Polygon
object
optional
Show children

Show children

coordinates
list<LinearRing>
optional
Show children

Show children

LinearRing
list<Position>

A linear ring is a closed LineString with four or more positions.

The first and last positions are equivalent, and they MUST contain identical values; their representation SHOULD also be identical.

A linear ring is the boundary of a surface or the boundary of a hole in a surface.

A linear ring MUST follow the right-hand rule with respect to the area it bounds, i.e., exterior rings are counterclockwise, and holes are clockwise.

Show children

Show children

Position
list<Coordinate>

GeoJSon fundamental geometry construct.

A position is an array of numbers. There MUST be two or more elements. The first two elements are longitude and latitude, precisely in that order and using decimal numbers. Altitude or elevation MAY be included as an optional third element.

Implementations SHOULD NOT extend positions beyond three elements because the semantics of extra elements are unspecified and ambiguous. Historically, some implementations have used a fourth element to carry a linear referencing measure (sometimes denoted as "M") or a numerical timestamp, but in most situations a parser will not be able to properly interpret these values. The interpretation and meaning of additional elements is beyond the scope of this specification, and additional elements MAY be ignored by parsers.

Show children

Show children

Coordinate
number
bbox
list<Coordinate>
optional

A GeoJSON object MAY have a member named "bbox" to include information on the coordinate range for its Geometries, Features, or FeatureCollections. The value of the bbox member MUST be an array of length 2*n where n is the number of dimensions represented in the contained geometries, with all axes of the most southwesterly point followed by all axes of the more northeasterly point. The axes order of a bbox follows the axes order of geometries.

Show children

Show children

Coordinate
number
intersectsPolygon
object
optional

Returns objects where the specified field intersects the polygon provided.

Show children

Show children

field
string

The name of the property in the API. To find the API name for your property, use the Get object type endpoint or check the Ontology Manager.

value
union
Show children

Show children

Polygon
object
optional
Show children

Show children

coordinates
list<LinearRing>
optional
Show children

Show children

LinearRing
list<Position>

A linear ring is a closed LineString with four or more positions.

The first and last positions are equivalent, and they MUST contain identical values; their representation SHOULD also be identical.

A linear ring is the boundary of a surface or the boundary of a hole in a surface.

A linear ring MUST follow the right-hand rule with respect to the area it bounds, i.e., exterior rings are counterclockwise, and holes are clockwise.

Show children

Show children

Position
list<Coordinate>

GeoJSon fundamental geometry construct.

A position is an array of numbers. There MUST be two or more elements. The first two elements are longitude and latitude, precisely in that order and using decimal numbers. Altitude or elevation MAY be included as an optional third element.

Implementations SHOULD NOT extend positions beyond three elements because the semantics of extra elements are unspecified and ambiguous. Historically, some implementations have used a fourth element to carry a linear referencing measure (sometimes denoted as "M") or a numerical timestamp, but in most situations a parser will not be able to properly interpret these values. The interpretation and meaning of additional elements is beyond the scope of this specification, and additional elements MAY be ignored by parsers.

Show children

Show children

Coordinate
number
bbox
list<Coordinate>
optional

A GeoJSON object MAY have a member named "bbox" to include information on the coordinate range for its Geometries, Features, or FeatureCollections. The value of the bbox member MUST be an array of length 2*n where n is the number of dimensions represented in the contained geometries, with all axes of the most southwesterly point followed by all axes of the more northeasterly point. The axes order of a bbox follows the axes order of geometries.

Show children

Show children

Coordinate
number
lte
object
optional

Returns objects where the specified field is less than or equal to a value.

Show children

Show children

field
string

The name of the property in the API. To find the API name for your property, use the Get object type endpoint or check the Ontology Manager.

value
any

Represents the value of a property in the following format.

TypeJSON encodingExample
Arrayarray["alpha", "bravo", "charlie"]
AttachmentJSON encoded AttachmentProperty object{"rid":"ri.blobster.main.attachment.2f944bae-5851-4204-8615-920c969a9f2e"}
Booleanbooleantrue
Bytenumber31
DateISO 8601 extended local date string"2021-05-01"
Decimalstring"2.718281828"
Doublenumber3.14159265
Floatnumber3.14159265
GeoPointgeojson{"type":"Point","coordinates":[102.0,0.5]}
GeoShapegeojson{"type":"LineString","coordinates":[[102.0,0.0],[103.0,1.0],[104.0,0.0],[105.0,1.0]]}
Integernumber238940
Longstring"58319870951433"
Shortnumber8739
Stringstring"Call me Ishmael"
TimestampISO 8601 extended offset date-time string in UTC zone"2021-01-04T05:00:00Z"

Note that for backwards compatibility, the Boolean, Byte, Double, Float, Integer, and Short types can also be encoded as JSON strings.

startsWith
object
optional

Returns objects where the specified field starts with the provided value.

Show children

Show children

field
string

The name of the property in the API. To find the API name for your property, use the Get object type endpoint or check the Ontology Manager.

value
string
searchAround
object
optional
Show children

Show children

objectSet
union

Represents the definition of an ObjectSet in the Ontology.

Show children

Show children

reference
object
optional
Show children

Show children

reference
string
filter
object
optional
Show children

Show children

objectSet
union

Represents the definition of an ObjectSet in the Ontology.

where
union
Show children

Show children

or
object
optional

Returns objects where at least 1 query is satisfied.

Show children

Show children

value
list<SearchJsonQueryV2>
optional
Show children

Show children

SearchJsonQueryV2
union
Show children

Show children

or
object
optional

Returns objects where at least 1 query is satisfied.

Show children

Show children

value
list<SearchJsonQueryV2>
optional
Show children

Show children

SearchJsonQueryV2
union
in
object
optional

Returns objects where the specified field equals any of the provided values.

Show children

Show children

field
string

The name of the property in the API. To find the API name for your property, use the Get object type endpoint or check the Ontology Manager.

value
list<PropertyValue>
optional
Show children

Show children

PropertyValue
any

Represents the value of a property in the following format.

TypeJSON encodingExample
Arrayarray["alpha", "bravo", "charlie"]
AttachmentJSON encoded AttachmentProperty object{"rid":"ri.blobster.main.attachment.2f944bae-5851-4204-8615-920c969a9f2e"}
Booleanbooleantrue
Bytenumber31
DateISO 8601 extended local date string"2021-05-01"
Decimalstring"2.718281828"
Doublenumber3.14159265
Floatnumber3.14159265
GeoPointgeojson{"type":"Point","coordinates":[102.0,0.5]}
GeoShapegeojson{"type":"LineString","coordinates":[[102.0,0.0],[103.0,1.0],[104.0,0.0],[105.0,1.0]]}
Integernumber238940
Longstring"58319870951433"
Shortnumber8739
Stringstring"Call me Ishmael"
TimestampISO 8601 extended offset date-time string in UTC zone"2021-01-04T05:00:00Z"

Note that for backwards compatibility, the Boolean, Byte, Double, Float, Integer, and Short types can also be encoded as JSON strings.

doesNotIntersectPolygon
object
optional

Returns objects where the specified field does not intersect the polygon provided.

Show children

Show children

field
string

The name of the property in the API. To find the API name for your property, use the Get object type endpoint or check the Ontology Manager.

value
union
Show children

Show children

Polygon
object
optional
Show children

Show children

coordinates
list<LinearRing>
optional
Show children

Show children

LinearRing
list<Position>

A linear ring is a closed LineString with four or more positions.

The first and last positions are equivalent, and they MUST contain identical values; their representation SHOULD also be identical.

A linear ring is the boundary of a surface or the boundary of a hole in a surface.

A linear ring MUST follow the right-hand rule with respect to the area it bounds, i.e., exterior rings are counterclockwise, and holes are clockwise.

Show children

Show children

Position
list<Coordinate>

GeoJSon fundamental geometry construct.

A position is an array of numbers. There MUST be two or more elements. The first two elements are longitude and latitude, precisely in that order and using decimal numbers. Altitude or elevation MAY be included as an optional third element.

Implementations SHOULD NOT extend positions beyond three elements because the semantics of extra elements are unspecified and ambiguous. Historically, some implementations have used a fourth element to carry a linear referencing measure (sometimes denoted as "M") or a numerical timestamp, but in most situations a parser will not be able to properly interpret these values. The interpretation and meaning of additional elements is beyond the scope of this specification, and additional elements MAY be ignored by parsers.

Show children

Show children

Coordinate
number
bbox
list<Coordinate>
optional

A GeoJSON object MAY have a member named "bbox" to include information on the coordinate range for its Geometries, Features, or FeatureCollections. The value of the bbox member MUST be an array of length 2*n where n is the number of dimensions represented in the contained geometries, with all axes of the most southwesterly point followed by all axes of the more northeasterly point. The axes order of a bbox follows the axes order of geometries.

Show children

Show children

Coordinate
number
lt
object
optional

Returns objects where the specified field is less than a value.

Show children

Show children

field
string

The name of the property in the API. To find the API name for your property, use the Get object type endpoint or check the Ontology Manager.

value
any

Represents the value of a property in the following format.

TypeJSON encodingExample
Arrayarray["alpha", "bravo", "charlie"]
AttachmentJSON encoded AttachmentProperty object{"rid":"ri.blobster.main.attachment.2f944bae-5851-4204-8615-920c969a9f2e"}
Booleanbooleantrue
Bytenumber31
DateISO 8601 extended local date string"2021-05-01"
Decimalstring"2.718281828"
Doublenumber3.14159265
Floatnumber3.14159265
GeoPointgeojson{"type":"Point","coordinates":[102.0,0.5]}
GeoShapegeojson{"type":"LineString","coordinates":[[102.0,0.0],[103.0,1.0],[104.0,0.0],[105.0,1.0]]}
Integernumber238940
Longstring"58319870951433"
Shortnumber8739
Stringstring"Call me Ishmael"
TimestampISO 8601 extended offset date-time string in UTC zone"2021-01-04T05:00:00Z"

Note that for backwards compatibility, the Boolean, Byte, Double, Float, Integer, and Short types can also be encoded as JSON strings.

doesNotIntersectBoundingBox
object
optional

Returns objects where the specified field does not intersect the bounding box provided.

Show children

Show children

field
string

The name of the property in the API. To find the API name for your property, use the Get object type endpoint or check the Ontology Manager.

value
object

The top left and bottom right coordinate points that make up the bounding box.

Show children

Show children

topLeft
union
Show children

Show children

Point
object
optional
Show children

Show children

coordinates
list<Coordinate>
optional

GeoJSon fundamental geometry construct.

A position is an array of numbers. There MUST be two or more elements. The first two elements are longitude and latitude, precisely in that order and using decimal numbers. Altitude or elevation MAY be included as an optional third element.

Implementations SHOULD NOT extend positions beyond three elements because the semantics of extra elements are unspecified and ambiguous. Historically, some implementations have used a fourth element to carry a linear referencing measure (sometimes denoted as "M") or a numerical timestamp, but in most situations a parser will not be able to properly interpret these values. The interpretation and meaning of additional elements is beyond the scope of this specification, and additional elements MAY be ignored by parsers.

Show children

Show children

Coordinate
number
bbox
list<Coordinate>
optional

A GeoJSON object MAY have a member named "bbox" to include information on the coordinate range for its Geometries, Features, or FeatureCollections. The value of the bbox member MUST be an array of length 2*n where n is the number of dimensions represented in the contained geometries, with all axes of the most southwesterly point followed by all axes of the more northeasterly point. The axes order of a bbox follows the axes order of geometries.

Show children

Show children

Coordinate
number
bottomRight
union
Show children

Show children

Point
object
optional
Show children

Show children

coordinates
list<Coordinate>
optional

GeoJSon fundamental geometry construct.

A position is an array of numbers. There MUST be two or more elements. The first two elements are longitude and latitude, precisely in that order and using decimal numbers. Altitude or elevation MAY be included as an optional third element.

Implementations SHOULD NOT extend positions beyond three elements because the semantics of extra elements are unspecified and ambiguous. Historically, some implementations have used a fourth element to carry a linear referencing measure (sometimes denoted as "M") or a numerical timestamp, but in most situations a parser will not be able to properly interpret these values. The interpretation and meaning of additional elements is beyond the scope of this specification, and additional elements MAY be ignored by parsers.

Show children

Show children

Coordinate
number
bbox
list<Coordinate>
optional

A GeoJSON object MAY have a member named "bbox" to include information on the coordinate range for its Geometries, Features, or FeatureCollections. The value of the bbox member MUST be an array of length 2*n where n is the number of dimensions represented in the contained geometries, with all axes of the most southwesterly point followed by all axes of the more northeasterly point. The axes order of a bbox follows the axes order of geometries.

Show children

Show children

Coordinate
number
eq
object
optional

Returns objects where the specified field is equal to a value.

Show children

Show children

field
string

The name of the property in the API. To find the API name for your property, use the Get object type endpoint or check the Ontology Manager.

value
any

Represents the value of a property in the following format.

TypeJSON encodingExample
Arrayarray["alpha", "bravo", "charlie"]
AttachmentJSON encoded AttachmentProperty object{"rid":"ri.blobster.main.attachment.2f944bae-5851-4204-8615-920c969a9f2e"}
Booleanbooleantrue
Bytenumber31
DateISO 8601 extended local date string"2021-05-01"
Decimalstring"2.718281828"
Doublenumber3.14159265
Floatnumber3.14159265
GeoPointgeojson{"type":"Point","coordinates":[102.0,0.5]}
GeoShapegeojson{"type":"LineString","coordinates":[[102.0,0.0],[103.0,1.0],[104.0,0.0],[105.0,1.0]]}
Integernumber238940
Longstring"58319870951433"
Shortnumber8739
Stringstring"Call me Ishmael"
TimestampISO 8601 extended offset date-time string in UTC zone"2021-01-04T05:00:00Z"

Note that for backwards compatibility, the Boolean, Byte, Double, Float, Integer, and Short types can also be encoded as JSON strings.

containsAllTerms
object
optional

Returns objects where the specified field contains all of the whitespace separated words in any order in the provided value. This query supports fuzzy matching.

Show children

Show children

field
string

The name of the property in the API. To find the API name for your property, use the Get object type endpoint or check the Ontology Manager.

value
string
fuzzy
boolean
optional

Setting fuzzy to true allows approximate matching in search queries that support it.

gt
object
optional

Returns objects where the specified field is greater than a value.

Show children

Show children

field
string

The name of the property in the API. To find the API name for your property, use the Get object type endpoint or check the Ontology Manager.

value
any

Represents the value of a property in the following format.

TypeJSON encodingExample
Arrayarray["alpha", "bravo", "charlie"]
AttachmentJSON encoded AttachmentProperty object{"rid":"ri.blobster.main.attachment.2f944bae-5851-4204-8615-920c969a9f2e"}
Booleanbooleantrue
Bytenumber31
DateISO 8601 extended local date string"2021-05-01"
Decimalstring"2.718281828"
Doublenumber3.14159265
Floatnumber3.14159265
GeoPointgeojson{"type":"Point","coordinates":[102.0,0.5]}
GeoShapegeojson{"type":"LineString","coordinates":[[102.0,0.0],[103.0,1.0],[104.0,0.0],[105.0,1.0]]}
Integernumber238940
Longstring"58319870951433"
Shortnumber8739
Stringstring"Call me Ishmael"
TimestampISO 8601 extended offset date-time string in UTC zone"2021-01-04T05:00:00Z"

Note that for backwards compatibility, the Boolean, Byte, Double, Float, Integer, and Short types can also be encoded as JSON strings.

withinDistanceOf
object
optional

Returns objects where the specified field contains a point within the distance provided of the center point.

Show children

Show children

field
string

The name of the property in the API. To find the API name for your property, use the Get object type endpoint or check the Ontology Manager.

value
object

The coordinate point to use as the center of the distance query.

Show children

Show children

center
union
Show children

Show children

Point
object
optional
Show children

Show children

coordinates
list<Coordinate>
optional

GeoJSon fundamental geometry construct.

A position is an array of numbers. There MUST be two or more elements. The first two elements are longitude and latitude, precisely in that order and using decimal numbers. Altitude or elevation MAY be included as an optional third element.

Implementations SHOULD NOT extend positions beyond three elements because the semantics of extra elements are unspecified and ambiguous. Historically, some implementations have used a fourth element to carry a linear referencing measure (sometimes denoted as "M") or a numerical timestamp, but in most situations a parser will not be able to properly interpret these values. The interpretation and meaning of additional elements is beyond the scope of this specification, and additional elements MAY be ignored by parsers.

Show children

Show children

Coordinate
number
bbox
list<Coordinate>
optional

A GeoJSON object MAY have a member named "bbox" to include information on the coordinate range for its Geometries, Features, or FeatureCollections. The value of the bbox member MUST be an array of length 2*n where n is the number of dimensions represented in the contained geometries, with all axes of the most southwesterly point followed by all axes of the more northeasterly point. The axes order of a bbox follows the axes order of geometries.

Show children

Show children

Coordinate
number
distance
object

A measurement of distance.

Show children

Show children

value
number
unit
string (enum)

Enum values: MILLIMETERS, CENTIMETERS, METERS, KILOMETERS, INCHES, FEET, YARDS, MILES, NAUTICAL_MILES

withinBoundingBox
object
optional

Returns objects where the specified field contains a point within the bounding box provided.

Show children

Show children

field
string

The name of the property in the API. To find the API name for your property, use the Get object type endpoint or check the Ontology Manager.

value
object

The top left and bottom right coordinate points that make up the bounding box.

Show children

Show children

topLeft
union
Show children

Show children

Point
object
optional
Show children

Show children

coordinates
list<Coordinate>
optional

GeoJSon fundamental geometry construct.

A position is an array of numbers. There MUST be two or more elements. The first two elements are longitude and latitude, precisely in that order and using decimal numbers. Altitude or elevation MAY be included as an optional third element.

Implementations SHOULD NOT extend positions beyond three elements because the semantics of extra elements are unspecified and ambiguous. Historically, some implementations have used a fourth element to carry a linear referencing measure (sometimes denoted as "M") or a numerical timestamp, but in most situations a parser will not be able to properly interpret these values. The interpretation and meaning of additional elements is beyond the scope of this specification, and additional elements MAY be ignored by parsers.

Show children

Show children

Coordinate
number
bbox
list<Coordinate>
optional

A GeoJSON object MAY have a member named "bbox" to include information on the coordinate range for its Geometries, Features, or FeatureCollections. The value of the bbox member MUST be an array of length 2*n where n is the number of dimensions represented in the contained geometries, with all axes of the most southwesterly point followed by all axes of the more northeasterly point. The axes order of a bbox follows the axes order of geometries.

Show children

Show children

Coordinate
number
bottomRight
union
Show children

Show children

Point
object
optional
Show children

Show children

coordinates
list<Coordinate>
optional

GeoJSon fundamental geometry construct.

A position is an array of numbers. There MUST be two or more elements. The first two elements are longitude and latitude, precisely in that order and using decimal numbers. Altitude or elevation MAY be included as an optional third element.

Implementations SHOULD NOT extend positions beyond three elements because the semantics of extra elements are unspecified and ambiguous. Historically, some implementations have used a fourth element to carry a linear referencing measure (sometimes denoted as "M") or a numerical timestamp, but in most situations a parser will not be able to properly interpret these values. The interpretation and meaning of additional elements is beyond the scope of this specification, and additional elements MAY be ignored by parsers.

Show children

Show children

Coordinate
number
bbox
list<Coordinate>
optional

A GeoJSON object MAY have a member named "bbox" to include information on the coordinate range for its Geometries, Features, or FeatureCollections. The value of the bbox member MUST be an array of length 2*n where n is the number of dimensions represented in the contained geometries, with all axes of the most southwesterly point followed by all axes of the more northeasterly point. The axes order of a bbox follows the axes order of geometries.

Show children

Show children

Coordinate
number
contains
object
optional

Returns objects where the specified array contains a value.

Show children

Show children

field
string

The name of the property in the API. To find the API name for your property, use the Get object type endpoint or check the Ontology Manager.

value
any

Represents the value of a property in the following format.

TypeJSON encodingExample
Arrayarray["alpha", "bravo", "charlie"]
AttachmentJSON encoded AttachmentProperty object{"rid":"ri.blobster.main.attachment.2f944bae-5851-4204-8615-920c969a9f2e"}
Booleanbooleantrue
Bytenumber31
DateISO 8601 extended local date string"2021-05-01"
Decimalstring"2.718281828"
Doublenumber3.14159265
Floatnumber3.14159265
GeoPointgeojson{"type":"Point","coordinates":[102.0,0.5]}
GeoShapegeojson{"type":"LineString","coordinates":[[102.0,0.0],[103.0,1.0],[104.0,0.0],[105.0,1.0]]}
Integernumber238940
Longstring"58319870951433"
Shortnumber8739
Stringstring"Call me Ishmael"
TimestampISO 8601 extended offset date-time string in UTC zone"2021-01-04T05:00:00Z"

Note that for backwards compatibility, the Boolean, Byte, Double, Float, Integer, and Short types can also be encoded as JSON strings.

not
object
optional

Returns objects where the query is not satisfied.

Show children

Show children

value
union
intersectsBoundingBox
object
optional

Returns objects where the specified field intersects the bounding box provided.

Show children

Show children

field
string

The name of the property in the API. To find the API name for your property, use the Get object type endpoint or check the Ontology Manager.

value
object

The top left and bottom right coordinate points that make up the bounding box.

Show children

Show children

topLeft
union
Show children

Show children

Point
object
optional
Show children

Show children

coordinates
list<Coordinate>
optional

GeoJSon fundamental geometry construct.

A position is an array of numbers. There MUST be two or more elements. The first two elements are longitude and latitude, precisely in that order and using decimal numbers. Altitude or elevation MAY be included as an optional third element.

Implementations SHOULD NOT extend positions beyond three elements because the semantics of extra elements are unspecified and ambiguous. Historically, some implementations have used a fourth element to carry a linear referencing measure (sometimes denoted as "M") or a numerical timestamp, but in most situations a parser will not be able to properly interpret these values. The interpretation and meaning of additional elements is beyond the scope of this specification, and additional elements MAY be ignored by parsers.

Show children

Show children

Coordinate
number
bbox
list<Coordinate>
optional

A GeoJSON object MAY have a member named "bbox" to include information on the coordinate range for its Geometries, Features, or FeatureCollections. The value of the bbox member MUST be an array of length 2*n where n is the number of dimensions represented in the contained geometries, with all axes of the most southwesterly point followed by all axes of the more northeasterly point. The axes order of a bbox follows the axes order of geometries.

Show children

Show children

Coordinate
number
bottomRight
union
Show children

Show children

Point
object
optional
Show children

Show children

coordinates
list<Coordinate>
optional

GeoJSon fundamental geometry construct.

A position is an array of numbers. There MUST be two or more elements. The first two elements are longitude and latitude, precisely in that order and using decimal numbers. Altitude or elevation MAY be included as an optional third element.

Implementations SHOULD NOT extend positions beyond three elements because the semantics of extra elements are unspecified and ambiguous. Historically, some implementations have used a fourth element to carry a linear referencing measure (sometimes denoted as "M") or a numerical timestamp, but in most situations a parser will not be able to properly interpret these values. The interpretation and meaning of additional elements is beyond the scope of this specification, and additional elements MAY be ignored by parsers.

Show children

Show children

Coordinate
number
bbox
list<Coordinate>
optional

A GeoJSON object MAY have a member named "bbox" to include information on the coordinate range for its Geometries, Features, or FeatureCollections. The value of the bbox member MUST be an array of length 2*n where n is the number of dimensions represented in the contained geometries, with all axes of the most southwesterly point followed by all axes of the more northeasterly point. The axes order of a bbox follows the axes order of geometries.

Show children

Show children

Coordinate
number
and
object
optional

Returns objects where every query is satisfied.

Show children

Show children

value
list<SearchJsonQueryV2>
optional
Show children

Show children

SearchJsonQueryV2
union
isNull
object
optional

Returns objects based on the existence of the specified field.

Show children

Show children

field
string

The name of the property in the API. To find the API name for your property, use the Get object type endpoint or check the Ontology Manager.

value
boolean
containsAllTermsInOrderPrefixLastTerm
object
optional

Returns objects where the specified field contains all of the terms in the order provided, but they do have to be adjacent to each other. The last term can be a partial prefix match.

Show children

Show children

field
string

The name of the property in the API. To find the API name for your property, use the Get object type endpoint or check the Ontology Manager.

value
string
containsAnyTerm
object
optional

Returns objects where the specified field contains any of the whitespace separated words in any order in the provided value. This query supports fuzzy matching.

Show children

Show children

field
string

The name of the property in the API. To find the API name for your property, use the Get object type endpoint or check the Ontology Manager.

value
string
fuzzy
boolean
optional

Setting fuzzy to true allows approximate matching in search queries that support it.

gte
object
optional

Returns objects where the specified field is greater than or equal to a value.

Show children

Show children

field
string

The name of the property in the API. To find the API name for your property, use the Get object type endpoint or check the Ontology Manager.

value
any

Represents the value of a property in the following format.

TypeJSON encodingExample
Arrayarray["alpha", "bravo", "charlie"]
AttachmentJSON encoded AttachmentProperty object{"rid":"ri.blobster.main.attachment.2f944bae-5851-4204-8615-920c969a9f2e"}
Booleanbooleantrue
Bytenumber31
DateISO 8601 extended local date string"2021-05-01"
Decimalstring"2.718281828"
Doublenumber3.14159265
Floatnumber3.14159265
GeoPointgeojson{"type":"Point","coordinates":[102.0,0.5]}
GeoShapegeojson{"type":"LineString","coordinates":[[102.0,0.0],[103.0,1.0],[104.0,0.0],[105.0,1.0]]}
Integernumber238940
Longstring"58319870951433"
Shortnumber8739
Stringstring"Call me Ishmael"
TimestampISO 8601 extended offset date-time string in UTC zone"2021-01-04T05:00:00Z"

Note that for backwards compatibility, the Boolean, Byte, Double, Float, Integer, and Short types can also be encoded as JSON strings.

containsAllTermsInOrder
object
optional

Returns objects where the specified field contains all of the terms in the order provided, but they do have to be adjacent to each other.

Show children

Show children

field
string

The name of the property in the API. To find the API name for your property, use the Get object type endpoint or check the Ontology Manager.

value
string
withinPolygon
object
optional

Returns objects where the specified field contains a point within the polygon provided.

Show children

Show children

field
string

The name of the property in the API. To find the API name for your property, use the Get object type endpoint or check the Ontology Manager.

value
union
Show children

Show children

Polygon
object
optional
Show children

Show children

coordinates
list<LinearRing>
optional
Show children

Show children

LinearRing
list<Position>

A linear ring is a closed LineString with four or more positions.

The first and last positions are equivalent, and they MUST contain identical values; their representation SHOULD also be identical.

A linear ring is the boundary of a surface or the boundary of a hole in a surface.

A linear ring MUST follow the right-hand rule with respect to the area it bounds, i.e., exterior rings are counterclockwise, and holes are clockwise.

Show children

Show children

Position
list<Coordinate>

GeoJSon fundamental geometry construct.

A position is an array of numbers. There MUST be two or more elements. The first two elements are longitude and latitude, precisely in that order and using decimal numbers. Altitude or elevation MAY be included as an optional third element.

Implementations SHOULD NOT extend positions beyond three elements because the semantics of extra elements are unspecified and ambiguous. Historically, some implementations have used a fourth element to carry a linear referencing measure (sometimes denoted as "M") or a numerical timestamp, but in most situations a parser will not be able to properly interpret these values. The interpretation and meaning of additional elements is beyond the scope of this specification, and additional elements MAY be ignored by parsers.

Show children

Show children

Coordinate
number
bbox
list<Coordinate>
optional

A GeoJSON object MAY have a member named "bbox" to include information on the coordinate range for its Geometries, Features, or FeatureCollections. The value of the bbox member MUST be an array of length 2*n where n is the number of dimensions represented in the contained geometries, with all axes of the most southwesterly point followed by all axes of the more northeasterly point. The axes order of a bbox follows the axes order of geometries.

Show children

Show children

Coordinate
number
intersectsPolygon
object
optional

Returns objects where the specified field intersects the polygon provided.

Show children

Show children

field
string

The name of the property in the API. To find the API name for your property, use the Get object type endpoint or check the Ontology Manager.

value
union
Show children

Show children

Polygon
object
optional
Show children

Show children

coordinates
list<LinearRing>
optional
Show children

Show children

LinearRing
list<Position>

A linear ring is a closed LineString with four or more positions.

The first and last positions are equivalent, and they MUST contain identical values; their representation SHOULD also be identical.

A linear ring is the boundary of a surface or the boundary of a hole in a surface.

A linear ring MUST follow the right-hand rule with respect to the area it bounds, i.e., exterior rings are counterclockwise, and holes are clockwise.

Show children

Show children

Position
list<Coordinate>

GeoJSon fundamental geometry construct.

A position is an array of numbers. There MUST be two or more elements. The first two elements are longitude and latitude, precisely in that order and using decimal numbers. Altitude or elevation MAY be included as an optional third element.

Implementations SHOULD NOT extend positions beyond three elements because the semantics of extra elements are unspecified and ambiguous. Historically, some implementations have used a fourth element to carry a linear referencing measure (sometimes denoted as "M") or a numerical timestamp, but in most situations a parser will not be able to properly interpret these values. The interpretation and meaning of additional elements is beyond the scope of this specification, and additional elements MAY be ignored by parsers.

Show children

Show children

Coordinate
number
bbox
list<Coordinate>
optional

A GeoJSON object MAY have a member named "bbox" to include information on the coordinate range for its Geometries, Features, or FeatureCollections. The value of the bbox member MUST be an array of length 2*n where n is the number of dimensions represented in the contained geometries, with all axes of the most southwesterly point followed by all axes of the more northeasterly point. The axes order of a bbox follows the axes order of geometries.

Show children

Show children

Coordinate
number
lte
object
optional

Returns objects where the specified field is less than or equal to a value.

Show children

Show children

field
string

The name of the property in the API. To find the API name for your property, use the Get object type endpoint or check the Ontology Manager.

value
any

Represents the value of a property in the following format.

TypeJSON encodingExample
Arrayarray["alpha", "bravo", "charlie"]
AttachmentJSON encoded AttachmentProperty object{"rid":"ri.blobster.main.attachment.2f944bae-5851-4204-8615-920c969a9f2e"}
Booleanbooleantrue
Bytenumber31
DateISO 8601 extended local date string"2021-05-01"
Decimalstring"2.718281828"
Doublenumber3.14159265
Floatnumber3.14159265
GeoPointgeojson{"type":"Point","coordinates":[102.0,0.5]}
GeoShapegeojson{"type":"LineString","coordinates":[[102.0,0.0],[103.0,1.0],[104.0,0.0],[105.0,1.0]]}
Integernumber238940
Longstring"58319870951433"
Shortnumber8739
Stringstring"Call me Ishmael"
TimestampISO 8601 extended offset date-time string in UTC zone"2021-01-04T05:00:00Z"

Note that for backwards compatibility, the Boolean, Byte, Double, Float, Integer, and Short types can also be encoded as JSON strings.

startsWith
object
optional

Returns objects where the specified field starts with the provided value.

Show children

Show children

field
string

The name of the property in the API. To find the API name for your property, use the Get object type endpoint or check the Ontology Manager.

value
string
in
object
optional

Returns objects where the specified field equals any of the provided values.

Show children

Show children

field
string

The name of the property in the API. To find the API name for your property, use the Get object type endpoint or check the Ontology Manager.

value
list<PropertyValue>
optional
Show children

Show children

PropertyValue
any

Represents the value of a property in the following format.

TypeJSON encodingExample
Arrayarray["alpha", "bravo", "charlie"]
AttachmentJSON encoded AttachmentProperty object{"rid":"ri.blobster.main.attachment.2f944bae-5851-4204-8615-920c969a9f2e"}
Booleanbooleantrue
Bytenumber31
DateISO 8601 extended local date string"2021-05-01"
Decimalstring"2.718281828"
Doublenumber3.14159265
Floatnumber3.14159265
GeoPointgeojson{"type":"Point","coordinates":[102.0,0.5]}
GeoShapegeojson{"type":"LineString","coordinates":[[102.0,0.0],[103.0,1.0],[104.0,0.0],[105.0,1.0]]}
Integernumber238940
Longstring"58319870951433"
Shortnumber8739
Stringstring"Call me Ishmael"
TimestampISO 8601 extended offset date-time string in UTC zone"2021-01-04T05:00:00Z"

Note that for backwards compatibility, the Boolean, Byte, Double, Float, Integer, and Short types can also be encoded as JSON strings.

doesNotIntersectPolygon
object
optional

Returns objects where the specified field does not intersect the polygon provided.

Show children

Show children

field
string

The name of the property in the API. To find the API name for your property, use the Get object type endpoint or check the Ontology Manager.

value
union
Show children

Show children

Polygon
object
optional
Show children

Show children

coordinates
list<LinearRing>
optional
Show children

Show children

LinearRing
list<Position>

A linear ring is a closed LineString with four or more positions.

The first and last positions are equivalent, and they MUST contain identical values; their representation SHOULD also be identical.

A linear ring is the boundary of a surface or the boundary of a hole in a surface.

A linear ring MUST follow the right-hand rule with respect to the area it bounds, i.e., exterior rings are counterclockwise, and holes are clockwise.

Show children

Show children

Position
list<Coordinate>

GeoJSon fundamental geometry construct.

A position is an array of numbers. There MUST be two or more elements. The first two elements are longitude and latitude, precisely in that order and using decimal numbers. Altitude or elevation MAY be included as an optional third element.

Implementations SHOULD NOT extend positions beyond three elements because the semantics of extra elements are unspecified and ambiguous. Historically, some implementations have used a fourth element to carry a linear referencing measure (sometimes denoted as "M") or a numerical timestamp, but in most situations a parser will not be able to properly interpret these values. The interpretation and meaning of additional elements is beyond the scope of this specification, and additional elements MAY be ignored by parsers.

Show children

Show children

Coordinate
number
bbox
list<Coordinate>
optional

A GeoJSON object MAY have a member named "bbox" to include information on the coordinate range for its Geometries, Features, or FeatureCollections. The value of the bbox member MUST be an array of length 2*n where n is the number of dimensions represented in the contained geometries, with all axes of the most southwesterly point followed by all axes of the more northeasterly point. The axes order of a bbox follows the axes order of geometries.

Show children

Show children

Coordinate
number
lt
object
optional

Returns objects where the specified field is less than a value.

Show children

Show children

field
string

The name of the property in the API. To find the API name for your property, use the Get object type endpoint or check the Ontology Manager.

value
any

Represents the value of a property in the following format.

TypeJSON encodingExample
Arrayarray["alpha", "bravo", "charlie"]
AttachmentJSON encoded AttachmentProperty object{"rid":"ri.blobster.main.attachment.2f944bae-5851-4204-8615-920c969a9f2e"}
Booleanbooleantrue
Bytenumber31
DateISO 8601 extended local date string"2021-05-01"
Decimalstring"2.718281828"
Doublenumber3.14159265
Floatnumber3.14159265
GeoPointgeojson{"type":"Point","coordinates":[102.0,0.5]}
GeoShapegeojson{"type":"LineString","coordinates":[[102.0,0.0],[103.0,1.0],[104.0,0.0],[105.0,1.0]]}
Integernumber238940
Longstring"58319870951433"
Shortnumber8739
Stringstring"Call me Ishmael"
TimestampISO 8601 extended offset date-time string in UTC zone"2021-01-04T05:00:00Z"

Note that for backwards compatibility, the Boolean, Byte, Double, Float, Integer, and Short types can also be encoded as JSON strings.

doesNotIntersectBoundingBox
object
optional

Returns objects where the specified field does not intersect the bounding box provided.

Show children

Show children

field
string

The name of the property in the API. To find the API name for your property, use the Get object type endpoint or check the Ontology Manager.

value
object

The top left and bottom right coordinate points that make up the bounding box.

Show children

Show children

topLeft
union
Show children

Show children

Point
object
optional
Show children

Show children

coordinates
list<Coordinate>
optional

GeoJSon fundamental geometry construct.

A position is an array of numbers. There MUST be two or more elements. The first two elements are longitude and latitude, precisely in that order and using decimal numbers. Altitude or elevation MAY be included as an optional third element.

Implementations SHOULD NOT extend positions beyond three elements because the semantics of extra elements are unspecified and ambiguous. Historically, some implementations have used a fourth element to carry a linear referencing measure (sometimes denoted as "M") or a numerical timestamp, but in most situations a parser will not be able to properly interpret these values. The interpretation and meaning of additional elements is beyond the scope of this specification, and additional elements MAY be ignored by parsers.

Show children

Show children

Coordinate
number
bbox
list<Coordinate>
optional

A GeoJSON object MAY have a member named "bbox" to include information on the coordinate range for its Geometries, Features, or FeatureCollections. The value of the bbox member MUST be an array of length 2*n where n is the number of dimensions represented in the contained geometries, with all axes of the most southwesterly point followed by all axes of the more northeasterly point. The axes order of a bbox follows the axes order of geometries.

Show children

Show children

Coordinate
number
bottomRight
union
Show children

Show children

Point
object
optional
Show children

Show children

coordinates
list<Coordinate>
optional

GeoJSon fundamental geometry construct.

A position is an array of numbers. There MUST be two or more elements. The first two elements are longitude and latitude, precisely in that order and using decimal numbers. Altitude or elevation MAY be included as an optional third element.

Implementations SHOULD NOT extend positions beyond three elements because the semantics of extra elements are unspecified and ambiguous. Historically, some implementations have used a fourth element to carry a linear referencing measure (sometimes denoted as "M") or a numerical timestamp, but in most situations a parser will not be able to properly interpret these values. The interpretation and meaning of additional elements is beyond the scope of this specification, and additional elements MAY be ignored by parsers.

Show children

Show children

Coordinate
number
bbox
list<Coordinate>
optional

A GeoJSON object MAY have a member named "bbox" to include information on the coordinate range for its Geometries, Features, or FeatureCollections. The value of the bbox member MUST be an array of length 2*n where n is the number of dimensions represented in the contained geometries, with all axes of the most southwesterly point followed by all axes of the more northeasterly point. The axes order of a bbox follows the axes order of geometries.

Show children

Show children

Coordinate
number
eq
object
optional

Returns objects where the specified field is equal to a value.

Show children

Show children

field
string

The name of the property in the API. To find the API name for your property, use the Get object type endpoint or check the Ontology Manager.

value
any

Represents the value of a property in the following format.

TypeJSON encodingExample
Arrayarray["alpha", "bravo", "charlie"]
AttachmentJSON encoded AttachmentProperty object{"rid":"ri.blobster.main.attachment.2f944bae-5851-4204-8615-920c969a9f2e"}
Booleanbooleantrue
Bytenumber31
DateISO 8601 extended local date string"2021-05-01"
Decimalstring"2.718281828"
Doublenumber3.14159265
Floatnumber3.14159265
GeoPointgeojson{"type":"Point","coordinates":[102.0,0.5]}
GeoShapegeojson{"type":"LineString","coordinates":[[102.0,0.0],[103.0,1.0],[104.0,0.0],[105.0,1.0]]}
Integernumber238940
Longstring"58319870951433"
Shortnumber8739
Stringstring"Call me Ishmael"
TimestampISO 8601 extended offset date-time string in UTC zone"2021-01-04T05:00:00Z"

Note that for backwards compatibility, the Boolean, Byte, Double, Float, Integer, and Short types can also be encoded as JSON strings.

containsAllTerms
object
optional

Returns objects where the specified field contains all of the whitespace separated words in any order in the provided value. This query supports fuzzy matching.

Show children

Show children

field
string

The name of the property in the API. To find the API name for your property, use the Get object type endpoint or check the Ontology Manager.

value
string
fuzzy
boolean
optional

Setting fuzzy to true allows approximate matching in search queries that support it.

gt
object
optional

Returns objects where the specified field is greater than a value.

Show children

Show children

field
string

The name of the property in the API. To find the API name for your property, use the Get object type endpoint or check the Ontology Manager.

value
any

Represents the value of a property in the following format.

TypeJSON encodingExample
Arrayarray["alpha", "bravo", "charlie"]
AttachmentJSON encoded AttachmentProperty object{"rid":"ri.blobster.main.attachment.2f944bae-5851-4204-8615-920c969a9f2e"}
Booleanbooleantrue
Bytenumber31
DateISO 8601 extended local date string"2021-05-01"
Decimalstring"2.718281828"
Doublenumber3.14159265
Floatnumber3.14159265
GeoPointgeojson{"type":"Point","coordinates":[102.0,0.5]}
GeoShapegeojson{"type":"LineString","coordinates":[[102.0,0.0],[103.0,1.0],[104.0,0.0],[105.0,1.0]]}
Integernumber238940
Longstring"58319870951433"
Shortnumber8739
Stringstring"Call me Ishmael"
TimestampISO 8601 extended offset date-time string in UTC zone"2021-01-04T05:00:00Z"

Note that for backwards compatibility, the Boolean, Byte, Double, Float, Integer, and Short types can also be encoded as JSON strings.

withinDistanceOf
object
optional

Returns objects where the specified field contains a point within the distance provided of the center point.

Show children

Show children

field
string

The name of the property in the API. To find the API name for your property, use the Get object type endpoint or check the Ontology Manager.

value
object

The coordinate point to use as the center of the distance query.

Show children

Show children

center
union
Show children

Show children

Point
object
optional
Show children

Show children

coordinates
list<Coordinate>
optional

GeoJSon fundamental geometry construct.

A position is an array of numbers. There MUST be two or more elements. The first two elements are longitude and latitude, precisely in that order and using decimal numbers. Altitude or elevation MAY be included as an optional third element.

Implementations SHOULD NOT extend positions beyond three elements because the semantics of extra elements are unspecified and ambiguous. Historically, some implementations have used a fourth element to carry a linear referencing measure (sometimes denoted as "M") or a numerical timestamp, but in most situations a parser will not be able to properly interpret these values. The interpretation and meaning of additional elements is beyond the scope of this specification, and additional elements MAY be ignored by parsers.

Show children

Show children

Coordinate
number
bbox
list<Coordinate>
optional

A GeoJSON object MAY have a member named "bbox" to include information on the coordinate range for its Geometries, Features, or FeatureCollections. The value of the bbox member MUST be an array of length 2*n where n is the number of dimensions represented in the contained geometries, with all axes of the most southwesterly point followed by all axes of the more northeasterly point. The axes order of a bbox follows the axes order of geometries.

Show children

Show children

Coordinate
number
distance
object

A measurement of distance.

Show children

Show children

value
number
unit
string (enum)

Enum values: MILLIMETERS, CENTIMETERS, METERS, KILOMETERS, INCHES, FEET, YARDS, MILES, NAUTICAL_MILES

withinBoundingBox
object
optional

Returns objects where the specified field contains a point within the bounding box provided.

Show children

Show children

field
string

The name of the property in the API. To find the API name for your property, use the Get object type endpoint or check the Ontology Manager.

value
object

The top left and bottom right coordinate points that make up the bounding box.

Show children

Show children

topLeft
union
Show children

Show children

Point
object
optional
Show children

Show children

coordinates
list<Coordinate>
optional

GeoJSon fundamental geometry construct.

A position is an array of numbers. There MUST be two or more elements. The first two elements are longitude and latitude, precisely in that order and using decimal numbers. Altitude or elevation MAY be included as an optional third element.

Implementations SHOULD NOT extend positions beyond three elements because the semantics of extra elements are unspecified and ambiguous. Historically, some implementations have used a fourth element to carry a linear referencing measure (sometimes denoted as "M") or a numerical timestamp, but in most situations a parser will not be able to properly interpret these values. The interpretation and meaning of additional elements is beyond the scope of this specification, and additional elements MAY be ignored by parsers.

Show children

Show children

Coordinate
number
bbox
list<Coordinate>
optional

A GeoJSON object MAY have a member named "bbox" to include information on the coordinate range for its Geometries, Features, or FeatureCollections. The value of the bbox member MUST be an array of length 2*n where n is the number of dimensions represented in the contained geometries, with all axes of the most southwesterly point followed by all axes of the more northeasterly point. The axes order of a bbox follows the axes order of geometries.

Show children

Show children

Coordinate
number
bottomRight
union
Show children

Show children

Point
object
optional
Show children

Show children

coordinates
list<Coordinate>
optional

GeoJSon fundamental geometry construct.

A position is an array of numbers. There MUST be two or more elements. The first two elements are longitude and latitude, precisely in that order and using decimal numbers. Altitude or elevation MAY be included as an optional third element.

Implementations SHOULD NOT extend positions beyond three elements because the semantics of extra elements are unspecified and ambiguous. Historically, some implementations have used a fourth element to carry a linear referencing measure (sometimes denoted as "M") or a numerical timestamp, but in most situations a parser will not be able to properly interpret these values. The interpretation and meaning of additional elements is beyond the scope of this specification, and additional elements MAY be ignored by parsers.

Show children

Show children

Coordinate
number
bbox
list<Coordinate>
optional

A GeoJSON object MAY have a member named "bbox" to include information on the coordinate range for its Geometries, Features, or FeatureCollections. The value of the bbox member MUST be an array of length 2*n where n is the number of dimensions represented in the contained geometries, with all axes of the most southwesterly point followed by all axes of the more northeasterly point. The axes order of a bbox follows the axes order of geometries.

Show children

Show children

Coordinate
number
contains
object
optional

Returns objects where the specified array contains a value.

Show children

Show children

field
string

The name of the property in the API. To find the API name for your property, use the Get object type endpoint or check the Ontology Manager.

value
any

Represents the value of a property in the following format.

TypeJSON encodingExample
Arrayarray["alpha", "bravo", "charlie"]
AttachmentJSON encoded AttachmentProperty object{"rid":"ri.blobster.main.attachment.2f944bae-5851-4204-8615-920c969a9f2e"}
Booleanbooleantrue
Bytenumber31
DateISO 8601 extended local date string"2021-05-01"
Decimalstring"2.718281828"
Doublenumber3.14159265
Floatnumber3.14159265
GeoPointgeojson{"type":"Point","coordinates":[102.0,0.5]}
GeoShapegeojson{"type":"LineString","coordinates":[[102.0,0.0],[103.0,1.0],[104.0,0.0],[105.0,1.0]]}
Integernumber238940
Longstring"58319870951433"
Shortnumber8739
Stringstring"Call me Ishmael"
TimestampISO 8601 extended offset date-time string in UTC zone"2021-01-04T05:00:00Z"

Note that for backwards compatibility, the Boolean, Byte, Double, Float, Integer, and Short types can also be encoded as JSON strings.

not
object
optional

Returns objects where the query is not satisfied.

Show children

Show children

value
union
Show children

Show children

or
object
optional

Returns objects where at least 1 query is satisfied.

Show children

Show children

value
list<SearchJsonQueryV2>
optional
Show children

Show children

SearchJsonQueryV2
union
in
object
optional

Returns objects where the specified field equals any of the provided values.

Show children

Show children

field
string

The name of the property in the API. To find the API name for your property, use the Get object type endpoint or check the Ontology Manager.

value
list<PropertyValue>
optional
Show children

Show children

PropertyValue
any

Represents the value of a property in the following format.

TypeJSON encodingExample
Arrayarray["alpha", "bravo", "charlie"]
AttachmentJSON encoded AttachmentProperty object{"rid":"ri.blobster.main.attachment.2f944bae-5851-4204-8615-920c969a9f2e"}
Booleanbooleantrue
Bytenumber31
DateISO 8601 extended local date string"2021-05-01"
Decimalstring"2.718281828"
Doublenumber3.14159265
Floatnumber3.14159265
GeoPointgeojson{"type":"Point","coordinates":[102.0,0.5]}
GeoShapegeojson{"type":"LineString","coordinates":[[102.0,0.0],[103.0,1.0],[104.0,0.0],[105.0,1.0]]}
Integernumber238940
Longstring"58319870951433"
Shortnumber8739
Stringstring"Call me Ishmael"
TimestampISO 8601 extended offset date-time string in UTC zone"2021-01-04T05:00:00Z"

Note that for backwards compatibility, the Boolean, Byte, Double, Float, Integer, and Short types can also be encoded as JSON strings.

doesNotIntersectPolygon
object
optional

Returns objects where the specified field does not intersect the polygon provided.

Show children

Show children

field
string

The name of the property in the API. To find the API name for your property, use the Get object type endpoint or check the Ontology Manager.

value
union
Show children

Show children

Polygon
object
optional
Show children

Show children

coordinates
list<LinearRing>
optional
Show children

Show children

LinearRing
list<Position>

A linear ring is a closed LineString with four or more positions.

The first and last positions are equivalent, and they MUST contain identical values; their representation SHOULD also be identical.

A linear ring is the boundary of a surface or the boundary of a hole in a surface.

A linear ring MUST follow the right-hand rule with respect to the area it bounds, i.e., exterior rings are counterclockwise, and holes are clockwise.

Show children

Show children

Position
list<Coordinate>

GeoJSon fundamental geometry construct.

A position is an array of numbers. There MUST be two or more elements. The first two elements are longitude and latitude, precisely in that order and using decimal numbers. Altitude or elevation MAY be included as an optional third element.

Implementations SHOULD NOT extend positions beyond three elements because the semantics of extra elements are unspecified and ambiguous. Historically, some implementations have used a fourth element to carry a linear referencing measure (sometimes denoted as "M") or a numerical timestamp, but in most situations a parser will not be able to properly interpret these values. The interpretation and meaning of additional elements is beyond the scope of this specification, and additional elements MAY be ignored by parsers.

Show children

Show children

Coordinate
number
bbox
list<Coordinate>
optional

A GeoJSON object MAY have a member named "bbox" to include information on the coordinate range for its Geometries, Features, or FeatureCollections. The value of the bbox member MUST be an array of length 2*n where n is the number of dimensions represented in the contained geometries, with all axes of the most southwesterly point followed by all axes of the more northeasterly point. The axes order of a bbox follows the axes order of geometries.

Show children

Show children

Coordinate
number
lt
object
optional

Returns objects where the specified field is less than a value.

Show children

Show children

field
string

The name of the property in the API. To find the API name for your property, use the Get object type endpoint or check the Ontology Manager.

value
any

Represents the value of a property in the following format.

TypeJSON encodingExample
Arrayarray["alpha", "bravo", "charlie"]
AttachmentJSON encoded AttachmentProperty object{"rid":"ri.blobster.main.attachment.2f944bae-5851-4204-8615-920c969a9f2e"}
Booleanbooleantrue
Bytenumber31
DateISO 8601 extended local date string"2021-05-01"
Decimalstring"2.718281828"
Doublenumber3.14159265
Floatnumber3.14159265
GeoPointgeojson{"type":"Point","coordinates":[102.0,0.5]}
GeoShapegeojson{"type":"LineString","coordinates":[[102.0,0.0],[103.0,1.0],[104.0,0.0],[105.0,1.0]]}
Integernumber238940
Longstring"58319870951433"
Shortnumber8739
Stringstring"Call me Ishmael"
TimestampISO 8601 extended offset date-time string in UTC zone"2021-01-04T05:00:00Z"

Note that for backwards compatibility, the Boolean, Byte, Double, Float, Integer, and Short types can also be encoded as JSON strings.

doesNotIntersectBoundingBox
object
optional

Returns objects where the specified field does not intersect the bounding box provided.

Show children

Show children

field
string

The name of the property in the API. To find the API name for your property, use the Get object type endpoint or check the Ontology Manager.

value
object

The top left and bottom right coordinate points that make up the bounding box.

Show children

Show children

topLeft
union
Show children

Show children

Point
object
optional
Show children

Show children

coordinates
list<Coordinate>
optional

GeoJSon fundamental geometry construct.

A position is an array of numbers. There MUST be two or more elements. The first two elements are longitude and latitude, precisely in that order and using decimal numbers. Altitude or elevation MAY be included as an optional third element.

Implementations SHOULD NOT extend positions beyond three elements because the semantics of extra elements are unspecified and ambiguous. Historically, some implementations have used a fourth element to carry a linear referencing measure (sometimes denoted as "M") or a numerical timestamp, but in most situations a parser will not be able to properly interpret these values. The interpretation and meaning of additional elements is beyond the scope of this specification, and additional elements MAY be ignored by parsers.

Show children

Show children

Coordinate
number
bbox
list<Coordinate>
optional

A GeoJSON object MAY have a member named "bbox" to include information on the coordinate range for its Geometries, Features, or FeatureCollections. The value of the bbox member MUST be an array of length 2*n where n is the number of dimensions represented in the contained geometries, with all axes of the most southwesterly point followed by all axes of the more northeasterly point. The axes order of a bbox follows the axes order of geometries.

Show children

Show children

Coordinate
number
bottomRight
union
Show children

Show children

Point
object
optional
Show children

Show children

coordinates
list<Coordinate>
optional

GeoJSon fundamental geometry construct.

A position is an array of numbers. There MUST be two or more elements. The first two elements are longitude and latitude, precisely in that order and using decimal numbers. Altitude or elevation MAY be included as an optional third element.

Implementations SHOULD NOT extend positions beyond three elements because the semantics of extra elements are unspecified and ambiguous. Historically, some implementations have used a fourth element to carry a linear referencing measure (sometimes denoted as "M") or a numerical timestamp, but in most situations a parser will not be able to properly interpret these values. The interpretation and meaning of additional elements is beyond the scope of this specification, and additional elements MAY be ignored by parsers.

Show children

Show children

Coordinate
number
bbox
list<Coordinate>
optional

A GeoJSON object MAY have a member named "bbox" to include information on the coordinate range for its Geometries, Features, or FeatureCollections. The value of the bbox member MUST be an array of length 2*n where n is the number of dimensions represented in the contained geometries, with all axes of the most southwesterly point followed by all axes of the more northeasterly point. The axes order of a bbox follows the axes order of geometries.

Show children

Show children

Coordinate
number
eq
object
optional

Returns objects where the specified field is equal to a value.

Show children

Show children

field
string

The name of the property in the API. To find the API name for your property, use the Get object type endpoint or check the Ontology Manager.

value
any

Represents the value of a property in the following format.

TypeJSON encodingExample
Arrayarray["alpha", "bravo", "charlie"]
AttachmentJSON encoded AttachmentProperty object{"rid":"ri.blobster.main.attachment.2f944bae-5851-4204-8615-920c969a9f2e"}
Booleanbooleantrue
Bytenumber31
DateISO 8601 extended local date string"2021-05-01"
Decimalstring"2.718281828"
Doublenumber3.14159265
Floatnumber3.14159265
GeoPointgeojson{"type":"Point","coordinates":[102.0,0.5]}
GeoShapegeojson{"type":"LineString","coordinates":[[102.0,0.0],[103.0,1.0],[104.0,0.0],[105.0,1.0]]}
Integernumber238940
Longstring"58319870951433"
Shortnumber8739
Stringstring"Call me Ishmael"
TimestampISO 8601 extended offset date-time string in UTC zone"2021-01-04T05:00:00Z"

Note that for backwards compatibility, the Boolean, Byte, Double, Float, Integer, and Short types can also be encoded as JSON strings.

containsAllTerms
object
optional

Returns objects where the specified field contains all of the whitespace separated words in any order in the provided value. This query supports fuzzy matching.

Show children

Show children

field
string

The name of the property in the API. To find the API name for your property, use the Get object type endpoint or check the Ontology Manager.

value
string
fuzzy
boolean
optional

Setting fuzzy to true allows approximate matching in search queries that support it.

gt
object
optional

Returns objects where the specified field is greater than a value.

Show children

Show children

field
string

The name of the property in the API. To find the API name for your property, use the Get object type endpoint or check the Ontology Manager.

value
any

Represents the value of a property in the following format.

TypeJSON encodingExample
Arrayarray["alpha", "bravo", "charlie"]
AttachmentJSON encoded AttachmentProperty object{"rid":"ri.blobster.main.attachment.2f944bae-5851-4204-8615-920c969a9f2e"}
Booleanbooleantrue
Bytenumber31
DateISO 8601 extended local date string"2021-05-01"
Decimalstring"2.718281828"
Doublenumber3.14159265
Floatnumber3.14159265
GeoPointgeojson{"type":"Point","coordinates":[102.0,0.5]}
GeoShapegeojson{"type":"LineString","coordinates":[[102.0,0.0],[103.0,1.0],[104.0,0.0],[105.0,1.0]]}
Integernumber238940
Longstring"58319870951433"
Shortnumber8739
Stringstring"Call me Ishmael"
TimestampISO 8601 extended offset date-time string in UTC zone"2021-01-04T05:00:00Z"

Note that for backwards compatibility, the Boolean, Byte, Double, Float, Integer, and Short types can also be encoded as JSON strings.

withinDistanceOf
object
optional

Returns objects where the specified field contains a point within the distance provided of the center point.

Show children

Show children

field
string

The name of the property in the API. To find the API name for your property, use the Get object type endpoint or check the Ontology Manager.

value
object

The coordinate point to use as the center of the distance query.

Show children

Show children

center
union
Show children

Show children

Point
object
optional
Show children

Show children

coordinates
list<Coordinate>
optional

GeoJSon fundamental geometry construct.

A position is an array of numbers. There MUST be two or more elements. The first two elements are longitude and latitude, precisely in that order and using decimal numbers. Altitude or elevation MAY be included as an optional third element.

Implementations SHOULD NOT extend positions beyond three elements because the semantics of extra elements are unspecified and ambiguous. Historically, some implementations have used a fourth element to carry a linear referencing measure (sometimes denoted as "M") or a numerical timestamp, but in most situations a parser will not be able to properly interpret these values. The interpretation and meaning of additional elements is beyond the scope of this specification, and additional elements MAY be ignored by parsers.

Show children

Show children

Coordinate
number
bbox
list<Coordinate>
optional

A GeoJSON object MAY have a member named "bbox" to include information on the coordinate range for its Geometries, Features, or FeatureCollections. The value of the bbox member MUST be an array of length 2*n where n is the number of dimensions represented in the contained geometries, with all axes of the most southwesterly point followed by all axes of the more northeasterly point. The axes order of a bbox follows the axes order of geometries.

Show children

Show children

Coordinate
number
distance
object

A measurement of distance.

Show children

Show children

value
number
unit
string (enum)

Enum values: MILLIMETERS, CENTIMETERS, METERS, KILOMETERS, INCHES, FEET, YARDS, MILES, NAUTICAL_MILES

withinBoundingBox
object
optional

Returns objects where the specified field contains a point within the bounding box provided.

Show children

Show children

field
string

The name of the property in the API. To find the API name for your property, use the Get object type endpoint or check the Ontology Manager.

value
object

The top left and bottom right coordinate points that make up the bounding box.

Show children

Show children

topLeft
union
Show children

Show children

Point
object
optional
Show children

Show children

coordinates
list<Coordinate>
optional

GeoJSon fundamental geometry construct.

A position is an array of numbers. There MUST be two or more elements. The first two elements are longitude and latitude, precisely in that order and using decimal numbers. Altitude or elevation MAY be included as an optional third element.

Implementations SHOULD NOT extend positions beyond three elements because the semantics of extra elements are unspecified and ambiguous. Historically, some implementations have used a fourth element to carry a linear referencing measure (sometimes denoted as "M") or a numerical timestamp, but in most situations a parser will not be able to properly interpret these values. The interpretation and meaning of additional elements is beyond the scope of this specification, and additional elements MAY be ignored by parsers.

Show children

Show children

Coordinate
number
bbox
list<Coordinate>
optional

A GeoJSON object MAY have a member named "bbox" to include information on the coordinate range for its Geometries, Features, or FeatureCollections. The value of the bbox member MUST be an array of length 2*n where n is the number of dimensions represented in the contained geometries, with all axes of the most southwesterly point followed by all axes of the more northeasterly point. The axes order of a bbox follows the axes order of geometries.

Show children

Show children

Coordinate
number
bottomRight
union
Show children

Show children

Point
object
optional
Show children

Show children

coordinates
list<Coordinate>
optional

GeoJSon fundamental geometry construct.

A position is an array of numbers. There MUST be two or more elements. The first two elements are longitude and latitude, precisely in that order and using decimal numbers. Altitude or elevation MAY be included as an optional third element.

Implementations SHOULD NOT extend positions beyond three elements because the semantics of extra elements are unspecified and ambiguous. Historically, some implementations have used a fourth element to carry a linear referencing measure (sometimes denoted as "M") or a numerical timestamp, but in most situations a parser will not be able to properly interpret these values. The interpretation and meaning of additional elements is beyond the scope of this specification, and additional elements MAY be ignored by parsers.

Show children

Show children

Coordinate
number
bbox
list<Coordinate>
optional

A GeoJSON object MAY have a member named "bbox" to include information on the coordinate range for its Geometries, Features, or FeatureCollections. The value of the bbox member MUST be an array of length 2*n where n is the number of dimensions represented in the contained geometries, with all axes of the most southwesterly point followed by all axes of the more northeasterly point. The axes order of a bbox follows the axes order of geometries.

Show children

Show children

Coordinate
number
contains
object
optional

Returns objects where the specified array contains a value.

Show children

Show children

field
string

The name of the property in the API. To find the API name for your property, use the Get object type endpoint or check the Ontology Manager.

value
any

Represents the value of a property in the following format.

TypeJSON encodingExample
Arrayarray["alpha", "bravo", "charlie"]
AttachmentJSON encoded AttachmentProperty object{"rid":"ri.blobster.main.attachment.2f944bae-5851-4204-8615-920c969a9f2e"}
Booleanbooleantrue
Bytenumber31
DateISO 8601 extended local date string"2021-05-01"
Decimalstring"2.718281828"
Doublenumber3.14159265
Floatnumber3.14159265
GeoPointgeojson{"type":"Point","coordinates":[102.0,0.5]}
GeoShapegeojson{"type":"LineString","coordinates":[[102.0,0.0],[103.0,1.0],[104.0,0.0],[105.0,1.0]]}
Integernumber238940
Longstring"58319870951433"
Shortnumber8739
Stringstring"Call me Ishmael"
TimestampISO 8601 extended offset date-time string in UTC zone"2021-01-04T05:00:00Z"

Note that for backwards compatibility, the Boolean, Byte, Double, Float, Integer, and Short types can also be encoded as JSON strings.

not
object
optional

Returns objects where the query is not satisfied.

Show children

Show children

value
union
intersectsBoundingBox
object
optional

Returns objects where the specified field intersects the bounding box provided.

Show children

Show children

field
string

The name of the property in the API. To find the API name for your property, use the Get object type endpoint or check the Ontology Manager.

value
object

The top left and bottom right coordinate points that make up the bounding box.

Show children

Show children

topLeft
union
Show children

Show children

Point
object
optional
Show children

Show children

coordinates
list<Coordinate>
optional

GeoJSon fundamental geometry construct.

A position is an array of numbers. There MUST be two or more elements. The first two elements are longitude and latitude, precisely in that order and using decimal numbers. Altitude or elevation MAY be included as an optional third element.

Implementations SHOULD NOT extend positions beyond three elements because the semantics of extra elements are unspecified and ambiguous. Historically, some implementations have used a fourth element to carry a linear referencing measure (sometimes denoted as "M") or a numerical timestamp, but in most situations a parser will not be able to properly interpret these values. The interpretation and meaning of additional elements is beyond the scope of this specification, and additional elements MAY be ignored by parsers.

Show children

Show children

Coordinate
number
bbox
list<Coordinate>
optional

A GeoJSON object MAY have a member named "bbox" to include information on the coordinate range for its Geometries, Features, or FeatureCollections. The value of the bbox member MUST be an array of length 2*n where n is the number of dimensions represented in the contained geometries, with all axes of the most southwesterly point followed by all axes of the more northeasterly point. The axes order of a bbox follows the axes order of geometries.

Show children

Show children

Coordinate
number
bottomRight
union
Show children

Show children

Point
object
optional
Show children

Show children

coordinates
list<Coordinate>
optional

GeoJSon fundamental geometry construct.

A position is an array of numbers. There MUST be two or more elements. The first two elements are longitude and latitude, precisely in that order and using decimal numbers. Altitude or elevation MAY be included as an optional third element.

Implementations SHOULD NOT extend positions beyond three elements because the semantics of extra elements are unspecified and ambiguous. Historically, some implementations have used a fourth element to carry a linear referencing measure (sometimes denoted as "M") or a numerical timestamp, but in most situations a parser will not be able to properly interpret these values. The interpretation and meaning of additional elements is beyond the scope of this specification, and additional elements MAY be ignored by parsers.

Show children

Show children

Coordinate
number
bbox
list<Coordinate>
optional

A GeoJSON object MAY have a member named "bbox" to include information on the coordinate range for its Geometries, Features, or FeatureCollections. The value of the bbox member MUST be an array of length 2*n where n is the number of dimensions represented in the contained geometries, with all axes of the most southwesterly point followed by all axes of the more northeasterly point. The axes order of a bbox follows the axes order of geometries.

Show children

Show children

Coordinate
number
and
object
optional

Returns objects where every query is satisfied.

Show children

Show children

value
list<SearchJsonQueryV2>
optional
Show children

Show children

SearchJsonQueryV2
union
isNull
object
optional

Returns objects based on the existence of the specified field.

Show children

Show children

field
string

The name of the property in the API. To find the API name for your property, use the Get object type endpoint or check the Ontology Manager.

value
boolean
containsAllTermsInOrderPrefixLastTerm
object
optional

Returns objects where the specified field contains all of the terms in the order provided, but they do have to be adjacent to each other. The last term can be a partial prefix match.

Show children

Show children

field
string

The name of the property in the API. To find the API name for your property, use the Get object type endpoint or check the Ontology Manager.

value
string
containsAnyTerm
object
optional

Returns objects where the specified field contains any of the whitespace separated words in any order in the provided value. This query supports fuzzy matching.

Show children

Show children

field
string

The name of the property in the API. To find the API name for your property, use the Get object type endpoint or check the Ontology Manager.

value
string
fuzzy
boolean
optional

Setting fuzzy to true allows approximate matching in search queries that support it.

gte
object
optional

Returns objects where the specified field is greater than or equal to a value.

Show children

Show children

field
string

The name of the property in the API. To find the API name for your property, use the Get object type endpoint or check the Ontology Manager.

value
any

Represents the value of a property in the following format.

TypeJSON encodingExample
Arrayarray["alpha", "bravo", "charlie"]
AttachmentJSON encoded AttachmentProperty object{"rid":"ri.blobster.main.attachment.2f944bae-5851-4204-8615-920c969a9f2e"}
Booleanbooleantrue
Bytenumber31
DateISO 8601 extended local date string"2021-05-01"
Decimalstring"2.718281828"
Doublenumber3.14159265
Floatnumber3.14159265
GeoPointgeojson{"type":"Point","coordinates":[102.0,0.5]}
GeoShapegeojson{"type":"LineString","coordinates":[[102.0,0.0],[103.0,1.0],[104.0,0.0],[105.0,1.0]]}
Integernumber238940
Longstring"58319870951433"
Shortnumber8739
Stringstring"Call me Ishmael"
TimestampISO 8601 extended offset date-time string in UTC zone"2021-01-04T05:00:00Z"

Note that for backwards compatibility, the Boolean, Byte, Double, Float, Integer, and Short types can also be encoded as JSON strings.

containsAllTermsInOrder
object
optional

Returns objects where the specified field contains all of the terms in the order provided, but they do have to be adjacent to each other.

Show children

Show children

field
string

The name of the property in the API. To find the API name for your property, use the Get object type endpoint or check the Ontology Manager.

value
string
withinPolygon
object
optional

Returns objects where the specified field contains a point within the polygon provided.

Show children

Show children

field
string

The name of the property in the API. To find the API name for your property, use the Get object type endpoint or check the Ontology Manager.

value
union
Show children

Show children

Polygon
object
optional
Show children

Show children

coordinates
list<LinearRing>
optional
Show children

Show children

LinearRing
list<Position>

A linear ring is a closed LineString with four or more positions.

The first and last positions are equivalent, and they MUST contain identical values; their representation SHOULD also be identical.

A linear ring is the boundary of a surface or the boundary of a hole in a surface.

A linear ring MUST follow the right-hand rule with respect to the area it bounds, i.e., exterior rings are counterclockwise, and holes are clockwise.

Show children

Show children

Position
list<Coordinate>

GeoJSon fundamental geometry construct.

A position is an array of numbers. There MUST be two or more elements. The first two elements are longitude and latitude, precisely in that order and using decimal numbers. Altitude or elevation MAY be included as an optional third element.

Implementations SHOULD NOT extend positions beyond three elements because the semantics of extra elements are unspecified and ambiguous. Historically, some implementations have used a fourth element to carry a linear referencing measure (sometimes denoted as "M") or a numerical timestamp, but in most situations a parser will not be able to properly interpret these values. The interpretation and meaning of additional elements is beyond the scope of this specification, and additional elements MAY be ignored by parsers.

Show children

Show children

Coordinate
number
bbox
list<Coordinate>
optional

A GeoJSON object MAY have a member named "bbox" to include information on the coordinate range for its Geometries, Features, or FeatureCollections. The value of the bbox member MUST be an array of length 2*n where n is the number of dimensions represented in the contained geometries, with all axes of the most southwesterly point followed by all axes of the more northeasterly point. The axes order of a bbox follows the axes order of geometries.

Show children

Show children

Coordinate
number
intersectsPolygon
object
optional

Returns objects where the specified field intersects the polygon provided.

Show children

Show children

field
string

The name of the property in the API. To find the API name for your property, use the Get object type endpoint or check the Ontology Manager.

value
union
Show children

Show children

Polygon
object
optional
Show children

Show children

coordinates
list<LinearRing>
optional
Show children

Show children

LinearRing
list<Position>

A linear ring is a closed LineString with four or more positions.

The first and last positions are equivalent, and they MUST contain identical values; their representation SHOULD also be identical.

A linear ring is the boundary of a surface or the boundary of a hole in a surface.

A linear ring MUST follow the right-hand rule with respect to the area it bounds, i.e., exterior rings are counterclockwise, and holes are clockwise.

Show children

Show children

Position
list<Coordinate>

GeoJSon fundamental geometry construct.

A position is an array of numbers. There MUST be two or more elements. The first two elements are longitude and latitude, precisely in that order and using decimal numbers. Altitude or elevation MAY be included as an optional third element.

Implementations SHOULD NOT extend positions beyond three elements because the semantics of extra elements are unspecified and ambiguous. Historically, some implementations have used a fourth element to carry a linear referencing measure (sometimes denoted as "M") or a numerical timestamp, but in most situations a parser will not be able to properly interpret these values. The interpretation and meaning of additional elements is beyond the scope of this specification, and additional elements MAY be ignored by parsers.

Show children

Show children

Coordinate
number
bbox
list<Coordinate>
optional

A GeoJSON object MAY have a member named "bbox" to include information on the coordinate range for its Geometries, Features, or FeatureCollections. The value of the bbox member MUST be an array of length 2*n where n is the number of dimensions represented in the contained geometries, with all axes of the most southwesterly point followed by all axes of the more northeasterly point. The axes order of a bbox follows the axes order of geometries.

Show children

Show children

Coordinate
number
lte
object
optional

Returns objects where the specified field is less than or equal to a value.

Show children

Show children

field
string

The name of the property in the API. To find the API name for your property, use the Get object type endpoint or check the Ontology Manager.

value
any

Represents the value of a property in the following format.

TypeJSON encodingExample
Arrayarray["alpha", "bravo", "charlie"]
AttachmentJSON encoded AttachmentProperty object{"rid":"ri.blobster.main.attachment.2f944bae-5851-4204-8615-920c969a9f2e"}
Booleanbooleantrue
Bytenumber31
DateISO 8601 extended local date string"2021-05-01"
Decimalstring"2.718281828"
Doublenumber3.14159265
Floatnumber3.14159265
GeoPointgeojson{"type":"Point","coordinates":[102.0,0.5]}
GeoShapegeojson{"type":"LineString","coordinates":[[102.0,0.0],[103.0,1.0],[104.0,0.0],[105.0,1.0]]}
Integernumber238940
Longstring"58319870951433"
Shortnumber8739
Stringstring"Call me Ishmael"
TimestampISO 8601 extended offset date-time string in UTC zone"2021-01-04T05:00:00Z"

Note that for backwards compatibility, the Boolean, Byte, Double, Float, Integer, and Short types can also be encoded as JSON strings.

startsWith
object
optional

Returns objects where the specified field starts with the provided value.

Show children

Show children

field
string

The name of the property in the API. To find the API name for your property, use the Get object type endpoint or check the Ontology Manager.

value
string
intersectsBoundingBox
object
optional

Returns objects where the specified field intersects the bounding box provided.

Show children

Show children

field
string

The name of the property in the API. To find the API name for your property, use the Get object type endpoint or check the Ontology Manager.

value
object

The top left and bottom right coordinate points that make up the bounding box.

Show children

Show children

topLeft
union
Show children

Show children

Point
object
optional
Show children

Show children

coordinates
list<Coordinate>
optional

GeoJSon fundamental geometry construct.

A position is an array of numbers. There MUST be two or more elements. The first two elements are longitude and latitude, precisely in that order and using decimal numbers. Altitude or elevation MAY be included as an optional third element.

Implementations SHOULD NOT extend positions beyond three elements because the semantics of extra elements are unspecified and ambiguous. Historically, some implementations have used a fourth element to carry a linear referencing measure (sometimes denoted as "M") or a numerical timestamp, but in most situations a parser will not be able to properly interpret these values. The interpretation and meaning of additional elements is beyond the scope of this specification, and additional elements MAY be ignored by parsers.

Show children

Show children

Coordinate
number
bbox
list<Coordinate>
optional

A GeoJSON object MAY have a member named "bbox" to include information on the coordinate range for its Geometries, Features, or FeatureCollections. The value of the bbox member MUST be an array of length 2*n where n is the number of dimensions represented in the contained geometries, with all axes of the most southwesterly point followed by all axes of the more northeasterly point. The axes order of a bbox follows the axes order of geometries.

Show children

Show children

Coordinate
number
bottomRight
union
Show children

Show children

Point
object
optional
Show children

Show children

coordinates
list<Coordinate>
optional

GeoJSon fundamental geometry construct.

A position is an array of numbers. There MUST be two or more elements. The first two elements are longitude and latitude, precisely in that order and using decimal numbers. Altitude or elevation MAY be included as an optional third element.

Implementations SHOULD NOT extend positions beyond three elements because the semantics of extra elements are unspecified and ambiguous. Historically, some implementations have used a fourth element to carry a linear referencing measure (sometimes denoted as "M") or a numerical timestamp, but in most situations a parser will not be able to properly interpret these values. The interpretation and meaning of additional elements is beyond the scope of this specification, and additional elements MAY be ignored by parsers.

Show children

Show children

Coordinate
number
bbox
list<Coordinate>
optional

A GeoJSON object MAY have a member named "bbox" to include information on the coordinate range for its Geometries, Features, or FeatureCollections. The value of the bbox member MUST be an array of length 2*n where n is the number of dimensions represented in the contained geometries, with all axes of the most southwesterly point followed by all axes of the more northeasterly point. The axes order of a bbox follows the axes order of geometries.

Show children

Show children

Coordinate
number
and
object
optional

Returns objects where every query is satisfied.

Show children

Show children

value
list<SearchJsonQueryV2>
optional
Show children

Show children

SearchJsonQueryV2
union
Show children

Show children

or
object
optional

Returns objects where at least 1 query is satisfied.

Show children

Show children

value
list<SearchJsonQueryV2>
optional
Show children

Show children

SearchJsonQueryV2
union
in
object
optional

Returns objects where the specified field equals any of the provided values.

Show children

Show children

field
string

The name of the property in the API. To find the API name for your property, use the Get object type endpoint or check the Ontology Manager.

value
list<PropertyValue>
optional
Show children

Show children

PropertyValue
any

Represents the value of a property in the following format.

TypeJSON encodingExample
Arrayarray["alpha", "bravo", "charlie"]
AttachmentJSON encoded AttachmentProperty object{"rid":"ri.blobster.main.attachment.2f944bae-5851-4204-8615-920c969a9f2e"}
Booleanbooleantrue
Bytenumber31
DateISO 8601 extended local date string"2021-05-01"
Decimalstring"2.718281828"
Doublenumber3.14159265
Floatnumber3.14159265
GeoPointgeojson{"type":"Point","coordinates":[102.0,0.5]}
GeoShapegeojson{"type":"LineString","coordinates":[[102.0,0.0],[103.0,1.0],[104.0,0.0],[105.0,1.0]]}
Integernumber238940
Longstring"58319870951433"
Shortnumber8739
Stringstring"Call me Ishmael"
TimestampISO 8601 extended offset date-time string in UTC zone"2021-01-04T05:00:00Z"

Note that for backwards compatibility, the Boolean, Byte, Double, Float, Integer, and Short types can also be encoded as JSON strings.

doesNotIntersectPolygon
object
optional

Returns objects where the specified field does not intersect the polygon provided.

Show children

Show children

field
string

The name of the property in the API. To find the API name for your property, use the Get object type endpoint or check the Ontology Manager.

value
union
Show children

Show children

Polygon
object
optional
Show children

Show children

coordinates
list<LinearRing>
optional
Show children

Show children

LinearRing
list<Position>

A linear ring is a closed LineString with four or more positions.

The first and last positions are equivalent, and they MUST contain identical values; their representation SHOULD also be identical.

A linear ring is the boundary of a surface or the boundary of a hole in a surface.

A linear ring MUST follow the right-hand rule with respect to the area it bounds, i.e., exterior rings are counterclockwise, and holes are clockwise.

Show children

Show children

Position
list<Coordinate>

GeoJSon fundamental geometry construct.

A position is an array of numbers. There MUST be two or more elements. The first two elements are longitude and latitude, precisely in that order and using decimal numbers. Altitude or elevation MAY be included as an optional third element.

Implementations SHOULD NOT extend positions beyond three elements because the semantics of extra elements are unspecified and ambiguous. Historically, some implementations have used a fourth element to carry a linear referencing measure (sometimes denoted as "M") or a numerical timestamp, but in most situations a parser will not be able to properly interpret these values. The interpretation and meaning of additional elements is beyond the scope of this specification, and additional elements MAY be ignored by parsers.

Show children

Show children

Coordinate
number
bbox
list<Coordinate>
optional

A GeoJSON object MAY have a member named "bbox" to include information on the coordinate range for its Geometries, Features, or FeatureCollections. The value of the bbox member MUST be an array of length 2*n where n is the number of dimensions represented in the contained geometries, with all axes of the most southwesterly point followed by all axes of the more northeasterly point. The axes order of a bbox follows the axes order of geometries.

Show children

Show children

Coordinate
number
lt
object
optional

Returns objects where the specified field is less than a value.

Show children

Show children

field
string

The name of the property in the API. To find the API name for your property, use the Get object type endpoint or check the Ontology Manager.

value
any

Represents the value of a property in the following format.

TypeJSON encodingExample
Arrayarray["alpha", "bravo", "charlie"]
AttachmentJSON encoded AttachmentProperty object{"rid":"ri.blobster.main.attachment.2f944bae-5851-4204-8615-920c969a9f2e"}
Booleanbooleantrue
Bytenumber31
DateISO 8601 extended local date string"2021-05-01"
Decimalstring"2.718281828"
Doublenumber3.14159265
Floatnumber3.14159265
GeoPointgeojson{"type":"Point","coordinates":[102.0,0.5]}
GeoShapegeojson{"type":"LineString","coordinates":[[102.0,0.0],[103.0,1.0],[104.0,0.0],[105.0,1.0]]}
Integernumber238940
Longstring"58319870951433"
Shortnumber8739
Stringstring"Call me Ishmael"
TimestampISO 8601 extended offset date-time string in UTC zone"2021-01-04T05:00:00Z"

Note that for backwards compatibility, the Boolean, Byte, Double, Float, Integer, and Short types can also be encoded as JSON strings.

doesNotIntersectBoundingBox
object
optional

Returns objects where the specified field does not intersect the bounding box provided.

Show children

Show children

field
string

The name of the property in the API. To find the API name for your property, use the Get object type endpoint or check the Ontology Manager.

value
object

The top left and bottom right coordinate points that make up the bounding box.

Show children

Show children

topLeft
union
Show children

Show children

Point
object
optional
Show children

Show children

coordinates
list<Coordinate>
optional

GeoJSon fundamental geometry construct.

A position is an array of numbers. There MUST be two or more elements. The first two elements are longitude and latitude, precisely in that order and using decimal numbers. Altitude or elevation MAY be included as an optional third element.

Implementations SHOULD NOT extend positions beyond three elements because the semantics of extra elements are unspecified and ambiguous. Historically, some implementations have used a fourth element to carry a linear referencing measure (sometimes denoted as "M") or a numerical timestamp, but in most situations a parser will not be able to properly interpret these values. The interpretation and meaning of additional elements is beyond the scope of this specification, and additional elements MAY be ignored by parsers.

Show children

Show children

Coordinate
number
bbox
list<Coordinate>
optional

A GeoJSON object MAY have a member named "bbox" to include information on the coordinate range for its Geometries, Features, or FeatureCollections. The value of the bbox member MUST be an array of length 2*n where n is the number of dimensions represented in the contained geometries, with all axes of the most southwesterly point followed by all axes of the more northeasterly point. The axes order of a bbox follows the axes order of geometries.

Show children

Show children

Coordinate
number
bottomRight
union
Show children

Show children

Point
object
optional
Show children

Show children

coordinates
list<Coordinate>
optional

GeoJSon fundamental geometry construct.

A position is an array of numbers. There MUST be two or more elements. The first two elements are longitude and latitude, precisely in that order and using decimal numbers. Altitude or elevation MAY be included as an optional third element.

Implementations SHOULD NOT extend positions beyond three elements because the semantics of extra elements are unspecified and ambiguous. Historically, some implementations have used a fourth element to carry a linear referencing measure (sometimes denoted as "M") or a numerical timestamp, but in most situations a parser will not be able to properly interpret these values. The interpretation and meaning of additional elements is beyond the scope of this specification, and additional elements MAY be ignored by parsers.

Show children

Show children

Coordinate
number
bbox
list<Coordinate>
optional

A GeoJSON object MAY have a member named "bbox" to include information on the coordinate range for its Geometries, Features, or FeatureCollections. The value of the bbox member MUST be an array of length 2*n where n is the number of dimensions represented in the contained geometries, with all axes of the most southwesterly point followed by all axes of the more northeasterly point. The axes order of a bbox follows the axes order of geometries.

Show children

Show children

Coordinate
number
eq
object
optional

Returns objects where the specified field is equal to a value.

Show children

Show children

field
string

The name of the property in the API. To find the API name for your property, use the Get object type endpoint or check the Ontology Manager.

value
any

Represents the value of a property in the following format.

TypeJSON encodingExample
Arrayarray["alpha", "bravo", "charlie"]
AttachmentJSON encoded AttachmentProperty object{"rid":"ri.blobster.main.attachment.2f944bae-5851-4204-8615-920c969a9f2e"}
Booleanbooleantrue
Bytenumber31
DateISO 8601 extended local date string"2021-05-01"
Decimalstring"2.718281828"
Doublenumber3.14159265
Floatnumber3.14159265
GeoPointgeojson{"type":"Point","coordinates":[102.0,0.5]}
GeoShapegeojson{"type":"LineString","coordinates":[[102.0,0.0],[103.0,1.0],[104.0,0.0],[105.0,1.0]]}
Integernumber238940
Longstring"58319870951433"
Shortnumber8739
Stringstring"Call me Ishmael"
TimestampISO 8601 extended offset date-time string in UTC zone"2021-01-04T05:00:00Z"

Note that for backwards compatibility, the Boolean, Byte, Double, Float, Integer, and Short types can also be encoded as JSON strings.

containsAllTerms
object
optional

Returns objects where the specified field contains all of the whitespace separated words in any order in the provided value. This query supports fuzzy matching.

Show children

Show children

field
string

The name of the property in the API. To find the API name for your property, use the Get object type endpoint or check the Ontology Manager.

value
string
fuzzy
boolean
optional

Setting fuzzy to true allows approximate matching in search queries that support it.

gt
object
optional

Returns objects where the specified field is greater than a value.

Show children

Show children

field
string

The name of the property in the API. To find the API name for your property, use the Get object type endpoint or check the Ontology Manager.

value
any

Represents the value of a property in the following format.

TypeJSON encodingExample
Arrayarray["alpha", "bravo", "charlie"]
AttachmentJSON encoded AttachmentProperty object{"rid":"ri.blobster.main.attachment.2f944bae-5851-4204-8615-920c969a9f2e"}
Booleanbooleantrue
Bytenumber31
DateISO 8601 extended local date string"2021-05-01"
Decimalstring"2.718281828"
Doublenumber3.14159265
Floatnumber3.14159265
GeoPointgeojson{"type":"Point","coordinates":[102.0,0.5]}
GeoShapegeojson{"type":"LineString","coordinates":[[102.0,0.0],[103.0,1.0],[104.0,0.0],[105.0,1.0]]}
Integernumber238940
Longstring"58319870951433"
Shortnumber8739
Stringstring"Call me Ishmael"
TimestampISO 8601 extended offset date-time string in UTC zone"2021-01-04T05:00:00Z"

Note that for backwards compatibility, the Boolean, Byte, Double, Float, Integer, and Short types can also be encoded as JSON strings.

withinDistanceOf
object
optional

Returns objects where the specified field contains a point within the distance provided of the center point.

Show children

Show children

field
string

The name of the property in the API. To find the API name for your property, use the Get object type endpoint or check the Ontology Manager.

value
object

The coordinate point to use as the center of the distance query.

Show children

Show children

center
union
Show children

Show children

Point
object
optional
Show children

Show children

coordinates
list<Coordinate>
optional

GeoJSon fundamental geometry construct.

A position is an array of numbers. There MUST be two or more elements. The first two elements are longitude and latitude, precisely in that order and using decimal numbers. Altitude or elevation MAY be included as an optional third element.

Implementations SHOULD NOT extend positions beyond three elements because the semantics of extra elements are unspecified and ambiguous. Historically, some implementations have used a fourth element to carry a linear referencing measure (sometimes denoted as "M") or a numerical timestamp, but in most situations a parser will not be able to properly interpret these values. The interpretation and meaning of additional elements is beyond the scope of this specification, and additional elements MAY be ignored by parsers.

Show children

Show children

Coordinate
number
bbox
list<Coordinate>
optional

A GeoJSON object MAY have a member named "bbox" to include information on the coordinate range for its Geometries, Features, or FeatureCollections. The value of the bbox member MUST be an array of length 2*n where n is the number of dimensions represented in the contained geometries, with all axes of the most southwesterly point followed by all axes of the more northeasterly point. The axes order of a bbox follows the axes order of geometries.

Show children

Show children

Coordinate
number
distance
object

A measurement of distance.

Show children

Show children

value
number
unit
string (enum)

Enum values: MILLIMETERS, CENTIMETERS, METERS, KILOMETERS, INCHES, FEET, YARDS, MILES, NAUTICAL_MILES

withinBoundingBox
object
optional

Returns objects where the specified field contains a point within the bounding box provided.

Show children

Show children

field
string

The name of the property in the API. To find the API name for your property, use the Get object type endpoint or check the Ontology Manager.

value
object

The top left and bottom right coordinate points that make up the bounding box.

Show children

Show children

topLeft
union
Show children

Show children

Point
object
optional
Show children

Show children

coordinates
list<Coordinate>
optional

GeoJSon fundamental geometry construct.

A position is an array of numbers. There MUST be two or more elements. The first two elements are longitude and latitude, precisely in that order and using decimal numbers. Altitude or elevation MAY be included as an optional third element.

Implementations SHOULD NOT extend positions beyond three elements because the semantics of extra elements are unspecified and ambiguous. Historically, some implementations have used a fourth element to carry a linear referencing measure (sometimes denoted as "M") or a numerical timestamp, but in most situations a parser will not be able to properly interpret these values. The interpretation and meaning of additional elements is beyond the scope of this specification, and additional elements MAY be ignored by parsers.

Show children

Show children

Coordinate
number
bbox
list<Coordinate>
optional

A GeoJSON object MAY have a member named "bbox" to include information on the coordinate range for its Geometries, Features, or FeatureCollections. The value of the bbox member MUST be an array of length 2*n where n is the number of dimensions represented in the contained geometries, with all axes of the most southwesterly point followed by all axes of the more northeasterly point. The axes order of a bbox follows the axes order of geometries.

Show children

Show children

Coordinate
number
bottomRight
union
Show children

Show children

Point
object
optional
Show children

Show children

coordinates
list<Coordinate>
optional

GeoJSon fundamental geometry construct.

A position is an array of numbers. There MUST be two or more elements. The first two elements are longitude and latitude, precisely in that order and using decimal numbers. Altitude or elevation MAY be included as an optional third element.

Implementations SHOULD NOT extend positions beyond three elements because the semantics of extra elements are unspecified and ambiguous. Historically, some implementations have used a fourth element to carry a linear referencing measure (sometimes denoted as "M") or a numerical timestamp, but in most situations a parser will not be able to properly interpret these values. The interpretation and meaning of additional elements is beyond the scope of this specification, and additional elements MAY be ignored by parsers.

Show children

Show children

Coordinate
number
bbox
list<Coordinate>
optional

A GeoJSON object MAY have a member named "bbox" to include information on the coordinate range for its Geometries, Features, or FeatureCollections. The value of the bbox member MUST be an array of length 2*n where n is the number of dimensions represented in the contained geometries, with all axes of the most southwesterly point followed by all axes of the more northeasterly point. The axes order of a bbox follows the axes order of geometries.

Show children

Show children

Coordinate
number
contains
object
optional

Returns objects where the specified array contains a value.

Show children

Show children

field
string

The name of the property in the API. To find the API name for your property, use the Get object type endpoint or check the Ontology Manager.

value
any

Represents the value of a property in the following format.

TypeJSON encodingExample
Arrayarray["alpha", "bravo", "charlie"]
AttachmentJSON encoded AttachmentProperty object{"rid":"ri.blobster.main.attachment.2f944bae-5851-4204-8615-920c969a9f2e"}
Booleanbooleantrue
Bytenumber31
DateISO 8601 extended local date string"2021-05-01"
Decimalstring"2.718281828"
Doublenumber3.14159265
Floatnumber3.14159265
GeoPointgeojson{"type":"Point","coordinates":[102.0,0.5]}
GeoShapegeojson{"type":"LineString","coordinates":[[102.0,0.0],[103.0,1.0],[104.0,0.0],[105.0,1.0]]}
Integernumber238940
Longstring"58319870951433"
Shortnumber8739
Stringstring"Call me Ishmael"
TimestampISO 8601 extended offset date-time string in UTC zone"2021-01-04T05:00:00Z"

Note that for backwards compatibility, the Boolean, Byte, Double, Float, Integer, and Short types can also be encoded as JSON strings.

not
object
optional

Returns objects where the query is not satisfied.

Show children

Show children

value
union
intersectsBoundingBox
object
optional

Returns objects where the specified field intersects the bounding box provided.

Show children

Show children

field
string

The name of the property in the API. To find the API name for your property, use the Get object type endpoint or check the Ontology Manager.

value
object

The top left and bottom right coordinate points that make up the bounding box.

Show children

Show children

topLeft
union
Show children

Show children

Point
object
optional
Show children

Show children

coordinates
list<Coordinate>
optional

GeoJSon fundamental geometry construct.

A position is an array of numbers. There MUST be two or more elements. The first two elements are longitude and latitude, precisely in that order and using decimal numbers. Altitude or elevation MAY be included as an optional third element.

Implementations SHOULD NOT extend positions beyond three elements because the semantics of extra elements are unspecified and ambiguous. Historically, some implementations have used a fourth element to carry a linear referencing measure (sometimes denoted as "M") or a numerical timestamp, but in most situations a parser will not be able to properly interpret these values. The interpretation and meaning of additional elements is beyond the scope of this specification, and additional elements MAY be ignored by parsers.

Show children

Show children

Coordinate
number
bbox
list<Coordinate>
optional

A GeoJSON object MAY have a member named "bbox" to include information on the coordinate range for its Geometries, Features, or FeatureCollections. The value of the bbox member MUST be an array of length 2*n where n is the number of dimensions represented in the contained geometries, with all axes of the most southwesterly point followed by all axes of the more northeasterly point. The axes order of a bbox follows the axes order of geometries.

Show children

Show children

Coordinate
number
bottomRight
union
Show children

Show children

Point
object
optional
Show children

Show children

coordinates
list<Coordinate>
optional

GeoJSon fundamental geometry construct.

A position is an array of numbers. There MUST be two or more elements. The first two elements are longitude and latitude, precisely in that order and using decimal numbers. Altitude or elevation MAY be included as an optional third element.

Implementations SHOULD NOT extend positions beyond three elements because the semantics of extra elements are unspecified and ambiguous. Historically, some implementations have used a fourth element to carry a linear referencing measure (sometimes denoted as "M") or a numerical timestamp, but in most situations a parser will not be able to properly interpret these values. The interpretation and meaning of additional elements is beyond the scope of this specification, and additional elements MAY be ignored by parsers.

Show children

Show children

Coordinate
number
bbox
list<Coordinate>
optional

A GeoJSON object MAY have a member named "bbox" to include information on the coordinate range for its Geometries, Features, or FeatureCollections. The value of the bbox member MUST be an array of length 2*n where n is the number of dimensions represented in the contained geometries, with all axes of the most southwesterly point followed by all axes of the more northeasterly point. The axes order of a bbox follows the axes order of geometries.

Show children

Show children

Coordinate
number
and
object
optional

Returns objects where every query is satisfied.

Show children

Show children

value
list<SearchJsonQueryV2>
optional
Show children

Show children

SearchJsonQueryV2
union
isNull
object
optional

Returns objects based on the existence of the specified field.

Show children

Show children

field
string

The name of the property in the API. To find the API name for your property, use the Get object type endpoint or check the Ontology Manager.

value
boolean
containsAllTermsInOrderPrefixLastTerm
object
optional

Returns objects where the specified field contains all of the terms in the order provided, but they do have to be adjacent to each other. The last term can be a partial prefix match.

Show children

Show children

field
string

The name of the property in the API. To find the API name for your property, use the Get object type endpoint or check the Ontology Manager.

value
string
containsAnyTerm
object
optional

Returns objects where the specified field contains any of the whitespace separated words in any order in the provided value. This query supports fuzzy matching.

Show children

Show children

field
string

The name of the property in the API. To find the API name for your property, use the Get object type endpoint or check the Ontology Manager.

value
string
fuzzy
boolean
optional

Setting fuzzy to true allows approximate matching in search queries that support it.

gte
object
optional

Returns objects where the specified field is greater than or equal to a value.

Show children

Show children

field
string

The name of the property in the API. To find the API name for your property, use the Get object type endpoint or check the Ontology Manager.

value
any

Represents the value of a property in the following format.

TypeJSON encodingExample
Arrayarray["alpha", "bravo", "charlie"]
AttachmentJSON encoded AttachmentProperty object{"rid":"ri.blobster.main.attachment.2f944bae-5851-4204-8615-920c969a9f2e"}
Booleanbooleantrue
Bytenumber31
DateISO 8601 extended local date string"2021-05-01"
Decimalstring"2.718281828"
Doublenumber3.14159265
Floatnumber3.14159265
GeoPointgeojson{"type":"Point","coordinates":[102.0,0.5]}
GeoShapegeojson{"type":"LineString","coordinates":[[102.0,0.0],[103.0,1.0],[104.0,0.0],[105.0,1.0]]}
Integernumber238940
Longstring"58319870951433"
Shortnumber8739
Stringstring"Call me Ishmael"
TimestampISO 8601 extended offset date-time string in UTC zone"2021-01-04T05:00:00Z"

Note that for backwards compatibility, the Boolean, Byte, Double, Float, Integer, and Short types can also be encoded as JSON strings.

containsAllTermsInOrder
object
optional

Returns objects where the specified field contains all of the terms in the order provided, but they do have to be adjacent to each other.

Show children

Show children

field
string

The name of the property in the API. To find the API name for your property, use the Get object type endpoint or check the Ontology Manager.

value
string
withinPolygon
object
optional

Returns objects where the specified field contains a point within the polygon provided.

Show children

Show children

field
string

The name of the property in the API. To find the API name for your property, use the Get object type endpoint or check the Ontology Manager.

value
union
Show children

Show children

Polygon
object
optional
Show children

Show children

coordinates
list<LinearRing>
optional
Show children

Show children

LinearRing
list<Position>

A linear ring is a closed LineString with four or more positions.

The first and last positions are equivalent, and they MUST contain identical values; their representation SHOULD also be identical.

A linear ring is the boundary of a surface or the boundary of a hole in a surface.

A linear ring MUST follow the right-hand rule with respect to the area it bounds, i.e., exterior rings are counterclockwise, and holes are clockwise.

Show children

Show children

Position
list<Coordinate>

GeoJSon fundamental geometry construct.

A position is an array of numbers. There MUST be two or more elements. The first two elements are longitude and latitude, precisely in that order and using decimal numbers. Altitude or elevation MAY be included as an optional third element.

Implementations SHOULD NOT extend positions beyond three elements because the semantics of extra elements are unspecified and ambiguous. Historically, some implementations have used a fourth element to carry a linear referencing measure (sometimes denoted as "M") or a numerical timestamp, but in most situations a parser will not be able to properly interpret these values. The interpretation and meaning of additional elements is beyond the scope of this specification, and additional elements MAY be ignored by parsers.

Show children

Show children

Coordinate
number
bbox
list<Coordinate>
optional

A GeoJSON object MAY have a member named "bbox" to include information on the coordinate range for its Geometries, Features, or FeatureCollections. The value of the bbox member MUST be an array of length 2*n where n is the number of dimensions represented in the contained geometries, with all axes of the most southwesterly point followed by all axes of the more northeasterly point. The axes order of a bbox follows the axes order of geometries.

Show children

Show children

Coordinate
number
intersectsPolygon
object
optional

Returns objects where the specified field intersects the polygon provided.

Show children

Show children

field
string

The name of the property in the API. To find the API name for your property, use the Get object type endpoint or check the Ontology Manager.

value
union
Show children

Show children

Polygon
object
optional
Show children

Show children

coordinates
list<LinearRing>
optional
Show children

Show children

LinearRing
list<Position>

A linear ring is a closed LineString with four or more positions.

The first and last positions are equivalent, and they MUST contain identical values; their representation SHOULD also be identical.

A linear ring is the boundary of a surface or the boundary of a hole in a surface.

A linear ring MUST follow the right-hand rule with respect to the area it bounds, i.e., exterior rings are counterclockwise, and holes are clockwise.

Show children

Show children

Position
list<Coordinate>

GeoJSon fundamental geometry construct.

A position is an array of numbers. There MUST be two or more elements. The first two elements are longitude and latitude, precisely in that order and using decimal numbers. Altitude or elevation MAY be included as an optional third element.

Implementations SHOULD NOT extend positions beyond three elements because the semantics of extra elements are unspecified and ambiguous. Historically, some implementations have used a fourth element to carry a linear referencing measure (sometimes denoted as "M") or a numerical timestamp, but in most situations a parser will not be able to properly interpret these values. The interpretation and meaning of additional elements is beyond the scope of this specification, and additional elements MAY be ignored by parsers.

Show children

Show children

Coordinate
number
bbox
list<Coordinate>
optional

A GeoJSON object MAY have a member named "bbox" to include information on the coordinate range for its Geometries, Features, or FeatureCollections. The value of the bbox member MUST be an array of length 2*n where n is the number of dimensions represented in the contained geometries, with all axes of the most southwesterly point followed by all axes of the more northeasterly point. The axes order of a bbox follows the axes order of geometries.

Show children

Show children

Coordinate
number
lte
object
optional

Returns objects where the specified field is less than or equal to a value.

Show children

Show children

field
string

The name of the property in the API. To find the API name for your property, use the Get object type endpoint or check the Ontology Manager.

value
any

Represents the value of a property in the following format.

TypeJSON encodingExample
Arrayarray["alpha", "bravo", "charlie"]
AttachmentJSON encoded AttachmentProperty object{"rid":"ri.blobster.main.attachment.2f944bae-5851-4204-8615-920c969a9f2e"}
Booleanbooleantrue
Bytenumber31
DateISO 8601 extended local date string"2021-05-01"
Decimalstring"2.718281828"
Doublenumber3.14159265
Floatnumber3.14159265
GeoPointgeojson{"type":"Point","coordinates":[102.0,0.5]}
GeoShapegeojson{"type":"LineString","coordinates":[[102.0,0.0],[103.0,1.0],[104.0,0.0],[105.0,1.0]]}
Integernumber238940
Longstring"58319870951433"
Shortnumber8739
Stringstring"Call me Ishmael"
TimestampISO 8601 extended offset date-time string in UTC zone"2021-01-04T05:00:00Z"

Note that for backwards compatibility, the Boolean, Byte, Double, Float, Integer, and Short types can also be encoded as JSON strings.

startsWith
object
optional

Returns objects where the specified field starts with the provided value.

Show children

Show children

field
string

The name of the property in the API. To find the API name for your property, use the Get object type endpoint or check the Ontology Manager.

value
string
isNull
object
optional

Returns objects based on the existence of the specified field.

Show children

Show children

field
string

The name of the property in the API. To find the API name for your property, use the Get object type endpoint or check the Ontology Manager.

value
boolean
containsAllTermsInOrderPrefixLastTerm
object
optional

Returns objects where the specified field contains all of the terms in the order provided, but they do have to be adjacent to each other. The last term can be a partial prefix match.

Show children

Show children

field
string

The name of the property in the API. To find the API name for your property, use the Get object type endpoint or check the Ontology Manager.

value
string
containsAnyTerm
object
optional

Returns objects where the specified field contains any of the whitespace separated words in any order in the provided value. This query supports fuzzy matching.

Show children

Show children

field
string

The name of the property in the API. To find the API name for your property, use the Get object type endpoint or check the Ontology Manager.

value
string
fuzzy
boolean
optional

Setting fuzzy to true allows approximate matching in search queries that support it.

gte
object
optional

Returns objects where the specified field is greater than or equal to a value.

Show children

Show children

field
string

The name of the property in the API. To find the API name for your property, use the Get object type endpoint or check the Ontology Manager.

value
any

Represents the value of a property in the following format.

TypeJSON encodingExample
Arrayarray["alpha", "bravo", "charlie"]
AttachmentJSON encoded AttachmentProperty object{"rid":"ri.blobster.main.attachment.2f944bae-5851-4204-8615-920c969a9f2e"}
Booleanbooleantrue
Bytenumber31
DateISO 8601 extended local date string"2021-05-01"
Decimalstring"2.718281828"
Doublenumber3.14159265
Floatnumber3.14159265
GeoPointgeojson{"type":"Point","coordinates":[102.0,0.5]}
GeoShapegeojson{"type":"LineString","coordinates":[[102.0,0.0],[103.0,1.0],[104.0,0.0],[105.0,1.0]]}
Integernumber238940
Longstring"58319870951433"
Shortnumber8739
Stringstring"Call me Ishmael"
TimestampISO 8601 extended offset date-time string in UTC zone"2021-01-04T05:00:00Z"

Note that for backwards compatibility, the Boolean, Byte, Double, Float, Integer, and Short types can also be encoded as JSON strings.

containsAllTermsInOrder
object
optional

Returns objects where the specified field contains all of the terms in the order provided, but they do have to be adjacent to each other.

Show children

Show children

field
string

The name of the property in the API. To find the API name for your property, use the Get object type endpoint or check the Ontology Manager.

value
string
withinPolygon
object
optional

Returns objects where the specified field contains a point within the polygon provided.

Show children

Show children

field
string

The name of the property in the API. To find the API name for your property, use the Get object type endpoint or check the Ontology Manager.

value
union
Show children

Show children

Polygon
object
optional
Show children

Show children

coordinates
list<LinearRing>
optional
Show children

Show children

LinearRing
list<Position>

A linear ring is a closed LineString with four or more positions.

The first and last positions are equivalent, and they MUST contain identical values; their representation SHOULD also be identical.

A linear ring is the boundary of a surface or the boundary of a hole in a surface.

A linear ring MUST follow the right-hand rule with respect to the area it bounds, i.e., exterior rings are counterclockwise, and holes are clockwise.

Show children

Show children

Position
list<Coordinate>

GeoJSon fundamental geometry construct.

A position is an array of numbers. There MUST be two or more elements. The first two elements are longitude and latitude, precisely in that order and using decimal numbers. Altitude or elevation MAY be included as an optional third element.

Implementations SHOULD NOT extend positions beyond three elements because the semantics of extra elements are unspecified and ambiguous. Historically, some implementations have used a fourth element to carry a linear referencing measure (sometimes denoted as "M") or a numerical timestamp, but in most situations a parser will not be able to properly interpret these values. The interpretation and meaning of additional elements is beyond the scope of this specification, and additional elements MAY be ignored by parsers.

Show children

Show children

Coordinate
number
bbox
list<Coordinate>
optional

A GeoJSON object MAY have a member named "bbox" to include information on the coordinate range for its Geometries, Features, or FeatureCollections. The value of the bbox member MUST be an array of length 2*n where n is the number of dimensions represented in the contained geometries, with all axes of the most southwesterly point followed by all axes of the more northeasterly point. The axes order of a bbox follows the axes order of geometries.

Show children

Show children

Coordinate
number
intersectsPolygon
object
optional

Returns objects where the specified field intersects the polygon provided.

Show children

Show children

field
string

The name of the property in the API. To find the API name for your property, use the Get object type endpoint or check the Ontology Manager.

value
union
Show children

Show children

Polygon
object
optional
Show children

Show children

coordinates
list<LinearRing>
optional
Show children

Show children

LinearRing
list<Position>

A linear ring is a closed LineString with four or more positions.

The first and last positions are equivalent, and they MUST contain identical values; their representation SHOULD also be identical.

A linear ring is the boundary of a surface or the boundary of a hole in a surface.

A linear ring MUST follow the right-hand rule with respect to the area it bounds, i.e., exterior rings are counterclockwise, and holes are clockwise.

Show children

Show children

Position
list<Coordinate>

GeoJSon fundamental geometry construct.

A position is an array of numbers. There MUST be two or more elements. The first two elements are longitude and latitude, precisely in that order and using decimal numbers. Altitude or elevation MAY be included as an optional third element.

Implementations SHOULD NOT extend positions beyond three elements because the semantics of extra elements are unspecified and ambiguous. Historically, some implementations have used a fourth element to carry a linear referencing measure (sometimes denoted as "M") or a numerical timestamp, but in most situations a parser will not be able to properly interpret these values. The interpretation and meaning of additional elements is beyond the scope of this specification, and additional elements MAY be ignored by parsers.

Show children

Show children

Coordinate
number
bbox
list<Coordinate>
optional

A GeoJSON object MAY have a member named "bbox" to include information on the coordinate range for its Geometries, Features, or FeatureCollections. The value of the bbox member MUST be an array of length 2*n where n is the number of dimensions represented in the contained geometries, with all axes of the most southwesterly point followed by all axes of the more northeasterly point. The axes order of a bbox follows the axes order of geometries.

Show children

Show children

Coordinate
number
lte
object
optional

Returns objects where the specified field is less than or equal to a value.

Show children

Show children

field
string

The name of the property in the API. To find the API name for your property, use the Get object type endpoint or check the Ontology Manager.

value
any

Represents the value of a property in the following format.

TypeJSON encodingExample
Arrayarray["alpha", "bravo", "charlie"]
AttachmentJSON encoded AttachmentProperty object{"rid":"ri.blobster.main.attachment.2f944bae-5851-4204-8615-920c969a9f2e"}
Booleanbooleantrue
Bytenumber31
DateISO 8601 extended local date string"2021-05-01"
Decimalstring"2.718281828"
Doublenumber3.14159265
Floatnumber3.14159265
GeoPointgeojson{"type":"Point","coordinates":[102.0,0.5]}
GeoShapegeojson{"type":"LineString","coordinates":[[102.0,0.0],[103.0,1.0],[104.0,0.0],[105.0,1.0]]}
Integernumber238940
Longstring"58319870951433"
Shortnumber8739
Stringstring"Call me Ishmael"
TimestampISO 8601 extended offset date-time string in UTC zone"2021-01-04T05:00:00Z"

Note that for backwards compatibility, the Boolean, Byte, Double, Float, Integer, and Short types can also be encoded as JSON strings.

startsWith
object
optional

Returns objects where the specified field starts with the provided value.

Show children

Show children

field
string

The name of the property in the API. To find the API name for your property, use the Get object type endpoint or check the Ontology Manager.

value
string
searchAround
object
optional
Show children

Show children

objectSet
union

Represents the definition of an ObjectSet in the Ontology.

link
string

The name of the link type in the API. To find the API name for your Link Type, check the Ontology Manager application.

static
object
optional
Show children

Show children

objects
list<ObjectRid>
optional
Show children

Show children

ObjectRid
string

The unique resource identifier of an object, useful for interacting with other Foundry APIs.

intersect
object
optional
Show children

Show children

objectSets
list<ObjectSet>
optional
Show children

Show children

ObjectSet
union

Represents the definition of an ObjectSet in the Ontology.

subtract
object
optional
Show children

Show children

objectSets
list<ObjectSet>
optional
Show children

Show children

ObjectSet
union

Represents the definition of an ObjectSet in the Ontology.

union
object
optional
Show children

Show children

objectSets
list<ObjectSet>
optional
Show children

Show children

ObjectSet
union

Represents the definition of an ObjectSet in the Ontology.

base
object
optional
Show children

Show children

objectType
string
link
string

The name of the link type in the API. To find the API name for your Link Type, check the Ontology Manager application.

static
object
optional
Show children

Show children

objects
list<ObjectRid>
optional
Show children

Show children

ObjectRid
string

The unique resource identifier of an object, useful for interacting with other Foundry APIs.

intersect
object
optional
Show children

Show children

objectSets
list<ObjectSet>
optional
Show children

Show children

ObjectSet
union

Represents the definition of an ObjectSet in the Ontology.

Show children

Show children

reference
object
optional
Show children

Show children

reference
string
filter
object
optional
Show children

Show children

objectSet
union

Represents the definition of an ObjectSet in the Ontology.

where
union
Show children

Show children

or
object
optional

Returns objects where at least 1 query is satisfied.

Show children

Show children

value
list<SearchJsonQueryV2>
optional
Show children

Show children

SearchJsonQueryV2
union
Show children

Show children

or
object
optional

Returns objects where at least 1 query is satisfied.

Show children

Show children

value
list<SearchJsonQueryV2>
optional
Show children

Show children

SearchJsonQueryV2
union
in
object
optional

Returns objects where the specified field equals any of the provided values.

Show children

Show children

field
string

The name of the property in the API. To find the API name for your property, use the Get object type endpoint or check the Ontology Manager.

value
list<PropertyValue>
optional
Show children

Show children

PropertyValue
any

Represents the value of a property in the following format.

TypeJSON encodingExample
Arrayarray["alpha", "bravo", "charlie"]
AttachmentJSON encoded AttachmentProperty object{"rid":"ri.blobster.main.attachment.2f944bae-5851-4204-8615-920c969a9f2e"}
Booleanbooleantrue
Bytenumber31
DateISO 8601 extended local date string"2021-05-01"
Decimalstring"2.718281828"
Doublenumber3.14159265
Floatnumber3.14159265
GeoPointgeojson{"type":"Point","coordinates":[102.0,0.5]}
GeoShapegeojson{"type":"LineString","coordinates":[[102.0,0.0],[103.0,1.0],[104.0,0.0],[105.0,1.0]]}
Integernumber238940
Longstring"58319870951433"
Shortnumber8739
Stringstring"Call me Ishmael"
TimestampISO 8601 extended offset date-time string in UTC zone"2021-01-04T05:00:00Z"

Note that for backwards compatibility, the Boolean, Byte, Double, Float, Integer, and Short types can also be encoded as JSON strings.

doesNotIntersectPolygon
object
optional

Returns objects where the specified field does not intersect the polygon provided.

Show children

Show children

field
string

The name of the property in the API. To find the API name for your property, use the Get object type endpoint or check the Ontology Manager.

value
union
Show children

Show children

Polygon
object
optional
Show children

Show children

coordinates
list<LinearRing>
optional
Show children

Show children

LinearRing
list<Position>

A linear ring is a closed LineString with four or more positions.

The first and last positions are equivalent, and they MUST contain identical values; their representation SHOULD also be identical.

A linear ring is the boundary of a surface or the boundary of a hole in a surface.

A linear ring MUST follow the right-hand rule with respect to the area it bounds, i.e., exterior rings are counterclockwise, and holes are clockwise.

Show children

Show children

Position
list<Coordinate>

GeoJSon fundamental geometry construct.

A position is an array of numbers. There MUST be two or more elements. The first two elements are longitude and latitude, precisely in that order and using decimal numbers. Altitude or elevation MAY be included as an optional third element.

Implementations SHOULD NOT extend positions beyond three elements because the semantics of extra elements are unspecified and ambiguous. Historically, some implementations have used a fourth element to carry a linear referencing measure (sometimes denoted as "M") or a numerical timestamp, but in most situations a parser will not be able to properly interpret these values. The interpretation and meaning of additional elements is beyond the scope of this specification, and additional elements MAY be ignored by parsers.

Show children

Show children

Coordinate
number
bbox
list<Coordinate>
optional

A GeoJSON object MAY have a member named "bbox" to include information on the coordinate range for its Geometries, Features, or FeatureCollections. The value of the bbox member MUST be an array of length 2*n where n is the number of dimensions represented in the contained geometries, with all axes of the most southwesterly point followed by all axes of the more northeasterly point. The axes order of a bbox follows the axes order of geometries.

Show children

Show children

Coordinate
number
lt
object
optional

Returns objects where the specified field is less than a value.

Show children

Show children

field
string

The name of the property in the API. To find the API name for your property, use the Get object type endpoint or check the Ontology Manager.

value
any

Represents the value of a property in the following format.

TypeJSON encodingExample
Arrayarray["alpha", "bravo", "charlie"]
AttachmentJSON encoded AttachmentProperty object{"rid":"ri.blobster.main.attachment.2f944bae-5851-4204-8615-920c969a9f2e"}
Booleanbooleantrue
Bytenumber31
DateISO 8601 extended local date string"2021-05-01"
Decimalstring"2.718281828"
Doublenumber3.14159265
Floatnumber3.14159265
GeoPointgeojson{"type":"Point","coordinates":[102.0,0.5]}
GeoShapegeojson{"type":"LineString","coordinates":[[102.0,0.0],[103.0,1.0],[104.0,0.0],[105.0,1.0]]}
Integernumber238940
Longstring"58319870951433"
Shortnumber8739
Stringstring"Call me Ishmael"
TimestampISO 8601 extended offset date-time string in UTC zone"2021-01-04T05:00:00Z"

Note that for backwards compatibility, the Boolean, Byte, Double, Float, Integer, and Short types can also be encoded as JSON strings.

doesNotIntersectBoundingBox
object
optional

Returns objects where the specified field does not intersect the bounding box provided.

Show children

Show children

field
string

The name of the property in the API. To find the API name for your property, use the Get object type endpoint or check the Ontology Manager.

value
object

The top left and bottom right coordinate points that make up the bounding box.

Show children

Show children

topLeft
union
Show children

Show children

Point
object
optional
Show children

Show children

coordinates
list<Coordinate>
optional

GeoJSon fundamental geometry construct.

A position is an array of numbers. There MUST be two or more elements. The first two elements are longitude and latitude, precisely in that order and using decimal numbers. Altitude or elevation MAY be included as an optional third element.

Implementations SHOULD NOT extend positions beyond three elements because the semantics of extra elements are unspecified and ambiguous. Historically, some implementations have used a fourth element to carry a linear referencing measure (sometimes denoted as "M") or a numerical timestamp, but in most situations a parser will not be able to properly interpret these values. The interpretation and meaning of additional elements is beyond the scope of this specification, and additional elements MAY be ignored by parsers.

Show children

Show children

Coordinate
number
bbox
list<Coordinate>
optional

A GeoJSON object MAY have a member named "bbox" to include information on the coordinate range for its Geometries, Features, or FeatureCollections. The value of the bbox member MUST be an array of length 2*n where n is the number of dimensions represented in the contained geometries, with all axes of the most southwesterly point followed by all axes of the more northeasterly point. The axes order of a bbox follows the axes order of geometries.

Show children

Show children

Coordinate
number
bottomRight
union
Show children

Show children

Point
object
optional
Show children

Show children

coordinates
list<Coordinate>
optional

GeoJSon fundamental geometry construct.

A position is an array of numbers. There MUST be two or more elements. The first two elements are longitude and latitude, precisely in that order and using decimal numbers. Altitude or elevation MAY be included as an optional third element.

Implementations SHOULD NOT extend positions beyond three elements because the semantics of extra elements are unspecified and ambiguous. Historically, some implementations have used a fourth element to carry a linear referencing measure (sometimes denoted as "M") or a numerical timestamp, but in most situations a parser will not be able to properly interpret these values. The interpretation and meaning of additional elements is beyond the scope of this specification, and additional elements MAY be ignored by parsers.

Show children

Show children

Coordinate
number
bbox
list<Coordinate>
optional

A GeoJSON object MAY have a member named "bbox" to include information on the coordinate range for its Geometries, Features, or FeatureCollections. The value of the bbox member MUST be an array of length 2*n where n is the number of dimensions represented in the contained geometries, with all axes of the most southwesterly point followed by all axes of the more northeasterly point. The axes order of a bbox follows the axes order of geometries.

Show children

Show children

Coordinate
number
eq
object
optional

Returns objects where the specified field is equal to a value.

Show children

Show children

field
string

The name of the property in the API. To find the API name for your property, use the Get object type endpoint or check the Ontology Manager.

value
any

Represents the value of a property in the following format.

TypeJSON encodingExample
Arrayarray["alpha", "bravo", "charlie"]
AttachmentJSON encoded AttachmentProperty object{"rid":"ri.blobster.main.attachment.2f944bae-5851-4204-8615-920c969a9f2e"}
Booleanbooleantrue
Bytenumber31
DateISO 8601 extended local date string"2021-05-01"
Decimalstring"2.718281828"
Doublenumber3.14159265
Floatnumber3.14159265
GeoPointgeojson{"type":"Point","coordinates":[102.0,0.5]}
GeoShapegeojson{"type":"LineString","coordinates":[[102.0,0.0],[103.0,1.0],[104.0,0.0],[105.0,1.0]]}
Integernumber238940
Longstring"58319870951433"
Shortnumber8739
Stringstring"Call me Ishmael"
TimestampISO 8601 extended offset date-time string in UTC zone"2021-01-04T05:00:00Z"

Note that for backwards compatibility, the Boolean, Byte, Double, Float, Integer, and Short types can also be encoded as JSON strings.

containsAllTerms
object
optional

Returns objects where the specified field contains all of the whitespace separated words in any order in the provided value. This query supports fuzzy matching.

Show children

Show children

field
string

The name of the property in the API. To find the API name for your property, use the Get object type endpoint or check the Ontology Manager.

value
string
fuzzy
boolean
optional

Setting fuzzy to true allows approximate matching in search queries that support it.

gt
object
optional

Returns objects where the specified field is greater than a value.

Show children

Show children

field
string

The name of the property in the API. To find the API name for your property, use the Get object type endpoint or check the Ontology Manager.

value
any

Represents the value of a property in the following format.

TypeJSON encodingExample
Arrayarray["alpha", "bravo", "charlie"]
AttachmentJSON encoded AttachmentProperty object{"rid":"ri.blobster.main.attachment.2f944bae-5851-4204-8615-920c969a9f2e"}
Booleanbooleantrue
Bytenumber31
DateISO 8601 extended local date string"2021-05-01"
Decimalstring"2.718281828"
Doublenumber3.14159265
Floatnumber3.14159265
GeoPointgeojson{"type":"Point","coordinates":[102.0,0.5]}
GeoShapegeojson{"type":"LineString","coordinates":[[102.0,0.0],[103.0,1.0],[104.0,0.0],[105.0,1.0]]}
Integernumber238940
Longstring"58319870951433"
Shortnumber8739
Stringstring"Call me Ishmael"
TimestampISO 8601 extended offset date-time string in UTC zone"2021-01-04T05:00:00Z"

Note that for backwards compatibility, the Boolean, Byte, Double, Float, Integer, and Short types can also be encoded as JSON strings.

withinDistanceOf
object
optional

Returns objects where the specified field contains a point within the distance provided of the center point.

Show children

Show children

field
string

The name of the property in the API. To find the API name for your property, use the Get object type endpoint or check the Ontology Manager.

value
object

The coordinate point to use as the center of the distance query.

Show children

Show children

center
union
Show children

Show children

Point
object
optional
Show children

Show children

coordinates
list<Coordinate>
optional

GeoJSon fundamental geometry construct.

A position is an array of numbers. There MUST be two or more elements. The first two elements are longitude and latitude, precisely in that order and using decimal numbers. Altitude or elevation MAY be included as an optional third element.

Implementations SHOULD NOT extend positions beyond three elements because the semantics of extra elements are unspecified and ambiguous. Historically, some implementations have used a fourth element to carry a linear referencing measure (sometimes denoted as "M") or a numerical timestamp, but in most situations a parser will not be able to properly interpret these values. The interpretation and meaning of additional elements is beyond the scope of this specification, and additional elements MAY be ignored by parsers.

Show children

Show children

Coordinate
number
bbox
list<Coordinate>
optional

A GeoJSON object MAY have a member named "bbox" to include information on the coordinate range for its Geometries, Features, or FeatureCollections. The value of the bbox member MUST be an array of length 2*n where n is the number of dimensions represented in the contained geometries, with all axes of the most southwesterly point followed by all axes of the more northeasterly point. The axes order of a bbox follows the axes order of geometries.

Show children

Show children

Coordinate
number
distance
object

A measurement of distance.

Show children

Show children

value
number
unit
string (enum)

Enum values: MILLIMETERS, CENTIMETERS, METERS, KILOMETERS, INCHES, FEET, YARDS, MILES, NAUTICAL_MILES

withinBoundingBox
object
optional

Returns objects where the specified field contains a point within the bounding box provided.

Show children

Show children

field
string

The name of the property in the API. To find the API name for your property, use the Get object type endpoint or check the Ontology Manager.

value
object

The top left and bottom right coordinate points that make up the bounding box.

Show children

Show children

topLeft
union
Show children

Show children

Point
object
optional
Show children

Show children

coordinates
list<Coordinate>
optional

GeoJSon fundamental geometry construct.

A position is an array of numbers. There MUST be two or more elements. The first two elements are longitude and latitude, precisely in that order and using decimal numbers. Altitude or elevation MAY be included as an optional third element.

Implementations SHOULD NOT extend positions beyond three elements because the semantics of extra elements are unspecified and ambiguous. Historically, some implementations have used a fourth element to carry a linear referencing measure (sometimes denoted as "M") or a numerical timestamp, but in most situations a parser will not be able to properly interpret these values. The interpretation and meaning of additional elements is beyond the scope of this specification, and additional elements MAY be ignored by parsers.

Show children

Show children

Coordinate
number
bbox
list<Coordinate>
optional

A GeoJSON object MAY have a member named "bbox" to include information on the coordinate range for its Geometries, Features, or FeatureCollections. The value of the bbox member MUST be an array of length 2*n where n is the number of dimensions represented in the contained geometries, with all axes of the most southwesterly point followed by all axes of the more northeasterly point. The axes order of a bbox follows the axes order of geometries.

Show children

Show children

Coordinate
number
bottomRight
union
Show children

Show children

Point
object
optional
Show children

Show children

coordinates
list<Coordinate>
optional

GeoJSon fundamental geometry construct.

A position is an array of numbers. There MUST be two or more elements. The first two elements are longitude and latitude, precisely in that order and using decimal numbers. Altitude or elevation MAY be included as an optional third element.

Implementations SHOULD NOT extend positions beyond three elements because the semantics of extra elements are unspecified and ambiguous. Historically, some implementations have used a fourth element to carry a linear referencing measure (sometimes denoted as "M") or a numerical timestamp, but in most situations a parser will not be able to properly interpret these values. The interpretation and meaning of additional elements is beyond the scope of this specification, and additional elements MAY be ignored by parsers.

Show children

Show children

Coordinate
number
bbox
list<Coordinate>
optional

A GeoJSON object MAY have a member named "bbox" to include information on the coordinate range for its Geometries, Features, or FeatureCollections. The value of the bbox member MUST be an array of length 2*n where n is the number of dimensions represented in the contained geometries, with all axes of the most southwesterly point followed by all axes of the more northeasterly point. The axes order of a bbox follows the axes order of geometries.

Show children

Show children

Coordinate
number
contains
object
optional

Returns objects where the specified array contains a value.

Show children

Show children

field
string

The name of the property in the API. To find the API name for your property, use the Get object type endpoint or check the Ontology Manager.

value
any

Represents the value of a property in the following format.

TypeJSON encodingExample
Arrayarray["alpha", "bravo", "charlie"]
AttachmentJSON encoded AttachmentProperty object{"rid":"ri.blobster.main.attachment.2f944bae-5851-4204-8615-920c969a9f2e"}
Booleanbooleantrue
Bytenumber31
DateISO 8601 extended local date string"2021-05-01"
Decimalstring"2.718281828"
Doublenumber3.14159265
Floatnumber3.14159265
GeoPointgeojson{"type":"Point","coordinates":[102.0,0.5]}
GeoShapegeojson{"type":"LineString","coordinates":[[102.0,0.0],[103.0,1.0],[104.0,0.0],[105.0,1.0]]}
Integernumber238940
Longstring"58319870951433"
Shortnumber8739
Stringstring"Call me Ishmael"
TimestampISO 8601 extended offset date-time string in UTC zone"2021-01-04T05:00:00Z"

Note that for backwards compatibility, the Boolean, Byte, Double, Float, Integer, and Short types can also be encoded as JSON strings.

not
object
optional

Returns objects where the query is not satisfied.

Show children

Show children

value
union
intersectsBoundingBox
object
optional

Returns objects where the specified field intersects the bounding box provided.

Show children

Show children

field
string

The name of the property in the API. To find the API name for your property, use the Get object type endpoint or check the Ontology Manager.

value
object

The top left and bottom right coordinate points that make up the bounding box.

Show children

Show children

topLeft
union
Show children

Show children

Point
object
optional
Show children

Show children

coordinates
list<Coordinate>
optional

GeoJSon fundamental geometry construct.

A position is an array of numbers. There MUST be two or more elements. The first two elements are longitude and latitude, precisely in that order and using decimal numbers. Altitude or elevation MAY be included as an optional third element.

Implementations SHOULD NOT extend positions beyond three elements because the semantics of extra elements are unspecified and ambiguous. Historically, some implementations have used a fourth element to carry a linear referencing measure (sometimes denoted as "M") or a numerical timestamp, but in most situations a parser will not be able to properly interpret these values. The interpretation and meaning of additional elements is beyond the scope of this specification, and additional elements MAY be ignored by parsers.

Show children

Show children

Coordinate
number
bbox
list<Coordinate>
optional

A GeoJSON object MAY have a member named "bbox" to include information on the coordinate range for its Geometries, Features, or FeatureCollections. The value of the bbox member MUST be an array of length 2*n where n is the number of dimensions represented in the contained geometries, with all axes of the most southwesterly point followed by all axes of the more northeasterly point. The axes order of a bbox follows the axes order of geometries.

Show children

Show children

Coordinate
number
bottomRight
union
Show children

Show children

Point
object
optional
Show children

Show children

coordinates
list<Coordinate>
optional

GeoJSon fundamental geometry construct.

A position is an array of numbers. There MUST be two or more elements. The first two elements are longitude and latitude, precisely in that order and using decimal numbers. Altitude or elevation MAY be included as an optional third element.

Implementations SHOULD NOT extend positions beyond three elements because the semantics of extra elements are unspecified and ambiguous. Historically, some implementations have used a fourth element to carry a linear referencing measure (sometimes denoted as "M") or a numerical timestamp, but in most situations a parser will not be able to properly interpret these values. The interpretation and meaning of additional elements is beyond the scope of this specification, and additional elements MAY be ignored by parsers.

Show children

Show children

Coordinate
number
bbox
list<Coordinate>
optional

A GeoJSON object MAY have a member named "bbox" to include information on the coordinate range for its Geometries, Features, or FeatureCollections. The value of the bbox member MUST be an array of length 2*n where n is the number of dimensions represented in the contained geometries, with all axes of the most southwesterly point followed by all axes of the more northeasterly point. The axes order of a bbox follows the axes order of geometries.

Show children

Show children

Coordinate
number
and
object
optional

Returns objects where every query is satisfied.

Show children

Show children

value
list<SearchJsonQueryV2>
optional
Show children

Show children

SearchJsonQueryV2
union
isNull
object
optional

Returns objects based on the existence of the specified field.

Show children

Show children

field
string

The name of the property in the API. To find the API name for your property, use the Get object type endpoint or check the Ontology Manager.

value
boolean
containsAllTermsInOrderPrefixLastTerm
object
optional

Returns objects where the specified field contains all of the terms in the order provided, but they do have to be adjacent to each other. The last term can be a partial prefix match.

Show children

Show children

field
string

The name of the property in the API. To find the API name for your property, use the Get object type endpoint or check the Ontology Manager.

value
string
containsAnyTerm
object
optional

Returns objects where the specified field contains any of the whitespace separated words in any order in the provided value. This query supports fuzzy matching.

Show children

Show children

field
string

The name of the property in the API. To find the API name for your property, use the Get object type endpoint or check the Ontology Manager.

value
string
fuzzy
boolean
optional

Setting fuzzy to true allows approximate matching in search queries that support it.

gte
object
optional

Returns objects where the specified field is greater than or equal to a value.

Show children

Show children

field
string

The name of the property in the API. To find the API name for your property, use the Get object type endpoint or check the Ontology Manager.

value
any

Represents the value of a property in the following format.

TypeJSON encodingExample
Arrayarray["alpha", "bravo", "charlie"]
AttachmentJSON encoded AttachmentProperty object{"rid":"ri.blobster.main.attachment.2f944bae-5851-4204-8615-920c969a9f2e"}
Booleanbooleantrue
Bytenumber31
DateISO 8601 extended local date string"2021-05-01"
Decimalstring"2.718281828"
Doublenumber3.14159265
Floatnumber3.14159265
GeoPointgeojson{"type":"Point","coordinates":[102.0,0.5]}
GeoShapegeojson{"type":"LineString","coordinates":[[102.0,0.0],[103.0,1.0],[104.0,0.0],[105.0,1.0]]}
Integernumber238940
Longstring"58319870951433"
Shortnumber8739
Stringstring"Call me Ishmael"
TimestampISO 8601 extended offset date-time string in UTC zone"2021-01-04T05:00:00Z"

Note that for backwards compatibility, the Boolean, Byte, Double, Float, Integer, and Short types can also be encoded as JSON strings.

containsAllTermsInOrder
object
optional

Returns objects where the specified field contains all of the terms in the order provided, but they do have to be adjacent to each other.

Show children

Show children

field
string

The name of the property in the API. To find the API name for your property, use the Get object type endpoint or check the Ontology Manager.

value
string
withinPolygon
object
optional

Returns objects where the specified field contains a point within the polygon provided.

Show children

Show children

field
string

The name of the property in the API. To find the API name for your property, use the Get object type endpoint or check the Ontology Manager.

value
union
Show children

Show children

Polygon
object
optional
Show children

Show children

coordinates
list<LinearRing>
optional
Show children

Show children

LinearRing
list<Position>

A linear ring is a closed LineString with four or more positions.

The first and last positions are equivalent, and they MUST contain identical values; their representation SHOULD also be identical.

A linear ring is the boundary of a surface or the boundary of a hole in a surface.

A linear ring MUST follow the right-hand rule with respect to the area it bounds, i.e., exterior rings are counterclockwise, and holes are clockwise.

Show children

Show children

Position
list<Coordinate>

GeoJSon fundamental geometry construct.

A position is an array of numbers. There MUST be two or more elements. The first two elements are longitude and latitude, precisely in that order and using decimal numbers. Altitude or elevation MAY be included as an optional third element.

Implementations SHOULD NOT extend positions beyond three elements because the semantics of extra elements are unspecified and ambiguous. Historically, some implementations have used a fourth element to carry a linear referencing measure (sometimes denoted as "M") or a numerical timestamp, but in most situations a parser will not be able to properly interpret these values. The interpretation and meaning of additional elements is beyond the scope of this specification, and additional elements MAY be ignored by parsers.

Show children

Show children

Coordinate
number
bbox
list<Coordinate>
optional

A GeoJSON object MAY have a member named "bbox" to include information on the coordinate range for its Geometries, Features, or FeatureCollections. The value of the bbox member MUST be an array of length 2*n where n is the number of dimensions represented in the contained geometries, with all axes of the most southwesterly point followed by all axes of the more northeasterly point. The axes order of a bbox follows the axes order of geometries.

Show children

Show children

Coordinate
number
intersectsPolygon
object
optional

Returns objects where the specified field intersects the polygon provided.

Show children

Show children

field
string

The name of the property in the API. To find the API name for your property, use the Get object type endpoint or check the Ontology Manager.

value
union
Show children

Show children

Polygon
object
optional
Show children

Show children

coordinates
list<LinearRing>
optional
Show children

Show children

LinearRing
list<Position>

A linear ring is a closed LineString with four or more positions.

The first and last positions are equivalent, and they MUST contain identical values; their representation SHOULD also be identical.

A linear ring is the boundary of a surface or the boundary of a hole in a surface.

A linear ring MUST follow the right-hand rule with respect to the area it bounds, i.e., exterior rings are counterclockwise, and holes are clockwise.

Show children

Show children

Position
list<Coordinate>

GeoJSon fundamental geometry construct.

A position is an array of numbers. There MUST be two or more elements. The first two elements are longitude and latitude, precisely in that order and using decimal numbers. Altitude or elevation MAY be included as an optional third element.

Implementations SHOULD NOT extend positions beyond three elements because the semantics of extra elements are unspecified and ambiguous. Historically, some implementations have used a fourth element to carry a linear referencing measure (sometimes denoted as "M") or a numerical timestamp, but in most situations a parser will not be able to properly interpret these values. The interpretation and meaning of additional elements is beyond the scope of this specification, and additional elements MAY be ignored by parsers.

Show children

Show children

Coordinate
number
bbox
list<Coordinate>
optional

A GeoJSON object MAY have a member named "bbox" to include information on the coordinate range for its Geometries, Features, or FeatureCollections. The value of the bbox member MUST be an array of length 2*n where n is the number of dimensions represented in the contained geometries, with all axes of the most southwesterly point followed by all axes of the more northeasterly point. The axes order of a bbox follows the axes order of geometries.

Show children

Show children

Coordinate
number
lte
object
optional

Returns objects where the specified field is less than or equal to a value.

Show children

Show children

field
string

The name of the property in the API. To find the API name for your property, use the Get object type endpoint or check the Ontology Manager.

value
any

Represents the value of a property in the following format.

TypeJSON encodingExample
Arrayarray["alpha", "bravo", "charlie"]
AttachmentJSON encoded AttachmentProperty object{"rid":"ri.blobster.main.attachment.2f944bae-5851-4204-8615-920c969a9f2e"}
Booleanbooleantrue
Bytenumber31
DateISO 8601 extended local date string"2021-05-01"
Decimalstring"2.718281828"
Doublenumber3.14159265
Floatnumber3.14159265
GeoPointgeojson{"type":"Point","coordinates":[102.0,0.5]}
GeoShapegeojson{"type":"LineString","coordinates":[[102.0,0.0],[103.0,1.0],[104.0,0.0],[105.0,1.0]]}
Integernumber238940
Longstring"58319870951433"
Shortnumber8739
Stringstring"Call me Ishmael"
TimestampISO 8601 extended offset date-time string in UTC zone"2021-01-04T05:00:00Z"

Note that for backwards compatibility, the Boolean, Byte, Double, Float, Integer, and Short types can also be encoded as JSON strings.

startsWith
object
optional

Returns objects where the specified field starts with the provided value.

Show children

Show children

field
string

The name of the property in the API. To find the API name for your property, use the Get object type endpoint or check the Ontology Manager.

value
string
in
object
optional

Returns objects where the specified field equals any of the provided values.

Show children

Show children

field
string

The name of the property in the API. To find the API name for your property, use the Get object type endpoint or check the Ontology Manager.

value
list<PropertyValue>
optional
Show children

Show children

PropertyValue
any

Represents the value of a property in the following format.

TypeJSON encodingExample
Arrayarray["alpha", "bravo", "charlie"]
AttachmentJSON encoded AttachmentProperty object{"rid":"ri.blobster.main.attachment.2f944bae-5851-4204-8615-920c969a9f2e"}
Booleanbooleantrue
Bytenumber31
DateISO 8601 extended local date string"2021-05-01"
Decimalstring"2.718281828"
Doublenumber3.14159265
Floatnumber3.14159265
GeoPointgeojson{"type":"Point","coordinates":[102.0,0.5]}
GeoShapegeojson{"type":"LineString","coordinates":[[102.0,0.0],[103.0,1.0],[104.0,0.0],[105.0,1.0]]}
Integernumber238940
Longstring"58319870951433"
Shortnumber8739
Stringstring"Call me Ishmael"
TimestampISO 8601 extended offset date-time string in UTC zone"2021-01-04T05:00:00Z"

Note that for backwards compatibility, the Boolean, Byte, Double, Float, Integer, and Short types can also be encoded as JSON strings.

doesNotIntersectPolygon
object
optional

Returns objects where the specified field does not intersect the polygon provided.

Show children

Show children

field
string

The name of the property in the API. To find the API name for your property, use the Get object type endpoint or check the Ontology Manager.

value
union
Show children

Show children

Polygon
object
optional
Show children

Show children

coordinates
list<LinearRing>
optional
Show children

Show children

LinearRing
list<Position>

A linear ring is a closed LineString with four or more positions.

The first and last positions are equivalent, and they MUST contain identical values; their representation SHOULD also be identical.

A linear ring is the boundary of a surface or the boundary of a hole in a surface.

A linear ring MUST follow the right-hand rule with respect to the area it bounds, i.e., exterior rings are counterclockwise, and holes are clockwise.

Show children

Show children

Position
list<Coordinate>

GeoJSon fundamental geometry construct.

A position is an array of numbers. There MUST be two or more elements. The first two elements are longitude and latitude, precisely in that order and using decimal numbers. Altitude or elevation MAY be included as an optional third element.

Implementations SHOULD NOT extend positions beyond three elements because the semantics of extra elements are unspecified and ambiguous. Historically, some implementations have used a fourth element to carry a linear referencing measure (sometimes denoted as "M") or a numerical timestamp, but in most situations a parser will not be able to properly interpret these values. The interpretation and meaning of additional elements is beyond the scope of this specification, and additional elements MAY be ignored by parsers.

Show children

Show children

Coordinate
number
bbox
list<Coordinate>
optional

A GeoJSON object MAY have a member named "bbox" to include information on the coordinate range for its Geometries, Features, or FeatureCollections. The value of the bbox member MUST be an array of length 2*n where n is the number of dimensions represented in the contained geometries, with all axes of the most southwesterly point followed by all axes of the more northeasterly point. The axes order of a bbox follows the axes order of geometries.

Show children

Show children

Coordinate
number
lt
object
optional

Returns objects where the specified field is less than a value.

Show children

Show children

field
string

The name of the property in the API. To find the API name for your property, use the Get object type endpoint or check the Ontology Manager.

value
any

Represents the value of a property in the following format.

TypeJSON encodingExample
Arrayarray["alpha", "bravo", "charlie"]
AttachmentJSON encoded AttachmentProperty object{"rid":"ri.blobster.main.attachment.2f944bae-5851-4204-8615-920c969a9f2e"}
Booleanbooleantrue
Bytenumber31
DateISO 8601 extended local date string"2021-05-01"
Decimalstring"2.718281828"
Doublenumber3.14159265
Floatnumber3.14159265
GeoPointgeojson{"type":"Point","coordinates":[102.0,0.5]}
GeoShapegeojson{"type":"LineString","coordinates":[[102.0,0.0],[103.0,1.0],[104.0,0.0],[105.0,1.0]]}
Integernumber238940
Longstring"58319870951433"
Shortnumber8739
Stringstring"Call me Ishmael"
TimestampISO 8601 extended offset date-time string in UTC zone"2021-01-04T05:00:00Z"

Note that for backwards compatibility, the Boolean, Byte, Double, Float, Integer, and Short types can also be encoded as JSON strings.

doesNotIntersectBoundingBox
object
optional

Returns objects where the specified field does not intersect the bounding box provided.

Show children

Show children

field
string

The name of the property in the API. To find the API name for your property, use the Get object type endpoint or check the Ontology Manager.

value
object

The top left and bottom right coordinate points that make up the bounding box.

Show children

Show children

topLeft
union
Show children

Show children

Point
object
optional
Show children

Show children

coordinates
list<Coordinate>
optional

GeoJSon fundamental geometry construct.

A position is an array of numbers. There MUST be two or more elements. The first two elements are longitude and latitude, precisely in that order and using decimal numbers. Altitude or elevation MAY be included as an optional third element.

Implementations SHOULD NOT extend positions beyond three elements because the semantics of extra elements are unspecified and ambiguous. Historically, some implementations have used a fourth element to carry a linear referencing measure (sometimes denoted as "M") or a numerical timestamp, but in most situations a parser will not be able to properly interpret these values. The interpretation and meaning of additional elements is beyond the scope of this specification, and additional elements MAY be ignored by parsers.

Show children

Show children

Coordinate
number
bbox
list<Coordinate>
optional

A GeoJSON object MAY have a member named "bbox" to include information on the coordinate range for its Geometries, Features, or FeatureCollections. The value of the bbox member MUST be an array of length 2*n where n is the number of dimensions represented in the contained geometries, with all axes of the most southwesterly point followed by all axes of the more northeasterly point. The axes order of a bbox follows the axes order of geometries.

Show children

Show children

Coordinate
number
bottomRight
union
Show children

Show children

Point
object
optional
Show children

Show children

coordinates
list<Coordinate>
optional

GeoJSon fundamental geometry construct.

A position is an array of numbers. There MUST be two or more elements. The first two elements are longitude and latitude, precisely in that order and using decimal numbers. Altitude or elevation MAY be included as an optional third element.

Implementations SHOULD NOT extend positions beyond three elements because the semantics of extra elements are unspecified and ambiguous. Historically, some implementations have used a fourth element to carry a linear referencing measure (sometimes denoted as "M") or a numerical timestamp, but in most situations a parser will not be able to properly interpret these values. The interpretation and meaning of additional elements is beyond the scope of this specification, and additional elements MAY be ignored by parsers.

Show children

Show children

Coordinate
number
bbox
list<Coordinate>
optional

A GeoJSON object MAY have a member named "bbox" to include information on the coordinate range for its Geometries, Features, or FeatureCollections. The value of the bbox member MUST be an array of length 2*n where n is the number of dimensions represented in the contained geometries, with all axes of the most southwesterly point followed by all axes of the more northeasterly point. The axes order of a bbox follows the axes order of geometries.

Show children

Show children

Coordinate
number
eq
object
optional

Returns objects where the specified field is equal to a value.

Show children

Show children

field
string

The name of the property in the API. To find the API name for your property, use the Get object type endpoint or check the Ontology Manager.

value
any

Represents the value of a property in the following format.

TypeJSON encodingExample
Arrayarray["alpha", "bravo", "charlie"]
AttachmentJSON encoded AttachmentProperty object{"rid":"ri.blobster.main.attachment.2f944bae-5851-4204-8615-920c969a9f2e"}
Booleanbooleantrue
Bytenumber31
DateISO 8601 extended local date string"2021-05-01"
Decimalstring"2.718281828"
Doublenumber3.14159265
Floatnumber3.14159265
GeoPointgeojson{"type":"Point","coordinates":[102.0,0.5]}
GeoShapegeojson{"type":"LineString","coordinates":[[102.0,0.0],[103.0,1.0],[104.0,0.0],[105.0,1.0]]}
Integernumber238940
Longstring"58319870951433"
Shortnumber8739
Stringstring"Call me Ishmael"
TimestampISO 8601 extended offset date-time string in UTC zone"2021-01-04T05:00:00Z"

Note that for backwards compatibility, the Boolean, Byte, Double, Float, Integer, and Short types can also be encoded as JSON strings.

containsAllTerms
object
optional

Returns objects where the specified field contains all of the whitespace separated words in any order in the provided value. This query supports fuzzy matching.

Show children

Show children

field
string

The name of the property in the API. To find the API name for your property, use the Get object type endpoint or check the Ontology Manager.

value
string
fuzzy
boolean
optional

Setting fuzzy to true allows approximate matching in search queries that support it.

gt
object
optional

Returns objects where the specified field is greater than a value.

Show children

Show children

field
string

The name of the property in the API. To find the API name for your property, use the Get object type endpoint or check the Ontology Manager.

value
any

Represents the value of a property in the following format.

TypeJSON encodingExample
Arrayarray["alpha", "bravo", "charlie"]
AttachmentJSON encoded AttachmentProperty object{"rid":"ri.blobster.main.attachment.2f944bae-5851-4204-8615-920c969a9f2e"}
Booleanbooleantrue
Bytenumber31
DateISO 8601 extended local date string"2021-05-01"
Decimalstring"2.718281828"
Doublenumber3.14159265
Floatnumber3.14159265
GeoPointgeojson{"type":"Point","coordinates":[102.0,0.5]}
GeoShapegeojson{"type":"LineString","coordinates":[[102.0,0.0],[103.0,1.0],[104.0,0.0],[105.0,1.0]]}
Integernumber238940
Longstring"58319870951433"
Shortnumber8739
Stringstring"Call me Ishmael"
TimestampISO 8601 extended offset date-time string in UTC zone"2021-01-04T05:00:00Z"

Note that for backwards compatibility, the Boolean, Byte, Double, Float, Integer, and Short types can also be encoded as JSON strings.

withinDistanceOf
object
optional

Returns objects where the specified field contains a point within the distance provided of the center point.

Show children

Show children

field
string

The name of the property in the API. To find the API name for your property, use the Get object type endpoint or check the Ontology Manager.

value
object

The coordinate point to use as the center of the distance query.

Show children

Show children

center
union
Show children

Show children

Point
object
optional
Show children

Show children

coordinates
list<Coordinate>
optional

GeoJSon fundamental geometry construct.

A position is an array of numbers. There MUST be two or more elements. The first two elements are longitude and latitude, precisely in that order and using decimal numbers. Altitude or elevation MAY be included as an optional third element.

Implementations SHOULD NOT extend positions beyond three elements because the semantics of extra elements are unspecified and ambiguous. Historically, some implementations have used a fourth element to carry a linear referencing measure (sometimes denoted as "M") or a numerical timestamp, but in most situations a parser will not be able to properly interpret these values. The interpretation and meaning of additional elements is beyond the scope of this specification, and additional elements MAY be ignored by parsers.

Show children

Show children

Coordinate
number
bbox
list<Coordinate>
optional

A GeoJSON object MAY have a member named "bbox" to include information on the coordinate range for its Geometries, Features, or FeatureCollections. The value of the bbox member MUST be an array of length 2*n where n is the number of dimensions represented in the contained geometries, with all axes of the most southwesterly point followed by all axes of the more northeasterly point. The axes order of a bbox follows the axes order of geometries.

Show children

Show children

Coordinate
number
distance
object

A measurement of distance.

Show children

Show children

value
number
unit
string (enum)

Enum values: MILLIMETERS, CENTIMETERS, METERS, KILOMETERS, INCHES, FEET, YARDS, MILES, NAUTICAL_MILES

withinBoundingBox
object
optional

Returns objects where the specified field contains a point within the bounding box provided.

Show children

Show children

field
string

The name of the property in the API. To find the API name for your property, use the Get object type endpoint or check the Ontology Manager.

value
object

The top left and bottom right coordinate points that make up the bounding box.

Show children

Show children

topLeft
union
Show children

Show children

Point
object
optional
Show children

Show children

coordinates
list<Coordinate>
optional

GeoJSon fundamental geometry construct.

A position is an array of numbers. There MUST be two or more elements. The first two elements are longitude and latitude, precisely in that order and using decimal numbers. Altitude or elevation MAY be included as an optional third element.

Implementations SHOULD NOT extend positions beyond three elements because the semantics of extra elements are unspecified and ambiguous. Historically, some implementations have used a fourth element to carry a linear referencing measure (sometimes denoted as "M") or a numerical timestamp, but in most situations a parser will not be able to properly interpret these values. The interpretation and meaning of additional elements is beyond the scope of this specification, and additional elements MAY be ignored by parsers.

Show children

Show children

Coordinate
number
bbox
list<Coordinate>
optional

A GeoJSON object MAY have a member named "bbox" to include information on the coordinate range for its Geometries, Features, or FeatureCollections. The value of the bbox member MUST be an array of length 2*n where n is the number of dimensions represented in the contained geometries, with all axes of the most southwesterly point followed by all axes of the more northeasterly point. The axes order of a bbox follows the axes order of geometries.

Show children

Show children

Coordinate
number
bottomRight
union
Show children

Show children

Point
object
optional
Show children

Show children

coordinates
list<Coordinate>
optional

GeoJSon fundamental geometry construct.

A position is an array of numbers. There MUST be two or more elements. The first two elements are longitude and latitude, precisely in that order and using decimal numbers. Altitude or elevation MAY be included as an optional third element.

Implementations SHOULD NOT extend positions beyond three elements because the semantics of extra elements are unspecified and ambiguous. Historically, some implementations have used a fourth element to carry a linear referencing measure (sometimes denoted as "M") or a numerical timestamp, but in most situations a parser will not be able to properly interpret these values. The interpretation and meaning of additional elements is beyond the scope of this specification, and additional elements MAY be ignored by parsers.

Show children

Show children

Coordinate
number
bbox
list<Coordinate>
optional

A GeoJSON object MAY have a member named "bbox" to include information on the coordinate range for its Geometries, Features, or FeatureCollections. The value of the bbox member MUST be an array of length 2*n where n is the number of dimensions represented in the contained geometries, with all axes of the most southwesterly point followed by all axes of the more northeasterly point. The axes order of a bbox follows the axes order of geometries.

Show children

Show children

Coordinate
number
contains
object
optional

Returns objects where the specified array contains a value.

Show children

Show children

field
string

The name of the property in the API. To find the API name for your property, use the Get object type endpoint or check the Ontology Manager.

value
any

Represents the value of a property in the following format.

TypeJSON encodingExample
Arrayarray["alpha", "bravo", "charlie"]
AttachmentJSON encoded AttachmentProperty object{"rid":"ri.blobster.main.attachment.2f944bae-5851-4204-8615-920c969a9f2e"}
Booleanbooleantrue
Bytenumber31
DateISO 8601 extended local date string"2021-05-01"
Decimalstring"2.718281828"
Doublenumber3.14159265
Floatnumber3.14159265
GeoPointgeojson{"type":"Point","coordinates":[102.0,0.5]}
GeoShapegeojson{"type":"LineString","coordinates":[[102.0,0.0],[103.0,1.0],[104.0,0.0],[105.0,1.0]]}
Integernumber238940
Longstring"58319870951433"
Shortnumber8739
Stringstring"Call me Ishmael"
TimestampISO 8601 extended offset date-time string in UTC zone"2021-01-04T05:00:00Z"

Note that for backwards compatibility, the Boolean, Byte, Double, Float, Integer, and Short types can also be encoded as JSON strings.

not
object
optional

Returns objects where the query is not satisfied.

Show children

Show children

value
union
Show children

Show children

or
object
optional

Returns objects where at least 1 query is satisfied.

Show children

Show children

value
list<SearchJsonQueryV2>
optional
Show children

Show children

SearchJsonQueryV2
union
in
object
optional

Returns objects where the specified field equals any of the provided values.

Show children

Show children

field
string

The name of the property in the API. To find the API name for your property, use the Get object type endpoint or check the Ontology Manager.

value
list<PropertyValue>
optional
Show children

Show children

PropertyValue
any

Represents the value of a property in the following format.

TypeJSON encodingExample
Arrayarray["alpha", "bravo", "charlie"]
AttachmentJSON encoded AttachmentProperty object{"rid":"ri.blobster.main.attachment.2f944bae-5851-4204-8615-920c969a9f2e"}
Booleanbooleantrue
Bytenumber31
DateISO 8601 extended local date string"2021-05-01"
Decimalstring"2.718281828"
Doublenumber3.14159265
Floatnumber3.14159265
GeoPointgeojson{"type":"Point","coordinates":[102.0,0.5]}
GeoShapegeojson{"type":"LineString","coordinates":[[102.0,0.0],[103.0,1.0],[104.0,0.0],[105.0,1.0]]}
Integernumber238940
Longstring"58319870951433"
Shortnumber8739
Stringstring"Call me Ishmael"
TimestampISO 8601 extended offset date-time string in UTC zone"2021-01-04T05:00:00Z"

Note that for backwards compatibility, the Boolean, Byte, Double, Float, Integer, and Short types can also be encoded as JSON strings.

doesNotIntersectPolygon
object
optional

Returns objects where the specified field does not intersect the polygon provided.

Show children

Show children

field
string

The name of the property in the API. To find the API name for your property, use the Get object type endpoint or check the Ontology Manager.

value
union
Show children

Show children

Polygon
object
optional
Show children

Show children

coordinates
list<LinearRing>
optional
Show children

Show children

LinearRing
list<Position>

A linear ring is a closed LineString with four or more positions.

The first and last positions are equivalent, and they MUST contain identical values; their representation SHOULD also be identical.

A linear ring is the boundary of a surface or the boundary of a hole in a surface.

A linear ring MUST follow the right-hand rule with respect to the area it bounds, i.e., exterior rings are counterclockwise, and holes are clockwise.

Show children

Show children

Position
list<Coordinate>

GeoJSon fundamental geometry construct.

A position is an array of numbers. There MUST be two or more elements. The first two elements are longitude and latitude, precisely in that order and using decimal numbers. Altitude or elevation MAY be included as an optional third element.

Implementations SHOULD NOT extend positions beyond three elements because the semantics of extra elements are unspecified and ambiguous. Historically, some implementations have used a fourth element to carry a linear referencing measure (sometimes denoted as "M") or a numerical timestamp, but in most situations a parser will not be able to properly interpret these values. The interpretation and meaning of additional elements is beyond the scope of this specification, and additional elements MAY be ignored by parsers.

Show children

Show children

Coordinate
number
bbox
list<Coordinate>
optional

A GeoJSON object MAY have a member named "bbox" to include information on the coordinate range for its Geometries, Features, or FeatureCollections. The value of the bbox member MUST be an array of length 2*n where n is the number of dimensions represented in the contained geometries, with all axes of the most southwesterly point followed by all axes of the more northeasterly point. The axes order of a bbox follows the axes order of geometries.

Show children

Show children

Coordinate
number
lt
object
optional

Returns objects where the specified field is less than a value.

Show children

Show children

field
string

The name of the property in the API. To find the API name for your property, use the Get object type endpoint or check the Ontology Manager.

value
any

Represents the value of a property in the following format.

TypeJSON encodingExample
Arrayarray["alpha", "bravo", "charlie"]
AttachmentJSON encoded AttachmentProperty object{"rid":"ri.blobster.main.attachment.2f944bae-5851-4204-8615-920c969a9f2e"}
Booleanbooleantrue
Bytenumber31
DateISO 8601 extended local date string"2021-05-01"
Decimalstring"2.718281828"
Doublenumber3.14159265
Floatnumber3.14159265
GeoPointgeojson{"type":"Point","coordinates":[102.0,0.5]}
GeoShapegeojson{"type":"LineString","coordinates":[[102.0,0.0],[103.0,1.0],[104.0,0.0],[105.0,1.0]]}
Integernumber238940
Longstring"58319870951433"
Shortnumber8739
Stringstring"Call me Ishmael"
TimestampISO 8601 extended offset date-time string in UTC zone"2021-01-04T05:00:00Z"

Note that for backwards compatibility, the Boolean, Byte, Double, Float, Integer, and Short types can also be encoded as JSON strings.

doesNotIntersectBoundingBox
object
optional

Returns objects where the specified field does not intersect the bounding box provided.

Show children

Show children

field
string

The name of the property in the API. To find the API name for your property, use the Get object type endpoint or check the Ontology Manager.

value
object

The top left and bottom right coordinate points that make up the bounding box.

Show children

Show children

topLeft
union
Show children

Show children

Point
object
optional
Show children

Show children

coordinates
list<Coordinate>
optional

GeoJSon fundamental geometry construct.

A position is an array of numbers. There MUST be two or more elements. The first two elements are longitude and latitude, precisely in that order and using decimal numbers. Altitude or elevation MAY be included as an optional third element.

Implementations SHOULD NOT extend positions beyond three elements because the semantics of extra elements are unspecified and ambiguous. Historically, some implementations have used a fourth element to carry a linear referencing measure (sometimes denoted as "M") or a numerical timestamp, but in most situations a parser will not be able to properly interpret these values. The interpretation and meaning of additional elements is beyond the scope of this specification, and additional elements MAY be ignored by parsers.

Show children

Show children

Coordinate
number
bbox
list<Coordinate>
optional

A GeoJSON object MAY have a member named "bbox" to include information on the coordinate range for its Geometries, Features, or FeatureCollections. The value of the bbox member MUST be an array of length 2*n where n is the number of dimensions represented in the contained geometries, with all axes of the most southwesterly point followed by all axes of the more northeasterly point. The axes order of a bbox follows the axes order of geometries.

Show children

Show children

Coordinate
number
bottomRight
union
Show children

Show children

Point
object
optional
Show children

Show children

coordinates
list<Coordinate>
optional

GeoJSon fundamental geometry construct.

A position is an array of numbers. There MUST be two or more elements. The first two elements are longitude and latitude, precisely in that order and using decimal numbers. Altitude or elevation MAY be included as an optional third element.

Implementations SHOULD NOT extend positions beyond three elements because the semantics of extra elements are unspecified and ambiguous. Historically, some implementations have used a fourth element to carry a linear referencing measure (sometimes denoted as "M") or a numerical timestamp, but in most situations a parser will not be able to properly interpret these values. The interpretation and meaning of additional elements is beyond the scope of this specification, and additional elements MAY be ignored by parsers.

Show children

Show children

Coordinate
number
bbox
list<Coordinate>
optional

A GeoJSON object MAY have a member named "bbox" to include information on the coordinate range for its Geometries, Features, or FeatureCollections. The value of the bbox member MUST be an array of length 2*n where n is the number of dimensions represented in the contained geometries, with all axes of the most southwesterly point followed by all axes of the more northeasterly point. The axes order of a bbox follows the axes order of geometries.

Show children

Show children

Coordinate
number
eq
object
optional

Returns objects where the specified field is equal to a value.

Show children

Show children

field
string

The name of the property in the API. To find the API name for your property, use the Get object type endpoint or check the Ontology Manager.

value
any

Represents the value of a property in the following format.

TypeJSON encodingExample
Arrayarray["alpha", "bravo", "charlie"]
AttachmentJSON encoded AttachmentProperty object{"rid":"ri.blobster.main.attachment.2f944bae-5851-4204-8615-920c969a9f2e"}
Booleanbooleantrue
Bytenumber31
DateISO 8601 extended local date string"2021-05-01"
Decimalstring"2.718281828"
Doublenumber3.14159265
Floatnumber3.14159265
GeoPointgeojson{"type":"Point","coordinates":[102.0,0.5]}
GeoShapegeojson{"type":"LineString","coordinates":[[102.0,0.0],[103.0,1.0],[104.0,0.0],[105.0,1.0]]}
Integernumber238940
Longstring"58319870951433"
Shortnumber8739
Stringstring"Call me Ishmael"
TimestampISO 8601 extended offset date-time string in UTC zone"2021-01-04T05:00:00Z"

Note that for backwards compatibility, the Boolean, Byte, Double, Float, Integer, and Short types can also be encoded as JSON strings.

containsAllTerms
object
optional

Returns objects where the specified field contains all of the whitespace separated words in any order in the provided value. This query supports fuzzy matching.

Show children

Show children

field
string

The name of the property in the API. To find the API name for your property, use the Get object type endpoint or check the Ontology Manager.

value
string
fuzzy
boolean
optional

Setting fuzzy to true allows approximate matching in search queries that support it.

gt
object
optional

Returns objects where the specified field is greater than a value.

Show children

Show children

field
string

The name of the property in the API. To find the API name for your property, use the Get object type endpoint or check the Ontology Manager.

value
any

Represents the value of a property in the following format.

TypeJSON encodingExample
Arrayarray["alpha", "bravo", "charlie"]
AttachmentJSON encoded AttachmentProperty object{"rid":"ri.blobster.main.attachment.2f944bae-5851-4204-8615-920c969a9f2e"}
Booleanbooleantrue
Bytenumber31
DateISO 8601 extended local date string"2021-05-01"
Decimalstring"2.718281828"
Doublenumber3.14159265
Floatnumber3.14159265
GeoPointgeojson{"type":"Point","coordinates":[102.0,0.5]}
GeoShapegeojson{"type":"LineString","coordinates":[[102.0,0.0],[103.0,1.0],[104.0,0.0],[105.0,1.0]]}
Integernumber238940
Longstring"58319870951433"
Shortnumber8739
Stringstring"Call me Ishmael"
TimestampISO 8601 extended offset date-time string in UTC zone"2021-01-04T05:00:00Z"

Note that for backwards compatibility, the Boolean, Byte, Double, Float, Integer, and Short types can also be encoded as JSON strings.

withinDistanceOf
object
optional

Returns objects where the specified field contains a point within the distance provided of the center point.

Show children

Show children

field
string

The name of the property in the API. To find the API name for your property, use the Get object type endpoint or check the Ontology Manager.

value
object

The coordinate point to use as the center of the distance query.

Show children

Show children

center
union
Show children

Show children

Point
object
optional
Show children

Show children

coordinates
list<Coordinate>
optional

GeoJSon fundamental geometry construct.

A position is an array of numbers. There MUST be two or more elements. The first two elements are longitude and latitude, precisely in that order and using decimal numbers. Altitude or elevation MAY be included as an optional third element.

Implementations SHOULD NOT extend positions beyond three elements because the semantics of extra elements are unspecified and ambiguous. Historically, some implementations have used a fourth element to carry a linear referencing measure (sometimes denoted as "M") or a numerical timestamp, but in most situations a parser will not be able to properly interpret these values. The interpretation and meaning of additional elements is beyond the scope of this specification, and additional elements MAY be ignored by parsers.

Show children

Show children

Coordinate
number
bbox
list<Coordinate>
optional

A GeoJSON object MAY have a member named "bbox" to include information on the coordinate range for its Geometries, Features, or FeatureCollections. The value of the bbox member MUST be an array of length 2*n where n is the number of dimensions represented in the contained geometries, with all axes of the most southwesterly point followed by all axes of the more northeasterly point. The axes order of a bbox follows the axes order of geometries.

Show children

Show children

Coordinate
number
distance
object

A measurement of distance.

Show children

Show children

value
number
unit
string (enum)

Enum values: MILLIMETERS, CENTIMETERS, METERS, KILOMETERS, INCHES, FEET, YARDS, MILES, NAUTICAL_MILES

withinBoundingBox
object
optional

Returns objects where the specified field contains a point within the bounding box provided.

Show children

Show children

field
string

The name of the property in the API. To find the API name for your property, use the Get object type endpoint or check the Ontology Manager.

value
object

The top left and bottom right coordinate points that make up the bounding box.

Show children

Show children

topLeft
union
Show children

Show children

Point
object
optional
Show children

Show children

coordinates
list<Coordinate>
optional

GeoJSon fundamental geometry construct.

A position is an array of numbers. There MUST be two or more elements. The first two elements are longitude and latitude, precisely in that order and using decimal numbers. Altitude or elevation MAY be included as an optional third element.

Implementations SHOULD NOT extend positions beyond three elements because the semantics of extra elements are unspecified and ambiguous. Historically, some implementations have used a fourth element to carry a linear referencing measure (sometimes denoted as "M") or a numerical timestamp, but in most situations a parser will not be able to properly interpret these values. The interpretation and meaning of additional elements is beyond the scope of this specification, and additional elements MAY be ignored by parsers.

Show children

Show children

Coordinate
number
bbox
list<Coordinate>
optional

A GeoJSON object MAY have a member named "bbox" to include information on the coordinate range for its Geometries, Features, or FeatureCollections. The value of the bbox member MUST be an array of length 2*n where n is the number of dimensions represented in the contained geometries, with all axes of the most southwesterly point followed by all axes of the more northeasterly point. The axes order of a bbox follows the axes order of geometries.

Show children

Show children

Coordinate
number
bottomRight
union
Show children

Show children

Point
object
optional
Show children

Show children

coordinates
list<Coordinate>
optional

GeoJSon fundamental geometry construct.

A position is an array of numbers. There MUST be two or more elements. The first two elements are longitude and latitude, precisely in that order and using decimal numbers. Altitude or elevation MAY be included as an optional third element.

Implementations SHOULD NOT extend positions beyond three elements because the semantics of extra elements are unspecified and ambiguous. Historically, some implementations have used a fourth element to carry a linear referencing measure (sometimes denoted as "M") or a numerical timestamp, but in most situations a parser will not be able to properly interpret these values. The interpretation and meaning of additional elements is beyond the scope of this specification, and additional elements MAY be ignored by parsers.

Show children

Show children

Coordinate
number
bbox
list<Coordinate>
optional

A GeoJSON object MAY have a member named "bbox" to include information on the coordinate range for its Geometries, Features, or FeatureCollections. The value of the bbox member MUST be an array of length 2*n where n is the number of dimensions represented in the contained geometries, with all axes of the most southwesterly point followed by all axes of the more northeasterly point. The axes order of a bbox follows the axes order of geometries.

Show children

Show children

Coordinate
number
contains
object
optional

Returns objects where the specified array contains a value.

Show children

Show children

field
string

The name of the property in the API. To find the API name for your property, use the Get object type endpoint or check the Ontology Manager.

value
any

Represents the value of a property in the following format.

TypeJSON encodingExample
Arrayarray["alpha", "bravo", "charlie"]
AttachmentJSON encoded AttachmentProperty object{"rid":"ri.blobster.main.attachment.2f944bae-5851-4204-8615-920c969a9f2e"}
Booleanbooleantrue
Bytenumber31
DateISO 8601 extended local date string"2021-05-01"
Decimalstring"2.718281828"
Doublenumber3.14159265
Floatnumber3.14159265
GeoPointgeojson{"type":"Point","coordinates":[102.0,0.5]}
GeoShapegeojson{"type":"LineString","coordinates":[[102.0,0.0],[103.0,1.0],[104.0,0.0],[105.0,1.0]]}
Integernumber238940
Longstring"58319870951433"
Shortnumber8739
Stringstring"Call me Ishmael"
TimestampISO 8601 extended offset date-time string in UTC zone"2021-01-04T05:00:00Z"

Note that for backwards compatibility, the Boolean, Byte, Double, Float, Integer, and Short types can also be encoded as JSON strings.

not
object
optional

Returns objects where the query is not satisfied.

Show children

Show children

value
union
intersectsBoundingBox
object
optional

Returns objects where the specified field intersects the bounding box provided.

Show children

Show children

field
string

The name of the property in the API. To find the API name for your property, use the Get object type endpoint or check the Ontology Manager.

value
object

The top left and bottom right coordinate points that make up the bounding box.

Show children

Show children

topLeft
union
Show children

Show children

Point
object
optional
Show children

Show children

coordinates
list<Coordinate>
optional

GeoJSon fundamental geometry construct.

A position is an array of numbers. There MUST be two or more elements. The first two elements are longitude and latitude, precisely in that order and using decimal numbers. Altitude or elevation MAY be included as an optional third element.

Implementations SHOULD NOT extend positions beyond three elements because the semantics of extra elements are unspecified and ambiguous. Historically, some implementations have used a fourth element to carry a linear referencing measure (sometimes denoted as "M") or a numerical timestamp, but in most situations a parser will not be able to properly interpret these values. The interpretation and meaning of additional elements is beyond the scope of this specification, and additional elements MAY be ignored by parsers.

Show children

Show children

Coordinate
number
bbox
list<Coordinate>
optional

A GeoJSON object MAY have a member named "bbox" to include information on the coordinate range for its Geometries, Features, or FeatureCollections. The value of the bbox member MUST be an array of length 2*n where n is the number of dimensions represented in the contained geometries, with all axes of the most southwesterly point followed by all axes of the more northeasterly point. The axes order of a bbox follows the axes order of geometries.

Show children

Show children

Coordinate
number
bottomRight
union
Show children

Show children

Point
object
optional
Show children

Show children

coordinates
list<Coordinate>
optional

GeoJSon fundamental geometry construct.

A position is an array of numbers. There MUST be two or more elements. The first two elements are longitude and latitude, precisely in that order and using decimal numbers. Altitude or elevation MAY be included as an optional third element.

Implementations SHOULD NOT extend positions beyond three elements because the semantics of extra elements are unspecified and ambiguous. Historically, some implementations have used a fourth element to carry a linear referencing measure (sometimes denoted as "M") or a numerical timestamp, but in most situations a parser will not be able to properly interpret these values. The interpretation and meaning of additional elements is beyond the scope of this specification, and additional elements MAY be ignored by parsers.

Show children

Show children

Coordinate
number
bbox
list<Coordinate>
optional

A GeoJSON object MAY have a member named "bbox" to include information on the coordinate range for its Geometries, Features, or FeatureCollections. The value of the bbox member MUST be an array of length 2*n where n is the number of dimensions represented in the contained geometries, with all axes of the most southwesterly point followed by all axes of the more northeasterly point. The axes order of a bbox follows the axes order of geometries.

Show children

Show children

Coordinate
number
and
object
optional

Returns objects where every query is satisfied.

Show children

Show children

value
list<SearchJsonQueryV2>
optional
Show children

Show children

SearchJsonQueryV2
union
isNull
object
optional

Returns objects based on the existence of the specified field.

Show children

Show children

field
string

The name of the property in the API. To find the API name for your property, use the Get object type endpoint or check the Ontology Manager.

value
boolean
containsAllTermsInOrderPrefixLastTerm
object
optional

Returns objects where the specified field contains all of the terms in the order provided, but they do have to be adjacent to each other. The last term can be a partial prefix match.

Show children

Show children

field
string

The name of the property in the API. To find the API name for your property, use the Get object type endpoint or check the Ontology Manager.

value
string
containsAnyTerm
object
optional

Returns objects where the specified field contains any of the whitespace separated words in any order in the provided value. This query supports fuzzy matching.

Show children

Show children

field
string

The name of the property in the API. To find the API name for your property, use the Get object type endpoint or check the Ontology Manager.

value
string
fuzzy
boolean
optional

Setting fuzzy to true allows approximate matching in search queries that support it.

gte
object
optional

Returns objects where the specified field is greater than or equal to a value.

Show children

Show children

field
string

The name of the property in the API. To find the API name for your property, use the Get object type endpoint or check the Ontology Manager.

value
any

Represents the value of a property in the following format.

TypeJSON encodingExample
Arrayarray["alpha", "bravo", "charlie"]
AttachmentJSON encoded AttachmentProperty object{"rid":"ri.blobster.main.attachment.2f944bae-5851-4204-8615-920c969a9f2e"}
Booleanbooleantrue
Bytenumber31
DateISO 8601 extended local date string"2021-05-01"
Decimalstring"2.718281828"
Doublenumber3.14159265
Floatnumber3.14159265
GeoPointgeojson{"type":"Point","coordinates":[102.0,0.5]}
GeoShapegeojson{"type":"LineString","coordinates":[[102.0,0.0],[103.0,1.0],[104.0,0.0],[105.0,1.0]]}
Integernumber238940
Longstring"58319870951433"
Shortnumber8739
Stringstring"Call me Ishmael"
TimestampISO 8601 extended offset date-time string in UTC zone"2021-01-04T05:00:00Z"

Note that for backwards compatibility, the Boolean, Byte, Double, Float, Integer, and Short types can also be encoded as JSON strings.

containsAllTermsInOrder
object
optional

Returns objects where the specified field contains all of the terms in the order provided, but they do have to be adjacent to each other.

Show children

Show children

field
string

The name of the property in the API. To find the API name for your property, use the Get object type endpoint or check the Ontology Manager.

value
string
withinPolygon
object
optional

Returns objects where the specified field contains a point within the polygon provided.

Show children

Show children

field
string

The name of the property in the API. To find the API name for your property, use the Get object type endpoint or check the Ontology Manager.

value
union
Show children

Show children

Polygon
object
optional
Show children

Show children

coordinates
list<LinearRing>
optional
Show children

Show children

LinearRing
list<Position>

A linear ring is a closed LineString with four or more positions.

The first and last positions are equivalent, and they MUST contain identical values; their representation SHOULD also be identical.

A linear ring is the boundary of a surface or the boundary of a hole in a surface.

A linear ring MUST follow the right-hand rule with respect to the area it bounds, i.e., exterior rings are counterclockwise, and holes are clockwise.

Show children

Show children

Position
list<Coordinate>

GeoJSon fundamental geometry construct.

A position is an array of numbers. There MUST be two or more elements. The first two elements are longitude and latitude, precisely in that order and using decimal numbers. Altitude or elevation MAY be included as an optional third element.

Implementations SHOULD NOT extend positions beyond three elements because the semantics of extra elements are unspecified and ambiguous. Historically, some implementations have used a fourth element to carry a linear referencing measure (sometimes denoted as "M") or a numerical timestamp, but in most situations a parser will not be able to properly interpret these values. The interpretation and meaning of additional elements is beyond the scope of this specification, and additional elements MAY be ignored by parsers.

Show children

Show children

Coordinate
number
bbox
list<Coordinate>
optional

A GeoJSON object MAY have a member named "bbox" to include information on the coordinate range for its Geometries, Features, or FeatureCollections. The value of the bbox member MUST be an array of length 2*n where n is the number of dimensions represented in the contained geometries, with all axes of the most southwesterly point followed by all axes of the more northeasterly point. The axes order of a bbox follows the axes order of geometries.

Show children

Show children

Coordinate
number
intersectsPolygon
object
optional

Returns objects where the specified field intersects the polygon provided.

Show children

Show children

field
string

The name of the property in the API. To find the API name for your property, use the Get object type endpoint or check the Ontology Manager.

value
union
Show children

Show children

Polygon
object
optional
Show children

Show children

coordinates
list<LinearRing>
optional
Show children

Show children

LinearRing
list<Position>

A linear ring is a closed LineString with four or more positions.

The first and last positions are equivalent, and they MUST contain identical values; their representation SHOULD also be identical.

A linear ring is the boundary of a surface or the boundary of a hole in a surface.

A linear ring MUST follow the right-hand rule with respect to the area it bounds, i.e., exterior rings are counterclockwise, and holes are clockwise.

Show children

Show children

Position
list<Coordinate>

GeoJSon fundamental geometry construct.

A position is an array of numbers. There MUST be two or more elements. The first two elements are longitude and latitude, precisely in that order and using decimal numbers. Altitude or elevation MAY be included as an optional third element.

Implementations SHOULD NOT extend positions beyond three elements because the semantics of extra elements are unspecified and ambiguous. Historically, some implementations have used a fourth element to carry a linear referencing measure (sometimes denoted as "M") or a numerical timestamp, but in most situations a parser will not be able to properly interpret these values. The interpretation and meaning of additional elements is beyond the scope of this specification, and additional elements MAY be ignored by parsers.

Show children

Show children

Coordinate
number
bbox
list<Coordinate>
optional

A GeoJSON object MAY have a member named "bbox" to include information on the coordinate range for its Geometries, Features, or FeatureCollections. The value of the bbox member MUST be an array of length 2*n where n is the number of dimensions represented in the contained geometries, with all axes of the most southwesterly point followed by all axes of the more northeasterly point. The axes order of a bbox follows the axes order of geometries.

Show children

Show children

Coordinate
number
lte
object
optional

Returns objects where the specified field is less than or equal to a value.

Show children

Show children

field
string

The name of the property in the API. To find the API name for your property, use the Get object type endpoint or check the Ontology Manager.

value
any

Represents the value of a property in the following format.

TypeJSON encodingExample
Arrayarray["alpha", "bravo", "charlie"]
AttachmentJSON encoded AttachmentProperty object{"rid":"ri.blobster.main.attachment.2f944bae-5851-4204-8615-920c969a9f2e"}
Booleanbooleantrue
Bytenumber31
DateISO 8601 extended local date string"2021-05-01"
Decimalstring"2.718281828"
Doublenumber3.14159265
Floatnumber3.14159265
GeoPointgeojson{"type":"Point","coordinates":[102.0,0.5]}
GeoShapegeojson{"type":"LineString","coordinates":[[102.0,0.0],[103.0,1.0],[104.0,0.0],[105.0,1.0]]}
Integernumber238940
Longstring"58319870951433"
Shortnumber8739
Stringstring"Call me Ishmael"
TimestampISO 8601 extended offset date-time string in UTC zone"2021-01-04T05:00:00Z"

Note that for backwards compatibility, the Boolean, Byte, Double, Float, Integer, and Short types can also be encoded as JSON strings.

startsWith
object
optional

Returns objects where the specified field starts with the provided value.

Show children

Show children

field
string

The name of the property in the API. To find the API name for your property, use the Get object type endpoint or check the Ontology Manager.

value
string
intersectsBoundingBox
object
optional

Returns objects where the specified field intersects the bounding box provided.

Show children

Show children

field
string

The name of the property in the API. To find the API name for your property, use the Get object type endpoint or check the Ontology Manager.

value
object

The top left and bottom right coordinate points that make up the bounding box.

Show children

Show children

topLeft
union
Show children

Show children

Point
object
optional
Show children

Show children

coordinates
list<Coordinate>
optional

GeoJSon fundamental geometry construct.

A position is an array of numbers. There MUST be two or more elements. The first two elements are longitude and latitude, precisely in that order and using decimal numbers. Altitude or elevation MAY be included as an optional third element.

Implementations SHOULD NOT extend positions beyond three elements because the semantics of extra elements are unspecified and ambiguous. Historically, some implementations have used a fourth element to carry a linear referencing measure (sometimes denoted as "M") or a numerical timestamp, but in most situations a parser will not be able to properly interpret these values. The interpretation and meaning of additional elements is beyond the scope of this specification, and additional elements MAY be ignored by parsers.

Show children

Show children

Coordinate
number
bbox
list<Coordinate>
optional

A GeoJSON object MAY have a member named "bbox" to include information on the coordinate range for its Geometries, Features, or FeatureCollections. The value of the bbox member MUST be an array of length 2*n where n is the number of dimensions represented in the contained geometries, with all axes of the most southwesterly point followed by all axes of the more northeasterly point. The axes order of a bbox follows the axes order of geometries.

Show children

Show children

Coordinate
number
bottomRight
union
Show children

Show children

Point
object
optional
Show children

Show children

coordinates
list<Coordinate>
optional

GeoJSon fundamental geometry construct.

A position is an array of numbers. There MUST be two or more elements. The first two elements are longitude and latitude, precisely in that order and using decimal numbers. Altitude or elevation MAY be included as an optional third element.

Implementations SHOULD NOT extend positions beyond three elements because the semantics of extra elements are unspecified and ambiguous. Historically, some implementations have used a fourth element to carry a linear referencing measure (sometimes denoted as "M") or a numerical timestamp, but in most situations a parser will not be able to properly interpret these values. The interpretation and meaning of additional elements is beyond the scope of this specification, and additional elements MAY be ignored by parsers.

Show children

Show children

Coordinate
number
bbox
list<Coordinate>
optional

A GeoJSON object MAY have a member named "bbox" to include information on the coordinate range for its Geometries, Features, or FeatureCollections. The value of the bbox member MUST be an array of length 2*n where n is the number of dimensions represented in the contained geometries, with all axes of the most southwesterly point followed by all axes of the more northeasterly point. The axes order of a bbox follows the axes order of geometries.

Show children

Show children

Coordinate
number
and
object
optional

Returns objects where every query is satisfied.

Show children

Show children

value
list<SearchJsonQueryV2>
optional
Show children

Show children

SearchJsonQueryV2
union
Show children

Show children

or
object
optional

Returns objects where at least 1 query is satisfied.

Show children

Show children

value
list<SearchJsonQueryV2>
optional
Show children

Show children

SearchJsonQueryV2
union
in
object
optional

Returns objects where the specified field equals any of the provided values.

Show children

Show children

field
string

The name of the property in the API. To find the API name for your property, use the Get object type endpoint or check the Ontology Manager.

value
list<PropertyValue>
optional
Show children

Show children

PropertyValue
any

Represents the value of a property in the following format.

TypeJSON encodingExample
Arrayarray["alpha", "bravo", "charlie"]
AttachmentJSON encoded AttachmentProperty object{"rid":"ri.blobster.main.attachment.2f944bae-5851-4204-8615-920c969a9f2e"}
Booleanbooleantrue
Bytenumber31
DateISO 8601 extended local date string"2021-05-01"
Decimalstring"2.718281828"
Doublenumber3.14159265
Floatnumber3.14159265
GeoPointgeojson{"type":"Point","coordinates":[102.0,0.5]}
GeoShapegeojson{"type":"LineString","coordinates":[[102.0,0.0],[103.0,1.0],[104.0,0.0],[105.0,1.0]]}
Integernumber238940
Longstring"58319870951433"
Shortnumber8739
Stringstring"Call me Ishmael"
TimestampISO 8601 extended offset date-time string in UTC zone"2021-01-04T05:00:00Z"

Note that for backwards compatibility, the Boolean, Byte, Double, Float, Integer, and Short types can also be encoded as JSON strings.

doesNotIntersectPolygon
object
optional

Returns objects where the specified field does not intersect the polygon provided.

Show children

Show children

field
string

The name of the property in the API. To find the API name for your property, use the Get object type endpoint or check the Ontology Manager.

value
union
Show children

Show children

Polygon
object
optional
Show children

Show children

coordinates
list<LinearRing>
optional
Show children

Show children

LinearRing
list<Position>

A linear ring is a closed LineString with four or more positions.

The first and last positions are equivalent, and they MUST contain identical values; their representation SHOULD also be identical.

A linear ring is the boundary of a surface or the boundary of a hole in a surface.

A linear ring MUST follow the right-hand rule with respect to the area it bounds, i.e., exterior rings are counterclockwise, and holes are clockwise.

Show children

Show children

Position
list<Coordinate>

GeoJSon fundamental geometry construct.

A position is an array of numbers. There MUST be two or more elements. The first two elements are longitude and latitude, precisely in that order and using decimal numbers. Altitude or elevation MAY be included as an optional third element.

Implementations SHOULD NOT extend positions beyond three elements because the semantics of extra elements are unspecified and ambiguous. Historically, some implementations have used a fourth element to carry a linear referencing measure (sometimes denoted as "M") or a numerical timestamp, but in most situations a parser will not be able to properly interpret these values. The interpretation and meaning of additional elements is beyond the scope of this specification, and additional elements MAY be ignored by parsers.

Show children

Show children

Coordinate
number
bbox
list<Coordinate>
optional

A GeoJSON object MAY have a member named "bbox" to include information on the coordinate range for its Geometries, Features, or FeatureCollections. The value of the bbox member MUST be an array of length 2*n where n is the number of dimensions represented in the contained geometries, with all axes of the most southwesterly point followed by all axes of the more northeasterly point. The axes order of a bbox follows the axes order of geometries.

Show children

Show children

Coordinate
number
lt
object
optional

Returns objects where the specified field is less than a value.

Show children

Show children

field
string

The name of the property in the API. To find the API name for your property, use the Get object type endpoint or check the Ontology Manager.

value
any

Represents the value of a property in the following format.

TypeJSON encodingExample
Arrayarray["alpha", "bravo", "charlie"]
AttachmentJSON encoded AttachmentProperty object{"rid":"ri.blobster.main.attachment.2f944bae-5851-4204-8615-920c969a9f2e"}
Booleanbooleantrue
Bytenumber31
DateISO 8601 extended local date string"2021-05-01"
Decimalstring"2.718281828"
Doublenumber3.14159265
Floatnumber3.14159265
GeoPointgeojson{"type":"Point","coordinates":[102.0,0.5]}
GeoShapegeojson{"type":"LineString","coordinates":[[102.0,0.0],[103.0,1.0],[104.0,0.0],[105.0,1.0]]}
Integernumber238940
Longstring"58319870951433"
Shortnumber8739
Stringstring"Call me Ishmael"
TimestampISO 8601 extended offset date-time string in UTC zone"2021-01-04T05:00:00Z"

Note that for backwards compatibility, the Boolean, Byte, Double, Float, Integer, and Short types can also be encoded as JSON strings.

doesNotIntersectBoundingBox
object
optional

Returns objects where the specified field does not intersect the bounding box provided.

Show children

Show children

field
string

The name of the property in the API. To find the API name for your property, use the Get object type endpoint or check the Ontology Manager.

value
object

The top left and bottom right coordinate points that make up the bounding box.

Show children

Show children

topLeft
union
Show children

Show children

Point
object
optional
Show children

Show children

coordinates
list<Coordinate>
optional

GeoJSon fundamental geometry construct.

A position is an array of numbers. There MUST be two or more elements. The first two elements are longitude and latitude, precisely in that order and using decimal numbers. Altitude or elevation MAY be included as an optional third element.

Implementations SHOULD NOT extend positions beyond three elements because the semantics of extra elements are unspecified and ambiguous. Historically, some implementations have used a fourth element to carry a linear referencing measure (sometimes denoted as "M") or a numerical timestamp, but in most situations a parser will not be able to properly interpret these values. The interpretation and meaning of additional elements is beyond the scope of this specification, and additional elements MAY be ignored by parsers.

Show children

Show children

Coordinate
number
bbox
list<Coordinate>
optional

A GeoJSON object MAY have a member named "bbox" to include information on the coordinate range for its Geometries, Features, or FeatureCollections. The value of the bbox member MUST be an array of length 2*n where n is the number of dimensions represented in the contained geometries, with all axes of the most southwesterly point followed by all axes of the more northeasterly point. The axes order of a bbox follows the axes order of geometries.

Show children

Show children

Coordinate
number
bottomRight
union
Show children

Show children

Point
object
optional
Show children

Show children

coordinates
list<Coordinate>
optional

GeoJSon fundamental geometry construct.

A position is an array of numbers. There MUST be two or more elements. The first two elements are longitude and latitude, precisely in that order and using decimal numbers. Altitude or elevation MAY be included as an optional third element.

Implementations SHOULD NOT extend positions beyond three elements because the semantics of extra elements are unspecified and ambiguous. Historically, some implementations have used a fourth element to carry a linear referencing measure (sometimes denoted as "M") or a numerical timestamp, but in most situations a parser will not be able to properly interpret these values. The interpretation and meaning of additional elements is beyond the scope of this specification, and additional elements MAY be ignored by parsers.

Show children

Show children

Coordinate
number
bbox
list<Coordinate>
optional

A GeoJSON object MAY have a member named "bbox" to include information on the coordinate range for its Geometries, Features, or FeatureCollections. The value of the bbox member MUST be an array of length 2*n where n is the number of dimensions represented in the contained geometries, with all axes of the most southwesterly point followed by all axes of the more northeasterly point. The axes order of a bbox follows the axes order of geometries.

Show children

Show children

Coordinate
number
eq
object
optional

Returns objects where the specified field is equal to a value.

Show children

Show children

field
string

The name of the property in the API. To find the API name for your property, use the Get object type endpoint or check the Ontology Manager.

value
any

Represents the value of a property in the following format.

TypeJSON encodingExample
Arrayarray["alpha", "bravo", "charlie"]
AttachmentJSON encoded AttachmentProperty object{"rid":"ri.blobster.main.attachment.2f944bae-5851-4204-8615-920c969a9f2e"}
Booleanbooleantrue
Bytenumber31
DateISO 8601 extended local date string"2021-05-01"
Decimalstring"2.718281828"
Doublenumber3.14159265
Floatnumber3.14159265
GeoPointgeojson{"type":"Point","coordinates":[102.0,0.5]}
GeoShapegeojson{"type":"LineString","coordinates":[[102.0,0.0],[103.0,1.0],[104.0,0.0],[105.0,1.0]]}
Integernumber238940
Longstring"58319870951433"
Shortnumber8739
Stringstring"Call me Ishmael"
TimestampISO 8601 extended offset date-time string in UTC zone"2021-01-04T05:00:00Z"

Note that for backwards compatibility, the Boolean, Byte, Double, Float, Integer, and Short types can also be encoded as JSON strings.

containsAllTerms
object
optional

Returns objects where the specified field contains all of the whitespace separated words in any order in the provided value. This query supports fuzzy matching.

Show children

Show children

field
string

The name of the property in the API. To find the API name for your property, use the Get object type endpoint or check the Ontology Manager.

value
string
fuzzy
boolean
optional

Setting fuzzy to true allows approximate matching in search queries that support it.

gt
object
optional

Returns objects where the specified field is greater than a value.

Show children

Show children

field
string

The name of the property in the API. To find the API name for your property, use the Get object type endpoint or check the Ontology Manager.

value
any

Represents the value of a property in the following format.

TypeJSON encodingExample
Arrayarray["alpha", "bravo", "charlie"]
AttachmentJSON encoded AttachmentProperty object{"rid":"ri.blobster.main.attachment.2f944bae-5851-4204-8615-920c969a9f2e"}
Booleanbooleantrue
Bytenumber31
DateISO 8601 extended local date string"2021-05-01"
Decimalstring"2.718281828"
Doublenumber3.14159265
Floatnumber3.14159265
GeoPointgeojson{"type":"Point","coordinates":[102.0,0.5]}
GeoShapegeojson{"type":"LineString","coordinates":[[102.0,0.0],[103.0,1.0],[104.0,0.0],[105.0,1.0]]}
Integernumber238940
Longstring"58319870951433"
Shortnumber8739
Stringstring"Call me Ishmael"
TimestampISO 8601 extended offset date-time string in UTC zone"2021-01-04T05:00:00Z"

Note that for backwards compatibility, the Boolean, Byte, Double, Float, Integer, and Short types can also be encoded as JSON strings.

withinDistanceOf
object
optional

Returns objects where the specified field contains a point within the distance provided of the center point.

Show children

Show children

field
string

The name of the property in the API. To find the API name for your property, use the Get object type endpoint or check the Ontology Manager.

value
object

The coordinate point to use as the center of the distance query.

Show children

Show children

center
union
Show children

Show children

Point
object
optional
Show children

Show children

coordinates
list<Coordinate>
optional

GeoJSon fundamental geometry construct.

A position is an array of numbers. There MUST be two or more elements. The first two elements are longitude and latitude, precisely in that order and using decimal numbers. Altitude or elevation MAY be included as an optional third element.

Implementations SHOULD NOT extend positions beyond three elements because the semantics of extra elements are unspecified and ambiguous. Historically, some implementations have used a fourth element to carry a linear referencing measure (sometimes denoted as "M") or a numerical timestamp, but in most situations a parser will not be able to properly interpret these values. The interpretation and meaning of additional elements is beyond the scope of this specification, and additional elements MAY be ignored by parsers.

Show children

Show children

Coordinate
number
bbox
list<Coordinate>
optional

A GeoJSON object MAY have a member named "bbox" to include information on the coordinate range for its Geometries, Features, or FeatureCollections. The value of the bbox member MUST be an array of length 2*n where n is the number of dimensions represented in the contained geometries, with all axes of the most southwesterly point followed by all axes of the more northeasterly point. The axes order of a bbox follows the axes order of geometries.

Show children

Show children

Coordinate
number
distance
object

A measurement of distance.

Show children

Show children

value
number
unit
string (enum)

Enum values: MILLIMETERS, CENTIMETERS, METERS, KILOMETERS, INCHES, FEET, YARDS, MILES, NAUTICAL_MILES

withinBoundingBox
object
optional

Returns objects where the specified field contains a point within the bounding box provided.

Show children

Show children

field
string

The name of the property in the API. To find the API name for your property, use the Get object type endpoint or check the Ontology Manager.

value
object

The top left and bottom right coordinate points that make up the bounding box.

Show children

Show children

topLeft
union
Show children

Show children

Point
object
optional
Show children

Show children

coordinates
list<Coordinate>
optional

GeoJSon fundamental geometry construct.

A position is an array of numbers. There MUST be two or more elements. The first two elements are longitude and latitude, precisely in that order and using decimal numbers. Altitude or elevation MAY be included as an optional third element.

Implementations SHOULD NOT extend positions beyond three elements because the semantics of extra elements are unspecified and ambiguous. Historically, some implementations have used a fourth element to carry a linear referencing measure (sometimes denoted as "M") or a numerical timestamp, but in most situations a parser will not be able to properly interpret these values. The interpretation and meaning of additional elements is beyond the scope of this specification, and additional elements MAY be ignored by parsers.

Show children

Show children

Coordinate
number
bbox
list<Coordinate>
optional

A GeoJSON object MAY have a member named "bbox" to include information on the coordinate range for its Geometries, Features, or FeatureCollections. The value of the bbox member MUST be an array of length 2*n where n is the number of dimensions represented in the contained geometries, with all axes of the most southwesterly point followed by all axes of the more northeasterly point. The axes order of a bbox follows the axes order of geometries.

Show children

Show children

Coordinate
number
bottomRight
union
Show children

Show children

Point
object
optional
Show children

Show children

coordinates
list<Coordinate>
optional

GeoJSon fundamental geometry construct.

A position is an array of numbers. There MUST be two or more elements. The first two elements are longitude and latitude, precisely in that order and using decimal numbers. Altitude or elevation MAY be included as an optional third element.

Implementations SHOULD NOT extend positions beyond three elements because the semantics of extra elements are unspecified and ambiguous. Historically, some implementations have used a fourth element to carry a linear referencing measure (sometimes denoted as "M") or a numerical timestamp, but in most situations a parser will not be able to properly interpret these values. The interpretation and meaning of additional elements is beyond the scope of this specification, and additional elements MAY be ignored by parsers.

Show children

Show children

Coordinate
number
bbox
list<Coordinate>
optional

A GeoJSON object MAY have a member named "bbox" to include information on the coordinate range for its Geometries, Features, or FeatureCollections. The value of the bbox member MUST be an array of length 2*n where n is the number of dimensions represented in the contained geometries, with all axes of the most southwesterly point followed by all axes of the more northeasterly point. The axes order of a bbox follows the axes order of geometries.

Show children

Show children

Coordinate
number
contains
object
optional

Returns objects where the specified array contains a value.

Show children

Show children

field
string

The name of the property in the API. To find the API name for your property, use the Get object type endpoint or check the Ontology Manager.

value
any

Represents the value of a property in the following format.

TypeJSON encodingExample
Arrayarray["alpha", "bravo", "charlie"]
AttachmentJSON encoded AttachmentProperty object{"rid":"ri.blobster.main.attachment.2f944bae-5851-4204-8615-920c969a9f2e"}
Booleanbooleantrue
Bytenumber31
DateISO 8601 extended local date string"2021-05-01"
Decimalstring"2.718281828"
Doublenumber3.14159265
Floatnumber3.14159265
GeoPointgeojson{"type":"Point","coordinates":[102.0,0.5]}
GeoShapegeojson{"type":"LineString","coordinates":[[102.0,0.0],[103.0,1.0],[104.0,0.0],[105.0,1.0]]}
Integernumber238940
Longstring"58319870951433"
Shortnumber8739
Stringstring"Call me Ishmael"
TimestampISO 8601 extended offset date-time string in UTC zone"2021-01-04T05:00:00Z"

Note that for backwards compatibility, the Boolean, Byte, Double, Float, Integer, and Short types can also be encoded as JSON strings.

not
object
optional

Returns objects where the query is not satisfied.

Show children

Show children

value
union
intersectsBoundingBox
object
optional

Returns objects where the specified field intersects the bounding box provided.

Show children

Show children

field
string

The name of the property in the API. To find the API name for your property, use the Get object type endpoint or check the Ontology Manager.

value
object

The top left and bottom right coordinate points that make up the bounding box.

Show children

Show children

topLeft
union
Show children

Show children

Point
object
optional
Show children

Show children

coordinates
list<Coordinate>
optional

GeoJSon fundamental geometry construct.

A position is an array of numbers. There MUST be two or more elements. The first two elements are longitude and latitude, precisely in that order and using decimal numbers. Altitude or elevation MAY be included as an optional third element.

Implementations SHOULD NOT extend positions beyond three elements because the semantics of extra elements are unspecified and ambiguous. Historically, some implementations have used a fourth element to carry a linear referencing measure (sometimes denoted as "M") or a numerical timestamp, but in most situations a parser will not be able to properly interpret these values. The interpretation and meaning of additional elements is beyond the scope of this specification, and additional elements MAY be ignored by parsers.

Show children

Show children

Coordinate
number
bbox
list<Coordinate>
optional

A GeoJSON object MAY have a member named "bbox" to include information on the coordinate range for its Geometries, Features, or FeatureCollections. The value of the bbox member MUST be an array of length 2*n where n is the number of dimensions represented in the contained geometries, with all axes of the most southwesterly point followed by all axes of the more northeasterly point. The axes order of a bbox follows the axes order of geometries.

Show children

Show children

Coordinate
number
bottomRight
union
Show children

Show children

Point
object
optional
Show children

Show children

coordinates
list<Coordinate>
optional

GeoJSon fundamental geometry construct.

A position is an array of numbers. There MUST be two or more elements. The first two elements are longitude and latitude, precisely in that order and using decimal numbers. Altitude or elevation MAY be included as an optional third element.

Implementations SHOULD NOT extend positions beyond three elements because the semantics of extra elements are unspecified and ambiguous. Historically, some implementations have used a fourth element to carry a linear referencing measure (sometimes denoted as "M") or a numerical timestamp, but in most situations a parser will not be able to properly interpret these values. The interpretation and meaning of additional elements is beyond the scope of this specification, and additional elements MAY be ignored by parsers.

Show children

Show children

Coordinate
number
bbox
list<Coordinate>
optional

A GeoJSON object MAY have a member named "bbox" to include information on the coordinate range for its Geometries, Features, or FeatureCollections. The value of the bbox member MUST be an array of length 2*n where n is the number of dimensions represented in the contained geometries, with all axes of the most southwesterly point followed by all axes of the more northeasterly point. The axes order of a bbox follows the axes order of geometries.

Show children

Show children

Coordinate
number
and
object
optional

Returns objects where every query is satisfied.

Show children

Show children

value
list<SearchJsonQueryV2>
optional
Show children

Show children

SearchJsonQueryV2
union
isNull
object
optional

Returns objects based on the existence of the specified field.

Show children

Show children

field
string

The name of the property in the API. To find the API name for your property, use the Get object type endpoint or check the Ontology Manager.

value
boolean
containsAllTermsInOrderPrefixLastTerm
object
optional

Returns objects where the specified field contains all of the terms in the order provided, but they do have to be adjacent to each other. The last term can be a partial prefix match.

Show children

Show children

field
string

The name of the property in the API. To find the API name for your property, use the Get object type endpoint or check the Ontology Manager.

value
string
containsAnyTerm
object
optional

Returns objects where the specified field contains any of the whitespace separated words in any order in the provided value. This query supports fuzzy matching.

Show children

Show children

field
string

The name of the property in the API. To find the API name for your property, use the Get object type endpoint or check the Ontology Manager.

value
string
fuzzy
boolean
optional

Setting fuzzy to true allows approximate matching in search queries that support it.

gte
object
optional

Returns objects where the specified field is greater than or equal to a value.

Show children

Show children

field
string

The name of the property in the API. To find the API name for your property, use the Get object type endpoint or check the Ontology Manager.

value
any

Represents the value of a property in the following format.

TypeJSON encodingExample
Arrayarray["alpha", "bravo", "charlie"]
AttachmentJSON encoded AttachmentProperty object{"rid":"ri.blobster.main.attachment.2f944bae-5851-4204-8615-920c969a9f2e"}
Booleanbooleantrue
Bytenumber31
DateISO 8601 extended local date string"2021-05-01"
Decimalstring"2.718281828"
Doublenumber3.14159265
Floatnumber3.14159265
GeoPointgeojson{"type":"Point","coordinates":[102.0,0.5]}
GeoShapegeojson{"type":"LineString","coordinates":[[102.0,0.0],[103.0,1.0],[104.0,0.0],[105.0,1.0]]}
Integernumber238940
Longstring"58319870951433"
Shortnumber8739
Stringstring"Call me Ishmael"
TimestampISO 8601 extended offset date-time string in UTC zone"2021-01-04T05:00:00Z"

Note that for backwards compatibility, the Boolean, Byte, Double, Float, Integer, and Short types can also be encoded as JSON strings.

containsAllTermsInOrder
object
optional

Returns objects where the specified field contains all of the terms in the order provided, but they do have to be adjacent to each other.

Show children

Show children

field
string

The name of the property in the API. To find the API name for your property, use the Get object type endpoint or check the Ontology Manager.

value
string
withinPolygon
object
optional

Returns objects where the specified field contains a point within the polygon provided.

Show children

Show children

field
string

The name of the property in the API. To find the API name for your property, use the Get object type endpoint or check the Ontology Manager.

value
union
Show children

Show children

Polygon
object
optional
Show children

Show children

coordinates
list<LinearRing>
optional
Show children

Show children

LinearRing
list<Position>

A linear ring is a closed LineString with four or more positions.

The first and last positions are equivalent, and they MUST contain identical values; their representation SHOULD also be identical.

A linear ring is the boundary of a surface or the boundary of a hole in a surface.

A linear ring MUST follow the right-hand rule with respect to the area it bounds, i.e., exterior rings are counterclockwise, and holes are clockwise.

Show children

Show children

Position
list<Coordinate>

GeoJSon fundamental geometry construct.

A position is an array of numbers. There MUST be two or more elements. The first two elements are longitude and latitude, precisely in that order and using decimal numbers. Altitude or elevation MAY be included as an optional third element.

Implementations SHOULD NOT extend positions beyond three elements because the semantics of extra elements are unspecified and ambiguous. Historically, some implementations have used a fourth element to carry a linear referencing measure (sometimes denoted as "M") or a numerical timestamp, but in most situations a parser will not be able to properly interpret these values. The interpretation and meaning of additional elements is beyond the scope of this specification, and additional elements MAY be ignored by parsers.

Show children

Show children

Coordinate
number
bbox
list<Coordinate>
optional

A GeoJSON object MAY have a member named "bbox" to include information on the coordinate range for its Geometries, Features, or FeatureCollections. The value of the bbox member MUST be an array of length 2*n where n is the number of dimensions represented in the contained geometries, with all axes of the most southwesterly point followed by all axes of the more northeasterly point. The axes order of a bbox follows the axes order of geometries.

Show children

Show children

Coordinate
number
intersectsPolygon
object
optional

Returns objects where the specified field intersects the polygon provided.

Show children

Show children

field
string

The name of the property in the API. To find the API name for your property, use the Get object type endpoint or check the Ontology Manager.

value
union
Show children

Show children

Polygon
object
optional
Show children

Show children

coordinates
list<LinearRing>
optional
Show children

Show children

LinearRing
list<Position>

A linear ring is a closed LineString with four or more positions.

The first and last positions are equivalent, and they MUST contain identical values; their representation SHOULD also be identical.

A linear ring is the boundary of a surface or the boundary of a hole in a surface.

A linear ring MUST follow the right-hand rule with respect to the area it bounds, i.e., exterior rings are counterclockwise, and holes are clockwise.

Show children

Show children

Position
list<Coordinate>

GeoJSon fundamental geometry construct.

A position is an array of numbers. There MUST be two or more elements. The first two elements are longitude and latitude, precisely in that order and using decimal numbers. Altitude or elevation MAY be included as an optional third element.

Implementations SHOULD NOT extend positions beyond three elements because the semantics of extra elements are unspecified and ambiguous. Historically, some implementations have used a fourth element to carry a linear referencing measure (sometimes denoted as "M") or a numerical timestamp, but in most situations a parser will not be able to properly interpret these values. The interpretation and meaning of additional elements is beyond the scope of this specification, and additional elements MAY be ignored by parsers.

Show children

Show children

Coordinate
number
bbox
list<Coordinate>
optional

A GeoJSON object MAY have a member named "bbox" to include information on the coordinate range for its Geometries, Features, or FeatureCollections. The value of the bbox member MUST be an array of length 2*n where n is the number of dimensions represented in the contained geometries, with all axes of the most southwesterly point followed by all axes of the more northeasterly point. The axes order of a bbox follows the axes order of geometries.

Show children

Show children

Coordinate
number
lte
object
optional

Returns objects where the specified field is less than or equal to a value.

Show children

Show children

field
string

The name of the property in the API. To find the API name for your property, use the Get object type endpoint or check the Ontology Manager.

value
any

Represents the value of a property in the following format.

TypeJSON encodingExample
Arrayarray["alpha", "bravo", "charlie"]
AttachmentJSON encoded AttachmentProperty object{"rid":"ri.blobster.main.attachment.2f944bae-5851-4204-8615-920c969a9f2e"}
Booleanbooleantrue
Bytenumber31
DateISO 8601 extended local date string"2021-05-01"
Decimalstring"2.718281828"
Doublenumber3.14159265
Floatnumber3.14159265
GeoPointgeojson{"type":"Point","coordinates":[102.0,0.5]}
GeoShapegeojson{"type":"LineString","coordinates":[[102.0,0.0],[103.0,1.0],[104.0,0.0],[105.0,1.0]]}
Integernumber238940
Longstring"58319870951433"
Shortnumber8739
Stringstring"Call me Ishmael"
TimestampISO 8601 extended offset date-time string in UTC zone"2021-01-04T05:00:00Z"

Note that for backwards compatibility, the Boolean, Byte, Double, Float, Integer, and Short types can also be encoded as JSON strings.

startsWith
object
optional

Returns objects where the specified field starts with the provided value.

Show children

Show children

field
string

The name of the property in the API. To find the API name for your property, use the Get object type endpoint or check the Ontology Manager.

value
string
isNull
object
optional

Returns objects based on the existence of the specified field.

Show children

Show children

field
string

The name of the property in the API. To find the API name for your property, use the Get object type endpoint or check the Ontology Manager.

value
boolean
containsAllTermsInOrderPrefixLastTerm
object
optional

Returns objects where the specified field contains all of the terms in the order provided, but they do have to be adjacent to each other. The last term can be a partial prefix match.

Show children

Show children

field
string

The name of the property in the API. To find the API name for your property, use the Get object type endpoint or check the Ontology Manager.

value
string
containsAnyTerm
object
optional

Returns objects where the specified field contains any of the whitespace separated words in any order in the provided value. This query supports fuzzy matching.

Show children

Show children

field
string

The name of the property in the API. To find the API name for your property, use the Get object type endpoint or check the Ontology Manager.

value
string
fuzzy
boolean
optional

Setting fuzzy to true allows approximate matching in search queries that support it.

gte
object
optional

Returns objects where the specified field is greater than or equal to a value.

Show children

Show children

field
string

The name of the property in the API. To find the API name for your property, use the Get object type endpoint or check the Ontology Manager.

value
any

Represents the value of a property in the following format.

TypeJSON encodingExample
Arrayarray["alpha", "bravo", "charlie"]
AttachmentJSON encoded AttachmentProperty object{"rid":"ri.blobster.main.attachment.2f944bae-5851-4204-8615-920c969a9f2e"}
Booleanbooleantrue
Bytenumber31
DateISO 8601 extended local date string"2021-05-01"
Decimalstring"2.718281828"
Doublenumber3.14159265
Floatnumber3.14159265
GeoPointgeojson{"type":"Point","coordinates":[102.0,0.5]}
GeoShapegeojson{"type":"LineString","coordinates":[[102.0,0.0],[103.0,1.0],[104.0,0.0],[105.0,1.0]]}
Integernumber238940
Longstring"58319870951433"
Shortnumber8739
Stringstring"Call me Ishmael"
TimestampISO 8601 extended offset date-time string in UTC zone"2021-01-04T05:00:00Z"

Note that for backwards compatibility, the Boolean, Byte, Double, Float, Integer, and Short types can also be encoded as JSON strings.

containsAllTermsInOrder
object
optional

Returns objects where the specified field contains all of the terms in the order provided, but they do have to be adjacent to each other.

Show children

Show children

field
string

The name of the property in the API. To find the API name for your property, use the Get object type endpoint or check the Ontology Manager.

value
string
withinPolygon
object
optional

Returns objects where the specified field contains a point within the polygon provided.

Show children

Show children

field
string

The name of the property in the API. To find the API name for your property, use the Get object type endpoint or check the Ontology Manager.

value
union
Show children

Show children

Polygon
object
optional
Show children

Show children

coordinates
list<LinearRing>
optional
Show children

Show children

LinearRing
list<Position>

A linear ring is a closed LineString with four or more positions.

The first and last positions are equivalent, and they MUST contain identical values; their representation SHOULD also be identical.

A linear ring is the boundary of a surface or the boundary of a hole in a surface.

A linear ring MUST follow the right-hand rule with respect to the area it bounds, i.e., exterior rings are counterclockwise, and holes are clockwise.

Show children

Show children

Position
list<Coordinate>

GeoJSon fundamental geometry construct.

A position is an array of numbers. There MUST be two or more elements. The first two elements are longitude and latitude, precisely in that order and using decimal numbers. Altitude or elevation MAY be included as an optional third element.

Implementations SHOULD NOT extend positions beyond three elements because the semantics of extra elements are unspecified and ambiguous. Historically, some implementations have used a fourth element to carry a linear referencing measure (sometimes denoted as "M") or a numerical timestamp, but in most situations a parser will not be able to properly interpret these values. The interpretation and meaning of additional elements is beyond the scope of this specification, and additional elements MAY be ignored by parsers.

Show children

Show children

Coordinate
number
bbox
list<Coordinate>
optional

A GeoJSON object MAY have a member named "bbox" to include information on the coordinate range for its Geometries, Features, or FeatureCollections. The value of the bbox member MUST be an array of length 2*n where n is the number of dimensions represented in the contained geometries, with all axes of the most southwesterly point followed by all axes of the more northeasterly point. The axes order of a bbox follows the axes order of geometries.

Show children

Show children

Coordinate
number
intersectsPolygon
object
optional

Returns objects where the specified field intersects the polygon provided.

Show children

Show children

field
string

The name of the property in the API. To find the API name for your property, use the Get object type endpoint or check the Ontology Manager.

value
union
Show children

Show children

Polygon
object
optional
Show children

Show children

coordinates
list<LinearRing>
optional
Show children

Show children

LinearRing
list<Position>

A linear ring is a closed LineString with four or more positions.

The first and last positions are equivalent, and they MUST contain identical values; their representation SHOULD also be identical.

A linear ring is the boundary of a surface or the boundary of a hole in a surface.

A linear ring MUST follow the right-hand rule with respect to the area it bounds, i.e., exterior rings are counterclockwise, and holes are clockwise.

Show children

Show children

Position
list<Coordinate>

GeoJSon fundamental geometry construct.

A position is an array of numbers. There MUST be two or more elements. The first two elements are longitude and latitude, precisely in that order and using decimal numbers. Altitude or elevation MAY be included as an optional third element.

Implementations SHOULD NOT extend positions beyond three elements because the semantics of extra elements are unspecified and ambiguous. Historically, some implementations have used a fourth element to carry a linear referencing measure (sometimes denoted as "M") or a numerical timestamp, but in most situations a parser will not be able to properly interpret these values. The interpretation and meaning of additional elements is beyond the scope of this specification, and additional elements MAY be ignored by parsers.

Show children

Show children

Coordinate
number
bbox
list<Coordinate>
optional

A GeoJSON object MAY have a member named "bbox" to include information on the coordinate range for its Geometries, Features, or FeatureCollections. The value of the bbox member MUST be an array of length 2*n where n is the number of dimensions represented in the contained geometries, with all axes of the most southwesterly point followed by all axes of the more northeasterly point. The axes order of a bbox follows the axes order of geometries.

Show children

Show children

Coordinate
number
lte
object
optional

Returns objects where the specified field is less than or equal to a value.

Show children

Show children

field
string

The name of the property in the API. To find the API name for your property, use the Get object type endpoint or check the Ontology Manager.

value
any

Represents the value of a property in the following format.

TypeJSON encodingExample
Arrayarray["alpha", "bravo", "charlie"]
AttachmentJSON encoded AttachmentProperty object{"rid":"ri.blobster.main.attachment.2f944bae-5851-4204-8615-920c969a9f2e"}
Booleanbooleantrue
Bytenumber31
DateISO 8601 extended local date string"2021-05-01"
Decimalstring"2.718281828"
Doublenumber3.14159265
Floatnumber3.14159265
GeoPointgeojson{"type":"Point","coordinates":[102.0,0.5]}
GeoShapegeojson{"type":"LineString","coordinates":[[102.0,0.0],[103.0,1.0],[104.0,0.0],[105.0,1.0]]}
Integernumber238940
Longstring"58319870951433"
Shortnumber8739
Stringstring"Call me Ishmael"
TimestampISO 8601 extended offset date-time string in UTC zone"2021-01-04T05:00:00Z"

Note that for backwards compatibility, the Boolean, Byte, Double, Float, Integer, and Short types can also be encoded as JSON strings.

startsWith
object
optional

Returns objects where the specified field starts with the provided value.

Show children

Show children

field
string

The name of the property in the API. To find the API name for your property, use the Get object type endpoint or check the Ontology Manager.

value
string
searchAround
object
optional
Show children

Show children

objectSet
union

Represents the definition of an ObjectSet in the Ontology.

link
string

The name of the link type in the API. To find the API name for your Link Type, check the Ontology Manager application.

static
object
optional
Show children

Show children

objects
list<ObjectRid>
optional
Show children

Show children

ObjectRid
string

The unique resource identifier of an object, useful for interacting with other Foundry APIs.

intersect
object
optional
Show children

Show children

objectSets
list<ObjectSet>
optional
Show children

Show children

ObjectSet
union

Represents the definition of an ObjectSet in the Ontology.

subtract
object
optional
Show children

Show children

objectSets
list<ObjectSet>
optional
Show children

Show children

ObjectSet
union

Represents the definition of an ObjectSet in the Ontology.

union
object
optional
Show children

Show children

objectSets
list<ObjectSet>
optional
Show children

Show children

ObjectSet
union

Represents the definition of an ObjectSet in the Ontology.

base
object
optional
Show children

Show children

objectType
string
subtract
object
optional
Show children

Show children

objectSets
list<ObjectSet>
optional
Show children

Show children

ObjectSet
union

Represents the definition of an ObjectSet in the Ontology.

Show children

Show children

reference
object
optional
Show children

Show children

reference
string
filter
object
optional
Show children

Show children

objectSet
union

Represents the definition of an ObjectSet in the Ontology.

where
union
Show children

Show children

or
object
optional

Returns objects where at least 1 query is satisfied.

Show children

Show children

value
list<SearchJsonQueryV2>
optional
Show children

Show children

SearchJsonQueryV2
union
Show children

Show children

or
object
optional

Returns objects where at least 1 query is satisfied.

Show children

Show children

value
list<SearchJsonQueryV2>
optional
Show children

Show children

SearchJsonQueryV2
union
in
object
optional

Returns objects where the specified field equals any of the provided values.

Show children

Show children

field
string

The name of the property in the API. To find the API name for your property, use the Get object type endpoint or check the Ontology Manager.

value
list<PropertyValue>
optional
Show children

Show children

PropertyValue
any

Represents the value of a property in the following format.

TypeJSON encodingExample
Arrayarray["alpha", "bravo", "charlie"]
AttachmentJSON encoded AttachmentProperty object{"rid":"ri.blobster.main.attachment.2f944bae-5851-4204-8615-920c969a9f2e"}
Booleanbooleantrue
Bytenumber31
DateISO 8601 extended local date string"2021-05-01"
Decimalstring"2.718281828"
Doublenumber3.14159265
Floatnumber3.14159265
GeoPointgeojson{"type":"Point","coordinates":[102.0,0.5]}
GeoShapegeojson{"type":"LineString","coordinates":[[102.0,0.0],[103.0,1.0],[104.0,0.0],[105.0,1.0]]}
Integernumber238940
Longstring"58319870951433"
Shortnumber8739
Stringstring"Call me Ishmael"
TimestampISO 8601 extended offset date-time string in UTC zone"2021-01-04T05:00:00Z"

Note that for backwards compatibility, the Boolean, Byte, Double, Float, Integer, and Short types can also be encoded as JSON strings.

doesNotIntersectPolygon
object
optional

Returns objects where the specified field does not intersect the polygon provided.

Show children

Show children

field
string

The name of the property in the API. To find the API name for your property, use the Get object type endpoint or check the Ontology Manager.

value
union
Show children

Show children

Polygon
object
optional
Show children

Show children

coordinates
list<LinearRing>
optional
Show children

Show children

LinearRing
list<Position>

A linear ring is a closed LineString with four or more positions.

The first and last positions are equivalent, and they MUST contain identical values; their representation SHOULD also be identical.

A linear ring is the boundary of a surface or the boundary of a hole in a surface.

A linear ring MUST follow the right-hand rule with respect to the area it bounds, i.e., exterior rings are counterclockwise, and holes are clockwise.

Show children

Show children

Position
list<Coordinate>

GeoJSon fundamental geometry construct.

A position is an array of numbers. There MUST be two or more elements. The first two elements are longitude and latitude, precisely in that order and using decimal numbers. Altitude or elevation MAY be included as an optional third element.

Implementations SHOULD NOT extend positions beyond three elements because the semantics of extra elements are unspecified and ambiguous. Historically, some implementations have used a fourth element to carry a linear referencing measure (sometimes denoted as "M") or a numerical timestamp, but in most situations a parser will not be able to properly interpret these values. The interpretation and meaning of additional elements is beyond the scope of this specification, and additional elements MAY be ignored by parsers.

Show children

Show children

Coordinate
number
bbox
list<Coordinate>
optional

A GeoJSON object MAY have a member named "bbox" to include information on the coordinate range for its Geometries, Features, or FeatureCollections. The value of the bbox member MUST be an array of length 2*n where n is the number of dimensions represented in the contained geometries, with all axes of the most southwesterly point followed by all axes of the more northeasterly point. The axes order of a bbox follows the axes order of geometries.

Show children

Show children

Coordinate
number
lt
object
optional

Returns objects where the specified field is less than a value.

Show children

Show children

field
string

The name of the property in the API. To find the API name for your property, use the Get object type endpoint or check the Ontology Manager.

value
any

Represents the value of a property in the following format.

TypeJSON encodingExample
Arrayarray["alpha", "bravo", "charlie"]
AttachmentJSON encoded AttachmentProperty object{"rid":"ri.blobster.main.attachment.2f944bae-5851-4204-8615-920c969a9f2e"}
Booleanbooleantrue
Bytenumber31
DateISO 8601 extended local date string"2021-05-01"
Decimalstring"2.718281828"
Doublenumber3.14159265
Floatnumber3.14159265
GeoPointgeojson{"type":"Point","coordinates":[102.0,0.5]}
GeoShapegeojson{"type":"LineString","coordinates":[[102.0,0.0],[103.0,1.0],[104.0,0.0],[105.0,1.0]]}
Integernumber238940
Longstring"58319870951433"
Shortnumber8739
Stringstring"Call me Ishmael"
TimestampISO 8601 extended offset date-time string in UTC zone"2021-01-04T05:00:00Z"

Note that for backwards compatibility, the Boolean, Byte, Double, Float, Integer, and Short types can also be encoded as JSON strings.

doesNotIntersectBoundingBox
object
optional

Returns objects where the specified field does not intersect the bounding box provided.

Show children

Show children

field
string

The name of the property in the API. To find the API name for your property, use the Get object type endpoint or check the Ontology Manager.

value
object

The top left and bottom right coordinate points that make up the bounding box.

Show children

Show children

topLeft
union
Show children

Show children

Point
object
optional
Show children

Show children

coordinates
list<Coordinate>
optional

GeoJSon fundamental geometry construct.

A position is an array of numbers. There MUST be two or more elements. The first two elements are longitude and latitude, precisely in that order and using decimal numbers. Altitude or elevation MAY be included as an optional third element.

Implementations SHOULD NOT extend positions beyond three elements because the semantics of extra elements are unspecified and ambiguous. Historically, some implementations have used a fourth element to carry a linear referencing measure (sometimes denoted as "M") or a numerical timestamp, but in most situations a parser will not be able to properly interpret these values. The interpretation and meaning of additional elements is beyond the scope of this specification, and additional elements MAY be ignored by parsers.

Show children

Show children

Coordinate
number
bbox
list<Coordinate>
optional

A GeoJSON object MAY have a member named "bbox" to include information on the coordinate range for its Geometries, Features, or FeatureCollections. The value of the bbox member MUST be an array of length 2*n where n is the number of dimensions represented in the contained geometries, with all axes of the most southwesterly point followed by all axes of the more northeasterly point. The axes order of a bbox follows the axes order of geometries.

Show children

Show children

Coordinate
number
bottomRight
union
Show children

Show children

Point
object
optional
Show children

Show children

coordinates
list<Coordinate>
optional

GeoJSon fundamental geometry construct.

A position is an array of numbers. There MUST be two or more elements. The first two elements are longitude and latitude, precisely in that order and using decimal numbers. Altitude or elevation MAY be included as an optional third element.

Implementations SHOULD NOT extend positions beyond three elements because the semantics of extra elements are unspecified and ambiguous. Historically, some implementations have used a fourth element to carry a linear referencing measure (sometimes denoted as "M") or a numerical timestamp, but in most situations a parser will not be able to properly interpret these values. The interpretation and meaning of additional elements is beyond the scope of this specification, and additional elements MAY be ignored by parsers.

Show children

Show children

Coordinate
number
bbox
list<Coordinate>
optional

A GeoJSON object MAY have a member named "bbox" to include information on the coordinate range for its Geometries, Features, or FeatureCollections. The value of the bbox member MUST be an array of length 2*n where n is the number of dimensions represented in the contained geometries, with all axes of the most southwesterly point followed by all axes of the more northeasterly point. The axes order of a bbox follows the axes order of geometries.

Show children

Show children

Coordinate
number
eq
object
optional

Returns objects where the specified field is equal to a value.

Show children

Show children

field
string

The name of the property in the API. To find the API name for your property, use the Get object type endpoint or check the Ontology Manager.

value
any

Represents the value of a property in the following format.

TypeJSON encodingExample
Arrayarray["alpha", "bravo", "charlie"]
AttachmentJSON encoded AttachmentProperty object{"rid":"ri.blobster.main.attachment.2f944bae-5851-4204-8615-920c969a9f2e"}
Booleanbooleantrue
Bytenumber31
DateISO 8601 extended local date string"2021-05-01"
Decimalstring"2.718281828"
Doublenumber3.14159265
Floatnumber3.14159265
GeoPointgeojson{"type":"Point","coordinates":[102.0,0.5]}
GeoShapegeojson{"type":"LineString","coordinates":[[102.0,0.0],[103.0,1.0],[104.0,0.0],[105.0,1.0]]}
Integernumber238940
Longstring"58319870951433"
Shortnumber8739
Stringstring"Call me Ishmael"
TimestampISO 8601 extended offset date-time string in UTC zone"2021-01-04T05:00:00Z"

Note that for backwards compatibility, the Boolean, Byte, Double, Float, Integer, and Short types can also be encoded as JSON strings.

containsAllTerms
object
optional

Returns objects where the specified field contains all of the whitespace separated words in any order in the provided value. This query supports fuzzy matching.

Show children

Show children

field
string

The name of the property in the API. To find the API name for your property, use the Get object type endpoint or check the Ontology Manager.

value
string
fuzzy
boolean
optional

Setting fuzzy to true allows approximate matching in search queries that support it.

gt
object
optional

Returns objects where the specified field is greater than a value.

Show children

Show children

field
string

The name of the property in the API. To find the API name for your property, use the Get object type endpoint or check the Ontology Manager.

value
any

Represents the value of a property in the following format.

TypeJSON encodingExample
Arrayarray["alpha", "bravo", "charlie"]
AttachmentJSON encoded AttachmentProperty object{"rid":"ri.blobster.main.attachment.2f944bae-5851-4204-8615-920c969a9f2e"}
Booleanbooleantrue
Bytenumber31
DateISO 8601 extended local date string"2021-05-01"
Decimalstring"2.718281828"
Doublenumber3.14159265
Floatnumber3.14159265
GeoPointgeojson{"type":"Point","coordinates":[102.0,0.5]}
GeoShapegeojson{"type":"LineString","coordinates":[[102.0,0.0],[103.0,1.0],[104.0,0.0],[105.0,1.0]]}
Integernumber238940
Longstring"58319870951433"
Shortnumber8739
Stringstring"Call me Ishmael"
TimestampISO 8601 extended offset date-time string in UTC zone"2021-01-04T05:00:00Z"

Note that for backwards compatibility, the Boolean, Byte, Double, Float, Integer, and Short types can also be encoded as JSON strings.

withinDistanceOf
object
optional

Returns objects where the specified field contains a point within the distance provided of the center point.

Show children

Show children

field
string

The name of the property in the API. To find the API name for your property, use the Get object type endpoint or check the Ontology Manager.

value
object

The coordinate point to use as the center of the distance query.

Show children

Show children

center
union
Show children

Show children

Point
object
optional
Show children

Show children

coordinates
list<Coordinate>
optional

GeoJSon fundamental geometry construct.

A position is an array of numbers. There MUST be two or more elements. The first two elements are longitude and latitude, precisely in that order and using decimal numbers. Altitude or elevation MAY be included as an optional third element.

Implementations SHOULD NOT extend positions beyond three elements because the semantics of extra elements are unspecified and ambiguous. Historically, some implementations have used a fourth element to carry a linear referencing measure (sometimes denoted as "M") or a numerical timestamp, but in most situations a parser will not be able to properly interpret these values. The interpretation and meaning of additional elements is beyond the scope of this specification, and additional elements MAY be ignored by parsers.

Show children

Show children

Coordinate
number
bbox
list<Coordinate>
optional

A GeoJSON object MAY have a member named "bbox" to include information on the coordinate range for its Geometries, Features, or FeatureCollections. The value of the bbox member MUST be an array of length 2*n where n is the number of dimensions represented in the contained geometries, with all axes of the most southwesterly point followed by all axes of the more northeasterly point. The axes order of a bbox follows the axes order of geometries.

Show children

Show children

Coordinate
number
distance
object

A measurement of distance.

Show children

Show children

value
number
unit
string (enum)

Enum values: MILLIMETERS, CENTIMETERS, METERS, KILOMETERS, INCHES, FEET, YARDS, MILES, NAUTICAL_MILES

withinBoundingBox
object
optional

Returns objects where the specified field contains a point within the bounding box provided.

Show children

Show children

field
string

The name of the property in the API. To find the API name for your property, use the Get object type endpoint or check the Ontology Manager.

value
object

The top left and bottom right coordinate points that make up the bounding box.

Show children

Show children

topLeft
union
Show children

Show children

Point
object
optional
Show children

Show children

coordinates
list<Coordinate>
optional

GeoJSon fundamental geometry construct.

A position is an array of numbers. There MUST be two or more elements. The first two elements are longitude and latitude, precisely in that order and using decimal numbers. Altitude or elevation MAY be included as an optional third element.

Implementations SHOULD NOT extend positions beyond three elements because the semantics of extra elements are unspecified and ambiguous. Historically, some implementations have used a fourth element to carry a linear referencing measure (sometimes denoted as "M") or a numerical timestamp, but in most situations a parser will not be able to properly interpret these values. The interpretation and meaning of additional elements is beyond the scope of this specification, and additional elements MAY be ignored by parsers.

Show children

Show children

Coordinate
number
bbox
list<Coordinate>
optional

A GeoJSON object MAY have a member named "bbox" to include information on the coordinate range for its Geometries, Features, or FeatureCollections. The value of the bbox member MUST be an array of length 2*n where n is the number of dimensions represented in the contained geometries, with all axes of the most southwesterly point followed by all axes of the more northeasterly point. The axes order of a bbox follows the axes order of geometries.

Show children

Show children

Coordinate
number
bottomRight
union
Show children

Show children

Point
object
optional
Show children

Show children

coordinates
list<Coordinate>
optional

GeoJSon fundamental geometry construct.

A position is an array of numbers. There MUST be two or more elements. The first two elements are longitude and latitude, precisely in that order and using decimal numbers. Altitude or elevation MAY be included as an optional third element.

Implementations SHOULD NOT extend positions beyond three elements because the semantics of extra elements are unspecified and ambiguous. Historically, some implementations have used a fourth element to carry a linear referencing measure (sometimes denoted as "M") or a numerical timestamp, but in most situations a parser will not be able to properly interpret these values. The interpretation and meaning of additional elements is beyond the scope of this specification, and additional elements MAY be ignored by parsers.

Show children

Show children

Coordinate
number
bbox
list<Coordinate>
optional

A GeoJSON object MAY have a member named "bbox" to include information on the coordinate range for its Geometries, Features, or FeatureCollections. The value of the bbox member MUST be an array of length 2*n where n is the number of dimensions represented in the contained geometries, with all axes of the most southwesterly point followed by all axes of the more northeasterly point. The axes order of a bbox follows the axes order of geometries.

Show children

Show children

Coordinate
number
contains
object
optional

Returns objects where the specified array contains a value.

Show children

Show children

field
string

The name of the property in the API. To find the API name for your property, use the Get object type endpoint or check the Ontology Manager.

value
any

Represents the value of a property in the following format.

TypeJSON encodingExample
Arrayarray["alpha", "bravo", "charlie"]
AttachmentJSON encoded AttachmentProperty object{"rid":"ri.blobster.main.attachment.2f944bae-5851-4204-8615-920c969a9f2e"}
Booleanbooleantrue
Bytenumber31
DateISO 8601 extended local date string"2021-05-01"
Decimalstring"2.718281828"
Doublenumber3.14159265
Floatnumber3.14159265
GeoPointgeojson{"type":"Point","coordinates":[102.0,0.5]}
GeoShapegeojson{"type":"LineString","coordinates":[[102.0,0.0],[103.0,1.0],[104.0,0.0],[105.0,1.0]]}
Integernumber238940
Longstring"58319870951433"
Shortnumber8739
Stringstring"Call me Ishmael"
TimestampISO 8601 extended offset date-time string in UTC zone"2021-01-04T05:00:00Z"

Note that for backwards compatibility, the Boolean, Byte, Double, Float, Integer, and Short types can also be encoded as JSON strings.

not
object
optional

Returns objects where the query is not satisfied.

Show children

Show children

value
union
intersectsBoundingBox
object
optional

Returns objects where the specified field intersects the bounding box provided.

Show children

Show children

field
string

The name of the property in the API. To find the API name for your property, use the Get object type endpoint or check the Ontology Manager.

value
object

The top left and bottom right coordinate points that make up the bounding box.

Show children

Show children

topLeft
union
Show children

Show children

Point
object
optional
Show children

Show children

coordinates
list<Coordinate>
optional

GeoJSon fundamental geometry construct.

A position is an array of numbers. There MUST be two or more elements. The first two elements are longitude and latitude, precisely in that order and using decimal numbers. Altitude or elevation MAY be included as an optional third element.

Implementations SHOULD NOT extend positions beyond three elements because the semantics of extra elements are unspecified and ambiguous. Historically, some implementations have used a fourth element to carry a linear referencing measure (sometimes denoted as "M") or a numerical timestamp, but in most situations a parser will not be able to properly interpret these values. The interpretation and meaning of additional elements is beyond the scope of this specification, and additional elements MAY be ignored by parsers.

Show children

Show children

Coordinate
number
bbox
list<Coordinate>
optional

A GeoJSON object MAY have a member named "bbox" to include information on the coordinate range for its Geometries, Features, or FeatureCollections. The value of the bbox member MUST be an array of length 2*n where n is the number of dimensions represented in the contained geometries, with all axes of the most southwesterly point followed by all axes of the more northeasterly point. The axes order of a bbox follows the axes order of geometries.

Show children

Show children

Coordinate
number
bottomRight
union
Show children

Show children

Point
object
optional
Show children

Show children

coordinates
list<Coordinate>
optional

GeoJSon fundamental geometry construct.

A position is an array of numbers. There MUST be two or more elements. The first two elements are longitude and latitude, precisely in that order and using decimal numbers. Altitude or elevation MAY be included as an optional third element.

Implementations SHOULD NOT extend positions beyond three elements because the semantics of extra elements are unspecified and ambiguous. Historically, some implementations have used a fourth element to carry a linear referencing measure (sometimes denoted as "M") or a numerical timestamp, but in most situations a parser will not be able to properly interpret these values. The interpretation and meaning of additional elements is beyond the scope of this specification, and additional elements MAY be ignored by parsers.

Show children

Show children

Coordinate
number
bbox
list<Coordinate>
optional

A GeoJSON object MAY have a member named "bbox" to include information on the coordinate range for its Geometries, Features, or FeatureCollections. The value of the bbox member MUST be an array of length 2*n where n is the number of dimensions represented in the contained geometries, with all axes of the most southwesterly point followed by all axes of the more northeasterly point. The axes order of a bbox follows the axes order of geometries.

Show children

Show children

Coordinate
number
and
object
optional

Returns objects where every query is satisfied.

Show children

Show children

value
list<SearchJsonQueryV2>
optional
Show children

Show children

SearchJsonQueryV2
union
isNull
object
optional

Returns objects based on the existence of the specified field.

Show children

Show children

field
string

The name of the property in the API. To find the API name for your property, use the Get object type endpoint or check the Ontology Manager.

value
boolean
containsAllTermsInOrderPrefixLastTerm
object
optional

Returns objects where the specified field contains all of the terms in the order provided, but they do have to be adjacent to each other. The last term can be a partial prefix match.

Show children

Show children

field
string

The name of the property in the API. To find the API name for your property, use the Get object type endpoint or check the Ontology Manager.

value
string
containsAnyTerm
object
optional

Returns objects where the specified field contains any of the whitespace separated words in any order in the provided value. This query supports fuzzy matching.

Show children

Show children

field
string

The name of the property in the API. To find the API name for your property, use the Get object type endpoint or check the Ontology Manager.

value
string
fuzzy
boolean
optional

Setting fuzzy to true allows approximate matching in search queries that support it.

gte
object
optional

Returns objects where the specified field is greater than or equal to a value.

Show children

Show children

field
string

The name of the property in the API. To find the API name for your property, use the Get object type endpoint or check the Ontology Manager.

value
any

Represents the value of a property in the following format.

TypeJSON encodingExample
Arrayarray["alpha", "bravo", "charlie"]
AttachmentJSON encoded AttachmentProperty object{"rid":"ri.blobster.main.attachment.2f944bae-5851-4204-8615-920c969a9f2e"}
Booleanbooleantrue
Bytenumber31
DateISO 8601 extended local date string"2021-05-01"
Decimalstring"2.718281828"
Doublenumber3.14159265
Floatnumber3.14159265
GeoPointgeojson{"type":"Point","coordinates":[102.0,0.5]}
GeoShapegeojson{"type":"LineString","coordinates":[[102.0,0.0],[103.0,1.0],[104.0,0.0],[105.0,1.0]]}
Integernumber238940
Longstring"58319870951433"
Shortnumber8739
Stringstring"Call me Ishmael"
TimestampISO 8601 extended offset date-time string in UTC zone"2021-01-04T05:00:00Z"

Note that for backwards compatibility, the Boolean, Byte, Double, Float, Integer, and Short types can also be encoded as JSON strings.

containsAllTermsInOrder
object
optional

Returns objects where the specified field contains all of the terms in the order provided, but they do have to be adjacent to each other.

Show children

Show children

field
string

The name of the property in the API. To find the API name for your property, use the Get object type endpoint or check the Ontology Manager.

value
string
withinPolygon
object
optional

Returns objects where the specified field contains a point within the polygon provided.

Show children

Show children

field
string

The name of the property in the API. To find the API name for your property, use the Get object type endpoint or check the Ontology Manager.

value
union
Show children

Show children

Polygon
object
optional
Show children

Show children

coordinates
list<LinearRing>
optional
Show children

Show children

LinearRing
list<Position>

A linear ring is a closed LineString with four or more positions.

The first and last positions are equivalent, and they MUST contain identical values; their representation SHOULD also be identical.

A linear ring is the boundary of a surface or the boundary of a hole in a surface.

A linear ring MUST follow the right-hand rule with respect to the area it bounds, i.e., exterior rings are counterclockwise, and holes are clockwise.

Show children

Show children

Position
list<Coordinate>

GeoJSon fundamental geometry construct.

A position is an array of numbers. There MUST be two or more elements. The first two elements are longitude and latitude, precisely in that order and using decimal numbers. Altitude or elevation MAY be included as an optional third element.

Implementations SHOULD NOT extend positions beyond three elements because the semantics of extra elements are unspecified and ambiguous. Historically, some implementations have used a fourth element to carry a linear referencing measure (sometimes denoted as "M") or a numerical timestamp, but in most situations a parser will not be able to properly interpret these values. The interpretation and meaning of additional elements is beyond the scope of this specification, and additional elements MAY be ignored by parsers.

Show children

Show children

Coordinate
number
bbox
list<Coordinate>
optional

A GeoJSON object MAY have a member named "bbox" to include information on the coordinate range for its Geometries, Features, or FeatureCollections. The value of the bbox member MUST be an array of length 2*n where n is the number of dimensions represented in the contained geometries, with all axes of the most southwesterly point followed by all axes of the more northeasterly point. The axes order of a bbox follows the axes order of geometries.

Show children

Show children

Coordinate
number
intersectsPolygon
object
optional

Returns objects where the specified field intersects the polygon provided.

Show children

Show children

field
string

The name of the property in the API. To find the API name for your property, use the Get object type endpoint or check the Ontology Manager.

value
union
Show children

Show children

Polygon
object
optional
Show children

Show children

coordinates
list<LinearRing>
optional
Show children

Show children

LinearRing
list<Position>

A linear ring is a closed LineString with four or more positions.

The first and last positions are equivalent, and they MUST contain identical values; their representation SHOULD also be identical.

A linear ring is the boundary of a surface or the boundary of a hole in a surface.

A linear ring MUST follow the right-hand rule with respect to the area it bounds, i.e., exterior rings are counterclockwise, and holes are clockwise.

Show children

Show children

Position
list<Coordinate>

GeoJSon fundamental geometry construct.

A position is an array of numbers. There MUST be two or more elements. The first two elements are longitude and latitude, precisely in that order and using decimal numbers. Altitude or elevation MAY be included as an optional third element.

Implementations SHOULD NOT extend positions beyond three elements because the semantics of extra elements are unspecified and ambiguous. Historically, some implementations have used a fourth element to carry a linear referencing measure (sometimes denoted as "M") or a numerical timestamp, but in most situations a parser will not be able to properly interpret these values. The interpretation and meaning of additional elements is beyond the scope of this specification, and additional elements MAY be ignored by parsers.

Show children

Show children

Coordinate
number
bbox
list<Coordinate>
optional

A GeoJSON object MAY have a member named "bbox" to include information on the coordinate range for its Geometries, Features, or FeatureCollections. The value of the bbox member MUST be an array of length 2*n where n is the number of dimensions represented in the contained geometries, with all axes of the most southwesterly point followed by all axes of the more northeasterly point. The axes order of a bbox follows the axes order of geometries.

Show children

Show children

Coordinate
number
lte
object
optional

Returns objects where the specified field is less than or equal to a value.

Show children

Show children

field
string

The name of the property in the API. To find the API name for your property, use the Get object type endpoint or check the Ontology Manager.

value
any

Represents the value of a property in the following format.

TypeJSON encodingExample
Arrayarray["alpha", "bravo", "charlie"]
AttachmentJSON encoded AttachmentProperty object{"rid":"ri.blobster.main.attachment.2f944bae-5851-4204-8615-920c969a9f2e"}
Booleanbooleantrue
Bytenumber31
DateISO 8601 extended local date string"2021-05-01"
Decimalstring"2.718281828"
Doublenumber3.14159265
Floatnumber3.14159265
GeoPointgeojson{"type":"Point","coordinates":[102.0,0.5]}
GeoShapegeojson{"type":"LineString","coordinates":[[102.0,0.0],[103.0,1.0],[104.0,0.0],[105.0,1.0]]}
Integernumber238940
Longstring"58319870951433"
Shortnumber8739
Stringstring"Call me Ishmael"
TimestampISO 8601 extended offset date-time string in UTC zone"2021-01-04T05:00:00Z"

Note that for backwards compatibility, the Boolean, Byte, Double, Float, Integer, and Short types can also be encoded as JSON strings.

startsWith
object
optional

Returns objects where the specified field starts with the provided value.

Show children

Show children

field
string

The name of the property in the API. To find the API name for your property, use the Get object type endpoint or check the Ontology Manager.

value
string
in
object
optional

Returns objects where the specified field equals any of the provided values.

Show children

Show children

field
string

The name of the property in the API. To find the API name for your property, use the Get object type endpoint or check the Ontology Manager.

value
list<PropertyValue>
optional
Show children

Show children

PropertyValue
any

Represents the value of a property in the following format.

TypeJSON encodingExample
Arrayarray["alpha", "bravo", "charlie"]
AttachmentJSON encoded AttachmentProperty object{"rid":"ri.blobster.main.attachment.2f944bae-5851-4204-8615-920c969a9f2e"}
Booleanbooleantrue
Bytenumber31
DateISO 8601 extended local date string"2021-05-01"
Decimalstring"2.718281828"
Doublenumber3.14159265
Floatnumber3.14159265
GeoPointgeojson{"type":"Point","coordinates":[102.0,0.5]}
GeoShapegeojson{"type":"LineString","coordinates":[[102.0,0.0],[103.0,1.0],[104.0,0.0],[105.0,1.0]]}
Integernumber238940
Longstring"58319870951433"
Shortnumber8739
Stringstring"Call me Ishmael"
TimestampISO 8601 extended offset date-time string in UTC zone"2021-01-04T05:00:00Z"

Note that for backwards compatibility, the Boolean, Byte, Double, Float, Integer, and Short types can also be encoded as JSON strings.

doesNotIntersectPolygon
object
optional

Returns objects where the specified field does not intersect the polygon provided.

Show children

Show children

field
string

The name of the property in the API. To find the API name for your property, use the Get object type endpoint or check the Ontology Manager.

value
union
Show children

Show children

Polygon
object
optional
Show children

Show children

coordinates
list<LinearRing>
optional
Show children

Show children

LinearRing
list<Position>

A linear ring is a closed LineString with four or more positions.

The first and last positions are equivalent, and they MUST contain identical values; their representation SHOULD also be identical.

A linear ring is the boundary of a surface or the boundary of a hole in a surface.

A linear ring MUST follow the right-hand rule with respect to the area it bounds, i.e., exterior rings are counterclockwise, and holes are clockwise.

Show children

Show children

Position
list<Coordinate>

GeoJSon fundamental geometry construct.

A position is an array of numbers. There MUST be two or more elements. The first two elements are longitude and latitude, precisely in that order and using decimal numbers. Altitude or elevation MAY be included as an optional third element.

Implementations SHOULD NOT extend positions beyond three elements because the semantics of extra elements are unspecified and ambiguous. Historically, some implementations have used a fourth element to carry a linear referencing measure (sometimes denoted as "M") or a numerical timestamp, but in most situations a parser will not be able to properly interpret these values. The interpretation and meaning of additional elements is beyond the scope of this specification, and additional elements MAY be ignored by parsers.

Show children

Show children

Coordinate
number
bbox
list<Coordinate>
optional

A GeoJSON object MAY have a member named "bbox" to include information on the coordinate range for its Geometries, Features, or FeatureCollections. The value of the bbox member MUST be an array of length 2*n where n is the number of dimensions represented in the contained geometries, with all axes of the most southwesterly point followed by all axes of the more northeasterly point. The axes order of a bbox follows the axes order of geometries.

Show children

Show children

Coordinate
number
lt
object
optional

Returns objects where the specified field is less than a value.

Show children

Show children

field
string

The name of the property in the API. To find the API name for your property, use the Get object type endpoint or check the Ontology Manager.

value
any

Represents the value of a property in the following format.

TypeJSON encodingExample
Arrayarray["alpha", "bravo", "charlie"]
AttachmentJSON encoded AttachmentProperty object{"rid":"ri.blobster.main.attachment.2f944bae-5851-4204-8615-920c969a9f2e"}
Booleanbooleantrue
Bytenumber31
DateISO 8601 extended local date string"2021-05-01"
Decimalstring"2.718281828"
Doublenumber3.14159265
Floatnumber3.14159265
GeoPointgeojson{"type":"Point","coordinates":[102.0,0.5]}
GeoShapegeojson{"type":"LineString","coordinates":[[102.0,0.0],[103.0,1.0],[104.0,0.0],[105.0,1.0]]}
Integernumber238940
Longstring"58319870951433"
Shortnumber8739
Stringstring"Call me Ishmael"
TimestampISO 8601 extended offset date-time string in UTC zone"2021-01-04T05:00:00Z"

Note that for backwards compatibility, the Boolean, Byte, Double, Float, Integer, and Short types can also be encoded as JSON strings.

doesNotIntersectBoundingBox
object
optional

Returns objects where the specified field does not intersect the bounding box provided.

Show children

Show children

field
string

The name of the property in the API. To find the API name for your property, use the Get object type endpoint or check the Ontology Manager.

value
object

The top left and bottom right coordinate points that make up the bounding box.

Show children

Show children

topLeft
union
Show children

Show children

Point
object
optional
Show children

Show children

coordinates
list<Coordinate>
optional

GeoJSon fundamental geometry construct.

A position is an array of numbers. There MUST be two or more elements. The first two elements are longitude and latitude, precisely in that order and using decimal numbers. Altitude or elevation MAY be included as an optional third element.

Implementations SHOULD NOT extend positions beyond three elements because the semantics of extra elements are unspecified and ambiguous. Historically, some implementations have used a fourth element to carry a linear referencing measure (sometimes denoted as "M") or a numerical timestamp, but in most situations a parser will not be able to properly interpret these values. The interpretation and meaning of additional elements is beyond the scope of this specification, and additional elements MAY be ignored by parsers.

Show children

Show children

Coordinate
number
bbox
list<Coordinate>
optional

A GeoJSON object MAY have a member named "bbox" to include information on the coordinate range for its Geometries, Features, or FeatureCollections. The value of the bbox member MUST be an array of length 2*n where n is the number of dimensions represented in the contained geometries, with all axes of the most southwesterly point followed by all axes of the more northeasterly point. The axes order of a bbox follows the axes order of geometries.

Show children

Show children

Coordinate
number
bottomRight
union
Show children

Show children

Point
object
optional
Show children

Show children

coordinates
list<Coordinate>
optional

GeoJSon fundamental geometry construct.

A position is an array of numbers. There MUST be two or more elements. The first two elements are longitude and latitude, precisely in that order and using decimal numbers. Altitude or elevation MAY be included as an optional third element.

Implementations SHOULD NOT extend positions beyond three elements because the semantics of extra elements are unspecified and ambiguous. Historically, some implementations have used a fourth element to carry a linear referencing measure (sometimes denoted as "M") or a numerical timestamp, but in most situations a parser will not be able to properly interpret these values. The interpretation and meaning of additional elements is beyond the scope of this specification, and additional elements MAY be ignored by parsers.

Show children

Show children

Coordinate
number
bbox
list<Coordinate>
optional

A GeoJSON object MAY have a member named "bbox" to include information on the coordinate range for its Geometries, Features, or FeatureCollections. The value of the bbox member MUST be an array of length 2*n where n is the number of dimensions represented in the contained geometries, with all axes of the most southwesterly point followed by all axes of the more northeasterly point. The axes order of a bbox follows the axes order of geometries.

Show children

Show children

Coordinate
number
eq
object
optional

Returns objects where the specified field is equal to a value.

Show children

Show children

field
string

The name of the property in the API. To find the API name for your property, use the Get object type endpoint or check the Ontology Manager.

value
any

Represents the value of a property in the following format.

TypeJSON encodingExample
Arrayarray["alpha", "bravo", "charlie"]
AttachmentJSON encoded AttachmentProperty object{"rid":"ri.blobster.main.attachment.2f944bae-5851-4204-8615-920c969a9f2e"}
Booleanbooleantrue
Bytenumber31
DateISO 8601 extended local date string"2021-05-01"
Decimalstring"2.718281828"
Doublenumber3.14159265
Floatnumber3.14159265
GeoPointgeojson{"type":"Point","coordinates":[102.0,0.5]}
GeoShapegeojson{"type":"LineString","coordinates":[[102.0,0.0],[103.0,1.0],[104.0,0.0],[105.0,1.0]]}
Integernumber238940
Longstring"58319870951433"
Shortnumber8739
Stringstring"Call me Ishmael"
TimestampISO 8601 extended offset date-time string in UTC zone"2021-01-04T05:00:00Z"

Note that for backwards compatibility, the Boolean, Byte, Double, Float, Integer, and Short types can also be encoded as JSON strings.

containsAllTerms
object
optional

Returns objects where the specified field contains all of the whitespace separated words in any order in the provided value. This query supports fuzzy matching.

Show children

Show children

field
string

The name of the property in the API. To find the API name for your property, use the Get object type endpoint or check the Ontology Manager.

value
string
fuzzy
boolean
optional

Setting fuzzy to true allows approximate matching in search queries that support it.

gt
object
optional

Returns objects where the specified field is greater than a value.

Show children

Show children

field
string

The name of the property in the API. To find the API name for your property, use the Get object type endpoint or check the Ontology Manager.

value
any

Represents the value of a property in the following format.

TypeJSON encodingExample
Arrayarray["alpha", "bravo", "charlie"]
AttachmentJSON encoded AttachmentProperty object{"rid":"ri.blobster.main.attachment.2f944bae-5851-4204-8615-920c969a9f2e"}
Booleanbooleantrue
Bytenumber31
DateISO 8601 extended local date string"2021-05-01"
Decimalstring"2.718281828"
Doublenumber3.14159265
Floatnumber3.14159265
GeoPointgeojson{"type":"Point","coordinates":[102.0,0.5]}
GeoShapegeojson{"type":"LineString","coordinates":[[102.0,0.0],[103.0,1.0],[104.0,0.0],[105.0,1.0]]}
Integernumber238940
Longstring"58319870951433"
Shortnumber8739
Stringstring"Call me Ishmael"
TimestampISO 8601 extended offset date-time string in UTC zone"2021-01-04T05:00:00Z"

Note that for backwards compatibility, the Boolean, Byte, Double, Float, Integer, and Short types can also be encoded as JSON strings.

withinDistanceOf
object
optional

Returns objects where the specified field contains a point within the distance provided of the center point.

Show children

Show children

field
string

The name of the property in the API. To find the API name for your property, use the Get object type endpoint or check the Ontology Manager.

value
object

The coordinate point to use as the center of the distance query.

Show children

Show children

center
union
Show children

Show children

Point
object
optional
Show children

Show children

coordinates
list<Coordinate>
optional

GeoJSon fundamental geometry construct.

A position is an array of numbers. There MUST be two or more elements. The first two elements are longitude and latitude, precisely in that order and using decimal numbers. Altitude or elevation MAY be included as an optional third element.

Implementations SHOULD NOT extend positions beyond three elements because the semantics of extra elements are unspecified and ambiguous. Historically, some implementations have used a fourth element to carry a linear referencing measure (sometimes denoted as "M") or a numerical timestamp, but in most situations a parser will not be able to properly interpret these values. The interpretation and meaning of additional elements is beyond the scope of this specification, and additional elements MAY be ignored by parsers.

Show children

Show children

Coordinate
number
bbox
list<Coordinate>
optional

A GeoJSON object MAY have a member named "bbox" to include information on the coordinate range for its Geometries, Features, or FeatureCollections. The value of the bbox member MUST be an array of length 2*n where n is the number of dimensions represented in the contained geometries, with all axes of the most southwesterly point followed by all axes of the more northeasterly point. The axes order of a bbox follows the axes order of geometries.

Show children

Show children

Coordinate
number
distance
object

A measurement of distance.

Show children

Show children

value
number
unit
string (enum)

Enum values: MILLIMETERS, CENTIMETERS, METERS, KILOMETERS, INCHES, FEET, YARDS, MILES, NAUTICAL_MILES

withinBoundingBox
object
optional

Returns objects where the specified field contains a point within the bounding box provided.

Show children

Show children

field
string

The name of the property in the API. To find the API name for your property, use the Get object type endpoint or check the Ontology Manager.

value
object

The top left and bottom right coordinate points that make up the bounding box.

Show children

Show children

topLeft
union
Show children

Show children

Point
object
optional
Show children

Show children

coordinates
list<Coordinate>
optional

GeoJSon fundamental geometry construct.

A position is an array of numbers. There MUST be two or more elements. The first two elements are longitude and latitude, precisely in that order and using decimal numbers. Altitude or elevation MAY be included as an optional third element.

Implementations SHOULD NOT extend positions beyond three elements because the semantics of extra elements are unspecified and ambiguous. Historically, some implementations have used a fourth element to carry a linear referencing measure (sometimes denoted as "M") or a numerical timestamp, but in most situations a parser will not be able to properly interpret these values. The interpretation and meaning of additional elements is beyond the scope of this specification, and additional elements MAY be ignored by parsers.

Show children

Show children

Coordinate
number
bbox
list<Coordinate>
optional

A GeoJSON object MAY have a member named "bbox" to include information on the coordinate range for its Geometries, Features, or FeatureCollections. The value of the bbox member MUST be an array of length 2*n where n is the number of dimensions represented in the contained geometries, with all axes of the most southwesterly point followed by all axes of the more northeasterly point. The axes order of a bbox follows the axes order of geometries.

Show children

Show children

Coordinate
number
bottomRight
union
Show children

Show children

Point
object
optional
Show children

Show children

coordinates
list<Coordinate>
optional

GeoJSon fundamental geometry construct.

A position is an array of numbers. There MUST be two or more elements. The first two elements are longitude and latitude, precisely in that order and using decimal numbers. Altitude or elevation MAY be included as an optional third element.

Implementations SHOULD NOT extend positions beyond three elements because the semantics of extra elements are unspecified and ambiguous. Historically, some implementations have used a fourth element to carry a linear referencing measure (sometimes denoted as "M") or a numerical timestamp, but in most situations a parser will not be able to properly interpret these values. The interpretation and meaning of additional elements is beyond the scope of this specification, and additional elements MAY be ignored by parsers.

Show children

Show children

Coordinate
number
bbox
list<Coordinate>
optional

A GeoJSON object MAY have a member named "bbox" to include information on the coordinate range for its Geometries, Features, or FeatureCollections. The value of the bbox member MUST be an array of length 2*n where n is the number of dimensions represented in the contained geometries, with all axes of the most southwesterly point followed by all axes of the more northeasterly point. The axes order of a bbox follows the axes order of geometries.

Show children

Show children

Coordinate
number
contains
object
optional

Returns objects where the specified array contains a value.

Show children

Show children

field
string

The name of the property in the API. To find the API name for your property, use the Get object type endpoint or check the Ontology Manager.

value
any

Represents the value of a property in the following format.

TypeJSON encodingExample
Arrayarray["alpha", "bravo", "charlie"]
AttachmentJSON encoded AttachmentProperty object{"rid":"ri.blobster.main.attachment.2f944bae-5851-4204-8615-920c969a9f2e"}
Booleanbooleantrue
Bytenumber31
DateISO 8601 extended local date string"2021-05-01"
Decimalstring"2.718281828"
Doublenumber3.14159265
Floatnumber3.14159265
GeoPointgeojson{"type":"Point","coordinates":[102.0,0.5]}
GeoShapegeojson{"type":"LineString","coordinates":[[102.0,0.0],[103.0,1.0],[104.0,0.0],[105.0,1.0]]}
Integernumber238940
Longstring"58319870951433"
Shortnumber8739
Stringstring"Call me Ishmael"
TimestampISO 8601 extended offset date-time string in UTC zone"2021-01-04T05:00:00Z"

Note that for backwards compatibility, the Boolean, Byte, Double, Float, Integer, and Short types can also be encoded as JSON strings.

not
object
optional

Returns objects where the query is not satisfied.

Show children

Show children

value
union
Show children

Show children

or
object
optional

Returns objects where at least 1 query is satisfied.

Show children

Show children

value
list<SearchJsonQueryV2>
optional
Show children

Show children

SearchJsonQueryV2
union
in
object
optional

Returns objects where the specified field equals any of the provided values.

Show children

Show children

field
string

The name of the property in the API. To find the API name for your property, use the Get object type endpoint or check the Ontology Manager.

value
list<PropertyValue>
optional
Show children

Show children

PropertyValue
any

Represents the value of a property in the following format.

TypeJSON encodingExample
Arrayarray["alpha", "bravo", "charlie"]
AttachmentJSON encoded AttachmentProperty object{"rid":"ri.blobster.main.attachment.2f944bae-5851-4204-8615-920c969a9f2e"}
Booleanbooleantrue
Bytenumber31
DateISO 8601 extended local date string"2021-05-01"
Decimalstring"2.718281828"
Doublenumber3.14159265
Floatnumber3.14159265
GeoPointgeojson{"type":"Point","coordinates":[102.0,0.5]}
GeoShapegeojson{"type":"LineString","coordinates":[[102.0,0.0],[103.0,1.0],[104.0,0.0],[105.0,1.0]]}
Integernumber238940
Longstring"58319870951433"
Shortnumber8739
Stringstring"Call me Ishmael"
TimestampISO 8601 extended offset date-time string in UTC zone"2021-01-04T05:00:00Z"

Note that for backwards compatibility, the Boolean, Byte, Double, Float, Integer, and Short types can also be encoded as JSON strings.

doesNotIntersectPolygon
object
optional

Returns objects where the specified field does not intersect the polygon provided.

Show children

Show children

field
string

The name of the property in the API. To find the API name for your property, use the Get object type endpoint or check the Ontology Manager.

value
union
Show children

Show children

Polygon
object
optional
Show children

Show children

coordinates
list<LinearRing>
optional
Show children

Show children

LinearRing
list<Position>

A linear ring is a closed LineString with four or more positions.

The first and last positions are equivalent, and they MUST contain identical values; their representation SHOULD also be identical.

A linear ring is the boundary of a surface or the boundary of a hole in a surface.

A linear ring MUST follow the right-hand rule with respect to the area it bounds, i.e., exterior rings are counterclockwise, and holes are clockwise.

Show children

Show children

Position
list<Coordinate>

GeoJSon fundamental geometry construct.

A position is an array of numbers. There MUST be two or more elements. The first two elements are longitude and latitude, precisely in that order and using decimal numbers. Altitude or elevation MAY be included as an optional third element.

Implementations SHOULD NOT extend positions beyond three elements because the semantics of extra elements are unspecified and ambiguous. Historically, some implementations have used a fourth element to carry a linear referencing measure (sometimes denoted as "M") or a numerical timestamp, but in most situations a parser will not be able to properly interpret these values. The interpretation and meaning of additional elements is beyond the scope of this specification, and additional elements MAY be ignored by parsers.

Show children

Show children

Coordinate
number
bbox
list<Coordinate>
optional

A GeoJSON object MAY have a member named "bbox" to include information on the coordinate range for its Geometries, Features, or FeatureCollections. The value of the bbox member MUST be an array of length 2*n where n is the number of dimensions represented in the contained geometries, with all axes of the most southwesterly point followed by all axes of the more northeasterly point. The axes order of a bbox follows the axes order of geometries.

Show children

Show children

Coordinate
number
lt
object
optional

Returns objects where the specified field is less than a value.

Show children

Show children

field
string

The name of the property in the API. To find the API name for your property, use the Get object type endpoint or check the Ontology Manager.

value
any

Represents the value of a property in the following format.

TypeJSON encodingExample
Arrayarray["alpha", "bravo", "charlie"]
AttachmentJSON encoded AttachmentProperty object{"rid":"ri.blobster.main.attachment.2f944bae-5851-4204-8615-920c969a9f2e"}
Booleanbooleantrue
Bytenumber31
DateISO 8601 extended local date string"2021-05-01"
Decimalstring"2.718281828"
Doublenumber3.14159265
Floatnumber3.14159265
GeoPointgeojson{"type":"Point","coordinates":[102.0,0.5]}
GeoShapegeojson{"type":"LineString","coordinates":[[102.0,0.0],[103.0,1.0],[104.0,0.0],[105.0,1.0]]}
Integernumber238940
Longstring"58319870951433"
Shortnumber8739
Stringstring"Call me Ishmael"
TimestampISO 8601 extended offset date-time string in UTC zone"2021-01-04T05:00:00Z"

Note that for backwards compatibility, the Boolean, Byte, Double, Float, Integer, and Short types can also be encoded as JSON strings.

doesNotIntersectBoundingBox
object
optional

Returns objects where the specified field does not intersect the bounding box provided.

Show children

Show children

field
string

The name of the property in the API. To find the API name for your property, use the Get object type endpoint or check the Ontology Manager.

value
object

The top left and bottom right coordinate points that make up the bounding box.

Show children

Show children

topLeft
union
Show children

Show children

Point
object
optional
Show children

Show children

coordinates
list<Coordinate>
optional

GeoJSon fundamental geometry construct.

A position is an array of numbers. There MUST be two or more elements. The first two elements are longitude and latitude, precisely in that order and using decimal numbers. Altitude or elevation MAY be included as an optional third element.

Implementations SHOULD NOT extend positions beyond three elements because the semantics of extra elements are unspecified and ambiguous. Historically, some implementations have used a fourth element to carry a linear referencing measure (sometimes denoted as "M") or a numerical timestamp, but in most situations a parser will not be able to properly interpret these values. The interpretation and meaning of additional elements is beyond the scope of this specification, and additional elements MAY be ignored by parsers.

Show children

Show children

Coordinate
number
bbox
list<Coordinate>
optional

A GeoJSON object MAY have a member named "bbox" to include information on the coordinate range for its Geometries, Features, or FeatureCollections. The value of the bbox member MUST be an array of length 2*n where n is the number of dimensions represented in the contained geometries, with all axes of the most southwesterly point followed by all axes of the more northeasterly point. The axes order of a bbox follows the axes order of geometries.

Show children

Show children

Coordinate
number
bottomRight
union
Show children

Show children

Point
object
optional
Show children

Show children

coordinates
list<Coordinate>
optional

GeoJSon fundamental geometry construct.

A position is an array of numbers. There MUST be two or more elements. The first two elements are longitude and latitude, precisely in that order and using decimal numbers. Altitude or elevation MAY be included as an optional third element.

Implementations SHOULD NOT extend positions beyond three elements because the semantics of extra elements are unspecified and ambiguous. Historically, some implementations have used a fourth element to carry a linear referencing measure (sometimes denoted as "M") or a numerical timestamp, but in most situations a parser will not be able to properly interpret these values. The interpretation and meaning of additional elements is beyond the scope of this specification, and additional elements MAY be ignored by parsers.

Show children

Show children

Coordinate
number
bbox
list<Coordinate>
optional

A GeoJSON object MAY have a member named "bbox" to include information on the coordinate range for its Geometries, Features, or FeatureCollections. The value of the bbox member MUST be an array of length 2*n where n is the number of dimensions represented in the contained geometries, with all axes of the most southwesterly point followed by all axes of the more northeasterly point. The axes order of a bbox follows the axes order of geometries.

Show children

Show children

Coordinate
number
eq
object
optional

Returns objects where the specified field is equal to a value.

Show children

Show children

field
string

The name of the property in the API. To find the API name for your property, use the Get object type endpoint or check the Ontology Manager.

value
any

Represents the value of a property in the following format.

TypeJSON encodingExample
Arrayarray["alpha", "bravo", "charlie"]
AttachmentJSON encoded AttachmentProperty object{"rid":"ri.blobster.main.attachment.2f944bae-5851-4204-8615-920c969a9f2e"}
Booleanbooleantrue
Bytenumber31
DateISO 8601 extended local date string"2021-05-01"
Decimalstring"2.718281828"
Doublenumber3.14159265
Floatnumber3.14159265
GeoPointgeojson{"type":"Point","coordinates":[102.0,0.5]}
GeoShapegeojson{"type":"LineString","coordinates":[[102.0,0.0],[103.0,1.0],[104.0,0.0],[105.0,1.0]]}
Integernumber238940
Longstring"58319870951433"
Shortnumber8739
Stringstring"Call me Ishmael"
TimestampISO 8601 extended offset date-time string in UTC zone"2021-01-04T05:00:00Z"

Note that for backwards compatibility, the Boolean, Byte, Double, Float, Integer, and Short types can also be encoded as JSON strings.

containsAllTerms
object
optional

Returns objects where the specified field contains all of the whitespace separated words in any order in the provided value. This query supports fuzzy matching.

Show children

Show children

field
string

The name of the property in the API. To find the API name for your property, use the Get object type endpoint or check the Ontology Manager.

value
string
fuzzy
boolean
optional

Setting fuzzy to true allows approximate matching in search queries that support it.

gt
object
optional

Returns objects where the specified field is greater than a value.

Show children

Show children

field
string

The name of the property in the API. To find the API name for your property, use the Get object type endpoint or check the Ontology Manager.

value
any

Represents the value of a property in the following format.

TypeJSON encodingExample
Arrayarray["alpha", "bravo", "charlie"]
AttachmentJSON encoded AttachmentProperty object{"rid":"ri.blobster.main.attachment.2f944bae-5851-4204-8615-920c969a9f2e"}
Booleanbooleantrue
Bytenumber31
DateISO 8601 extended local date string"2021-05-01"
Decimalstring"2.718281828"
Doublenumber3.14159265
Floatnumber3.14159265
GeoPointgeojson{"type":"Point","coordinates":[102.0,0.5]}
GeoShapegeojson{"type":"LineString","coordinates":[[102.0,0.0],[103.0,1.0],[104.0,0.0],[105.0,1.0]]}
Integernumber238940
Longstring"58319870951433"
Shortnumber8739
Stringstring"Call me Ishmael"
TimestampISO 8601 extended offset date-time string in UTC zone"2021-01-04T05:00:00Z"

Note that for backwards compatibility, the Boolean, Byte, Double, Float, Integer, and Short types can also be encoded as JSON strings.

withinDistanceOf
object
optional

Returns objects where the specified field contains a point within the distance provided of the center point.

Show children

Show children

field
string

The name of the property in the API. To find the API name for your property, use the Get object type endpoint or check the Ontology Manager.

value
object

The coordinate point to use as the center of the distance query.

Show children

Show children

center
union
Show children

Show children

Point
object
optional
Show children

Show children

coordinates
list<Coordinate>
optional

GeoJSon fundamental geometry construct.

A position is an array of numbers. There MUST be two or more elements. The first two elements are longitude and latitude, precisely in that order and using decimal numbers. Altitude or elevation MAY be included as an optional third element.

Implementations SHOULD NOT extend positions beyond three elements because the semantics of extra elements are unspecified and ambiguous. Historically, some implementations have used a fourth element to carry a linear referencing measure (sometimes denoted as "M") or a numerical timestamp, but in most situations a parser will not be able to properly interpret these values. The interpretation and meaning of additional elements is beyond the scope of this specification, and additional elements MAY be ignored by parsers.

Show children

Show children

Coordinate
number
bbox
list<Coordinate>
optional

A GeoJSON object MAY have a member named "bbox" to include information on the coordinate range for its Geometries, Features, or FeatureCollections. The value of the bbox member MUST be an array of length 2*n where n is the number of dimensions represented in the contained geometries, with all axes of the most southwesterly point followed by all axes of the more northeasterly point. The axes order of a bbox follows the axes order of geometries.

Show children

Show children

Coordinate
number
distance
object

A measurement of distance.

Show children

Show children

value
number
unit
string (enum)

Enum values: MILLIMETERS, CENTIMETERS, METERS, KILOMETERS, INCHES, FEET, YARDS, MILES, NAUTICAL_MILES

withinBoundingBox
object
optional

Returns objects where the specified field contains a point within the bounding box provided.

Show children

Show children

field
string

The name of the property in the API. To find the API name for your property, use the Get object type endpoint or check the Ontology Manager.

value
object

The top left and bottom right coordinate points that make up the bounding box.

Show children

Show children

topLeft
union
Show children

Show children

Point
object
optional
Show children

Show children

coordinates
list<Coordinate>
optional

GeoJSon fundamental geometry construct.

A position is an array of numbers. There MUST be two or more elements. The first two elements are longitude and latitude, precisely in that order and using decimal numbers. Altitude or elevation MAY be included as an optional third element.

Implementations SHOULD NOT extend positions beyond three elements because the semantics of extra elements are unspecified and ambiguous. Historically, some implementations have used a fourth element to carry a linear referencing measure (sometimes denoted as "M") or a numerical timestamp, but in most situations a parser will not be able to properly interpret these values. The interpretation and meaning of additional elements is beyond the scope of this specification, and additional elements MAY be ignored by parsers.

Show children

Show children

Coordinate
number
bbox
list<Coordinate>
optional

A GeoJSON object MAY have a member named "bbox" to include information on the coordinate range for its Geometries, Features, or FeatureCollections. The value of the bbox member MUST be an array of length 2*n where n is the number of dimensions represented in the contained geometries, with all axes of the most southwesterly point followed by all axes of the more northeasterly point. The axes order of a bbox follows the axes order of geometries.

Show children

Show children

Coordinate
number
bottomRight
union
Show children

Show children

Point
object
optional
Show children

Show children

coordinates
list<Coordinate>
optional

GeoJSon fundamental geometry construct.

A position is an array of numbers. There MUST be two or more elements. The first two elements are longitude and latitude, precisely in that order and using decimal numbers. Altitude or elevation MAY be included as an optional third element.

Implementations SHOULD NOT extend positions beyond three elements because the semantics of extra elements are unspecified and ambiguous. Historically, some implementations have used a fourth element to carry a linear referencing measure (sometimes denoted as "M") or a numerical timestamp, but in most situations a parser will not be able to properly interpret these values. The interpretation and meaning of additional elements is beyond the scope of this specification, and additional elements MAY be ignored by parsers.

Show children

Show children

Coordinate
number
bbox
list<Coordinate>
optional

A GeoJSON object MAY have a member named "bbox" to include information on the coordinate range for its Geometries, Features, or FeatureCollections. The value of the bbox member MUST be an array of length 2*n where n is the number of dimensions represented in the contained geometries, with all axes of the most southwesterly point followed by all axes of the more northeasterly point. The axes order of a bbox follows the axes order of geometries.

Show children

Show children

Coordinate
number
contains
object
optional

Returns objects where the specified array contains a value.

Show children

Show children

field
string

The name of the property in the API. To find the API name for your property, use the Get object type endpoint or check the Ontology Manager.

value
any

Represents the value of a property in the following format.

TypeJSON encodingExample
Arrayarray["alpha", "bravo", "charlie"]
AttachmentJSON encoded AttachmentProperty object{"rid":"ri.blobster.main.attachment.2f944bae-5851-4204-8615-920c969a9f2e"}
Booleanbooleantrue
Bytenumber31
DateISO 8601 extended local date string"2021-05-01"
Decimalstring"2.718281828"
Doublenumber3.14159265
Floatnumber3.14159265
GeoPointgeojson{"type":"Point","coordinates":[102.0,0.5]}
GeoShapegeojson{"type":"LineString","coordinates":[[102.0,0.0],[103.0,1.0],[104.0,0.0],[105.0,1.0]]}
Integernumber238940
Longstring"58319870951433"
Shortnumber8739
Stringstring"Call me Ishmael"
TimestampISO 8601 extended offset date-time string in UTC zone"2021-01-04T05:00:00Z"

Note that for backwards compatibility, the Boolean, Byte, Double, Float, Integer, and Short types can also be encoded as JSON strings.

not
object
optional

Returns objects where the query is not satisfied.

Show children

Show children

value
union
intersectsBoundingBox
object
optional

Returns objects where the specified field intersects the bounding box provided.

Show children

Show children

field
string

The name of the property in the API. To find the API name for your property, use the Get object type endpoint or check the Ontology Manager.

value
object

The top left and bottom right coordinate points that make up the bounding box.

Show children

Show children

topLeft
union
Show children

Show children

Point
object
optional
Show children

Show children

coordinates
list<Coordinate>
optional

GeoJSon fundamental geometry construct.

A position is an array of numbers. There MUST be two or more elements. The first two elements are longitude and latitude, precisely in that order and using decimal numbers. Altitude or elevation MAY be included as an optional third element.

Implementations SHOULD NOT extend positions beyond three elements because the semantics of extra elements are unspecified and ambiguous. Historically, some implementations have used a fourth element to carry a linear referencing measure (sometimes denoted as "M") or a numerical timestamp, but in most situations a parser will not be able to properly interpret these values. The interpretation and meaning of additional elements is beyond the scope of this specification, and additional elements MAY be ignored by parsers.

Show children

Show children

Coordinate
number
bbox
list<Coordinate>
optional

A GeoJSON object MAY have a member named "bbox" to include information on the coordinate range for its Geometries, Features, or FeatureCollections. The value of the bbox member MUST be an array of length 2*n where n is the number of dimensions represented in the contained geometries, with all axes of the most southwesterly point followed by all axes of the more northeasterly point. The axes order of a bbox follows the axes order of geometries.

Show children

Show children

Coordinate
number
bottomRight
union
Show children

Show children

Point
object
optional
Show children

Show children

coordinates
list<Coordinate>
optional

GeoJSon fundamental geometry construct.

A position is an array of numbers. There MUST be two or more elements. The first two elements are longitude and latitude, precisely in that order and using decimal numbers. Altitude or elevation MAY be included as an optional third element.

Implementations SHOULD NOT extend positions beyond three elements because the semantics of extra elements are unspecified and ambiguous. Historically, some implementations have used a fourth element to carry a linear referencing measure (sometimes denoted as "M") or a numerical timestamp, but in most situations a parser will not be able to properly interpret these values. The interpretation and meaning of additional elements is beyond the scope of this specification, and additional elements MAY be ignored by parsers.

Show children

Show children

Coordinate
number
bbox
list<Coordinate>
optional

A GeoJSON object MAY have a member named "bbox" to include information on the coordinate range for its Geometries, Features, or FeatureCollections. The value of the bbox member MUST be an array of length 2*n where n is the number of dimensions represented in the contained geometries, with all axes of the most southwesterly point followed by all axes of the more northeasterly point. The axes order of a bbox follows the axes order of geometries.

Show children

Show children

Coordinate
number
and
object
optional

Returns objects where every query is satisfied.

Show children

Show children

value
list<SearchJsonQueryV2>
optional
Show children

Show children

SearchJsonQueryV2
union
isNull
object
optional

Returns objects based on the existence of the specified field.

Show children

Show children

field
string

The name of the property in the API. To find the API name for your property, use the Get object type endpoint or check the Ontology Manager.

value
boolean
containsAllTermsInOrderPrefixLastTerm
object
optional

Returns objects where the specified field contains all of the terms in the order provided, but they do have to be adjacent to each other. The last term can be a partial prefix match.

Show children

Show children

field
string

The name of the property in the API. To find the API name for your property, use the Get object type endpoint or check the Ontology Manager.

value
string
containsAnyTerm
object
optional

Returns objects where the specified field contains any of the whitespace separated words in any order in the provided value. This query supports fuzzy matching.

Show children

Show children

field
string

The name of the property in the API. To find the API name for your property, use the Get object type endpoint or check the Ontology Manager.

value
string
fuzzy
boolean
optional

Setting fuzzy to true allows approximate matching in search queries that support it.

gte
object
optional

Returns objects where the specified field is greater than or equal to a value.

Show children

Show children

field
string

The name of the property in the API. To find the API name for your property, use the Get object type endpoint or check the Ontology Manager.

value
any

Represents the value of a property in the following format.

TypeJSON encodingExample
Arrayarray["alpha", "bravo", "charlie"]
AttachmentJSON encoded AttachmentProperty object{"rid":"ri.blobster.main.attachment.2f944bae-5851-4204-8615-920c969a9f2e"}
Booleanbooleantrue
Bytenumber31
DateISO 8601 extended local date string"2021-05-01"
Decimalstring"2.718281828"
Doublenumber3.14159265
Floatnumber3.14159265
GeoPointgeojson{"type":"Point","coordinates":[102.0,0.5]}
GeoShapegeojson{"type":"LineString","coordinates":[[102.0,0.0],[103.0,1.0],[104.0,0.0],[105.0,1.0]]}
Integernumber238940
Longstring"58319870951433"
Shortnumber8739
Stringstring"Call me Ishmael"
TimestampISO 8601 extended offset date-time string in UTC zone"2021-01-04T05:00:00Z"

Note that for backwards compatibility, the Boolean, Byte, Double, Float, Integer, and Short types can also be encoded as JSON strings.

containsAllTermsInOrder
object
optional

Returns objects where the specified field contains all of the terms in the order provided, but they do have to be adjacent to each other.

Show children

Show children

field
string

The name of the property in the API. To find the API name for your property, use the Get object type endpoint or check the Ontology Manager.

value
string
withinPolygon
object
optional

Returns objects where the specified field contains a point within the polygon provided.

Show children

Show children

field
string

The name of the property in the API. To find the API name for your property, use the Get object type endpoint or check the Ontology Manager.

value
union
Show children

Show children

Polygon
object
optional
Show children

Show children

coordinates
list<LinearRing>
optional
Show children

Show children

LinearRing
list<Position>

A linear ring is a closed LineString with four or more positions.

The first and last positions are equivalent, and they MUST contain identical values; their representation SHOULD also be identical.

A linear ring is the boundary of a surface or the boundary of a hole in a surface.

A linear ring MUST follow the right-hand rule with respect to the area it bounds, i.e., exterior rings are counterclockwise, and holes are clockwise.

Show children

Show children

Position
list<Coordinate>

GeoJSon fundamental geometry construct.

A position is an array of numbers. There MUST be two or more elements. The first two elements are longitude and latitude, precisely in that order and using decimal numbers. Altitude or elevation MAY be included as an optional third element.

Implementations SHOULD NOT extend positions beyond three elements because the semantics of extra elements are unspecified and ambiguous. Historically, some implementations have used a fourth element to carry a linear referencing measure (sometimes denoted as "M") or a numerical timestamp, but in most situations a parser will not be able to properly interpret these values. The interpretation and meaning of additional elements is beyond the scope of this specification, and additional elements MAY be ignored by parsers.

Show children

Show children

Coordinate
number
bbox
list<Coordinate>
optional

A GeoJSON object MAY have a member named "bbox" to include information on the coordinate range for its Geometries, Features, or FeatureCollections. The value of the bbox member MUST be an array of length 2*n where n is the number of dimensions represented in the contained geometries, with all axes of the most southwesterly point followed by all axes of the more northeasterly point. The axes order of a bbox follows the axes order of geometries.

Show children

Show children

Coordinate
number
intersectsPolygon
object
optional

Returns objects where the specified field intersects the polygon provided.

Show children

Show children

field
string

The name of the property in the API. To find the API name for your property, use the Get object type endpoint or check the Ontology Manager.

value
union
Show children

Show children

Polygon
object
optional
Show children

Show children

coordinates
list<LinearRing>
optional
Show children

Show children

LinearRing
list<Position>

A linear ring is a closed LineString with four or more positions.

The first and last positions are equivalent, and they MUST contain identical values; their representation SHOULD also be identical.

A linear ring is the boundary of a surface or the boundary of a hole in a surface.

A linear ring MUST follow the right-hand rule with respect to the area it bounds, i.e., exterior rings are counterclockwise, and holes are clockwise.

Show children

Show children

Position
list<Coordinate>

GeoJSon fundamental geometry construct.

A position is an array of numbers. There MUST be two or more elements. The first two elements are longitude and latitude, precisely in that order and using decimal numbers. Altitude or elevation MAY be included as an optional third element.

Implementations SHOULD NOT extend positions beyond three elements because the semantics of extra elements are unspecified and ambiguous. Historically, some implementations have used a fourth element to carry a linear referencing measure (sometimes denoted as "M") or a numerical timestamp, but in most situations a parser will not be able to properly interpret these values. The interpretation and meaning of additional elements is beyond the scope of this specification, and additional elements MAY be ignored by parsers.

Show children

Show children

Coordinate
number
bbox
list<Coordinate>
optional

A GeoJSON object MAY have a member named "bbox" to include information on the coordinate range for its Geometries, Features, or FeatureCollections. The value of the bbox member MUST be an array of length 2*n where n is the number of dimensions represented in the contained geometries, with all axes of the most southwesterly point followed by all axes of the more northeasterly point. The axes order of a bbox follows the axes order of geometries.

Show children

Show children

Coordinate
number
lte
object
optional

Returns objects where the specified field is less than or equal to a value.

Show children

Show children

field
string

The name of the property in the API. To find the API name for your property, use the Get object type endpoint or check the Ontology Manager.

value
any

Represents the value of a property in the following format.

TypeJSON encodingExample
Arrayarray["alpha", "bravo", "charlie"]
AttachmentJSON encoded AttachmentProperty object{"rid":"ri.blobster.main.attachment.2f944bae-5851-4204-8615-920c969a9f2e"}
Booleanbooleantrue
Bytenumber31
DateISO 8601 extended local date string"2021-05-01"
Decimalstring"2.718281828"
Doublenumber3.14159265
Floatnumber3.14159265
GeoPointgeojson{"type":"Point","coordinates":[102.0,0.5]}
GeoShapegeojson{"type":"LineString","coordinates":[[102.0,0.0],[103.0,1.0],[104.0,0.0],[105.0,1.0]]}
Integernumber238940
Longstring"58319870951433"
Shortnumber8739
Stringstring"Call me Ishmael"
TimestampISO 8601 extended offset date-time string in UTC zone"2021-01-04T05:00:00Z"

Note that for backwards compatibility, the Boolean, Byte, Double, Float, Integer, and Short types can also be encoded as JSON strings.

startsWith
object
optional

Returns objects where the specified field starts with the provided value.

Show children

Show children

field
string

The name of the property in the API. To find the API name for your property, use the Get object type endpoint or check the Ontology Manager.

value
string
intersectsBoundingBox
object
optional

Returns objects where the specified field intersects the bounding box provided.

Show children

Show children

field
string

The name of the property in the API. To find the API name for your property, use the Get object type endpoint or check the Ontology Manager.

value
object

The top left and bottom right coordinate points that make up the bounding box.

Show children

Show children

topLeft
union
Show children

Show children

Point
object
optional
Show children

Show children

coordinates
list<Coordinate>
optional

GeoJSon fundamental geometry construct.

A position is an array of numbers. There MUST be two or more elements. The first two elements are longitude and latitude, precisely in that order and using decimal numbers. Altitude or elevation MAY be included as an optional third element.

Implementations SHOULD NOT extend positions beyond three elements because the semantics of extra elements are unspecified and ambiguous. Historically, some implementations have used a fourth element to carry a linear referencing measure (sometimes denoted as "M") or a numerical timestamp, but in most situations a parser will not be able to properly interpret these values. The interpretation and meaning of additional elements is beyond the scope of this specification, and additional elements MAY be ignored by parsers.

Show children

Show children

Coordinate
number
bbox
list<Coordinate>
optional

A GeoJSON object MAY have a member named "bbox" to include information on the coordinate range for its Geometries, Features, or FeatureCollections. The value of the bbox member MUST be an array of length 2*n where n is the number of dimensions represented in the contained geometries, with all axes of the most southwesterly point followed by all axes of the more northeasterly point. The axes order of a bbox follows the axes order of geometries.

Show children

Show children

Coordinate
number
bottomRight
union
Show children

Show children

Point
object
optional
Show children

Show children

coordinates
list<Coordinate>
optional

GeoJSon fundamental geometry construct.

A position is an array of numbers. There MUST be two or more elements. The first two elements are longitude and latitude, precisely in that order and using decimal numbers. Altitude or elevation MAY be included as an optional third element.

Implementations SHOULD NOT extend positions beyond three elements because the semantics of extra elements are unspecified and ambiguous. Historically, some implementations have used a fourth element to carry a linear referencing measure (sometimes denoted as "M") or a numerical timestamp, but in most situations a parser will not be able to properly interpret these values. The interpretation and meaning of additional elements is beyond the scope of this specification, and additional elements MAY be ignored by parsers.

Show children

Show children

Coordinate
number
bbox
list<Coordinate>
optional

A GeoJSON object MAY have a member named "bbox" to include information on the coordinate range for its Geometries, Features, or FeatureCollections. The value of the bbox member MUST be an array of length 2*n where n is the number of dimensions represented in the contained geometries, with all axes of the most southwesterly point followed by all axes of the more northeasterly point. The axes order of a bbox follows the axes order of geometries.

Show children

Show children

Coordinate
number
and
object
optional

Returns objects where every query is satisfied.

Show children

Show children

value
list<SearchJsonQueryV2>
optional
Show children

Show children

SearchJsonQueryV2
union
Show children

Show children

or
object
optional

Returns objects where at least 1 query is satisfied.

Show children

Show children

value
list<SearchJsonQueryV2>
optional
Show children

Show children

SearchJsonQueryV2
union
in
object
optional

Returns objects where the specified field equals any of the provided values.

Show children

Show children

field
string

The name of the property in the API. To find the API name for your property, use the Get object type endpoint or check the Ontology Manager.

value
list<PropertyValue>
optional
Show children

Show children

PropertyValue
any

Represents the value of a property in the following format.

TypeJSON encodingExample
Arrayarray["alpha", "bravo", "charlie"]
AttachmentJSON encoded AttachmentProperty object{"rid":"ri.blobster.main.attachment.2f944bae-5851-4204-8615-920c969a9f2e"}
Booleanbooleantrue
Bytenumber31
DateISO 8601 extended local date string"2021-05-01"
Decimalstring"2.718281828"
Doublenumber3.14159265
Floatnumber3.14159265
GeoPointgeojson{"type":"Point","coordinates":[102.0,0.5]}
GeoShapegeojson{"type":"LineString","coordinates":[[102.0,0.0],[103.0,1.0],[104.0,0.0],[105.0,1.0]]}
Integernumber238940
Longstring"58319870951433"
Shortnumber8739
Stringstring"Call me Ishmael"
TimestampISO 8601 extended offset date-time string in UTC zone"2021-01-04T05:00:00Z"

Note that for backwards compatibility, the Boolean, Byte, Double, Float, Integer, and Short types can also be encoded as JSON strings.

doesNotIntersectPolygon
object
optional

Returns objects where the specified field does not intersect the polygon provided.

Show children

Show children

field
string

The name of the property in the API. To find the API name for your property, use the Get object type endpoint or check the Ontology Manager.

value
union
Show children

Show children

Polygon
object
optional
Show children

Show children

coordinates
list<LinearRing>
optional
Show children

Show children

LinearRing
list<Position>

A linear ring is a closed LineString with four or more positions.

The first and last positions are equivalent, and they MUST contain identical values; their representation SHOULD also be identical.

A linear ring is the boundary of a surface or the boundary of a hole in a surface.

A linear ring MUST follow the right-hand rule with respect to the area it bounds, i.e., exterior rings are counterclockwise, and holes are clockwise.

Show children

Show children

Position
list<Coordinate>

GeoJSon fundamental geometry construct.

A position is an array of numbers. There MUST be two or more elements. The first two elements are longitude and latitude, precisely in that order and using decimal numbers. Altitude or elevation MAY be included as an optional third element.

Implementations SHOULD NOT extend positions beyond three elements because the semantics of extra elements are unspecified and ambiguous. Historically, some implementations have used a fourth element to carry a linear referencing measure (sometimes denoted as "M") or a numerical timestamp, but in most situations a parser will not be able to properly interpret these values. The interpretation and meaning of additional elements is beyond the scope of this specification, and additional elements MAY be ignored by parsers.

Show children

Show children

Coordinate
number
bbox
list<Coordinate>
optional

A GeoJSON object MAY have a member named "bbox" to include information on the coordinate range for its Geometries, Features, or FeatureCollections. The value of the bbox member MUST be an array of length 2*n where n is the number of dimensions represented in the contained geometries, with all axes of the most southwesterly point followed by all axes of the more northeasterly point. The axes order of a bbox follows the axes order of geometries.

Show children

Show children

Coordinate
number
lt
object
optional

Returns objects where the specified field is less than a value.

Show children

Show children

field
string

The name of the property in the API. To find the API name for your property, use the Get object type endpoint or check the Ontology Manager.

value
any

Represents the value of a property in the following format.

TypeJSON encodingExample
Arrayarray["alpha", "bravo", "charlie"]
AttachmentJSON encoded AttachmentProperty object{"rid":"ri.blobster.main.attachment.2f944bae-5851-4204-8615-920c969a9f2e"}
Booleanbooleantrue
Bytenumber31
DateISO 8601 extended local date string"2021-05-01"
Decimalstring"2.718281828"
Doublenumber3.14159265
Floatnumber3.14159265
GeoPointgeojson{"type":"Point","coordinates":[102.0,0.5]}
GeoShapegeojson{"type":"LineString","coordinates":[[102.0,0.0],[103.0,1.0],[104.0,0.0],[105.0,1.0]]}
Integernumber238940
Longstring"58319870951433"
Shortnumber8739
Stringstring"Call me Ishmael"
TimestampISO 8601 extended offset date-time string in UTC zone"2021-01-04T05:00:00Z"

Note that for backwards compatibility, the Boolean, Byte, Double, Float, Integer, and Short types can also be encoded as JSON strings.

doesNotIntersectBoundingBox
object
optional

Returns objects where the specified field does not intersect the bounding box provided.

Show children

Show children

field
string

The name of the property in the API. To find the API name for your property, use the Get object type endpoint or check the Ontology Manager.

value
object

The top left and bottom right coordinate points that make up the bounding box.

Show children

Show children

topLeft
union
Show children

Show children

Point
object
optional
Show children

Show children

coordinates
list<Coordinate>
optional

GeoJSon fundamental geometry construct.

A position is an array of numbers. There MUST be two or more elements. The first two elements are longitude and latitude, precisely in that order and using decimal numbers. Altitude or elevation MAY be included as an optional third element.

Implementations SHOULD NOT extend positions beyond three elements because the semantics of extra elements are unspecified and ambiguous. Historically, some implementations have used a fourth element to carry a linear referencing measure (sometimes denoted as "M") or a numerical timestamp, but in most situations a parser will not be able to properly interpret these values. The interpretation and meaning of additional elements is beyond the scope of this specification, and additional elements MAY be ignored by parsers.

Show children

Show children

Coordinate
number
bbox
list<Coordinate>
optional

A GeoJSON object MAY have a member named "bbox" to include information on the coordinate range for its Geometries, Features, or FeatureCollections. The value of the bbox member MUST be an array of length 2*n where n is the number of dimensions represented in the contained geometries, with all axes of the most southwesterly point followed by all axes of the more northeasterly point. The axes order of a bbox follows the axes order of geometries.

Show children

Show children

Coordinate
number
bottomRight
union
Show children

Show children

Point
object
optional
Show children

Show children

coordinates
list<Coordinate>
optional

GeoJSon fundamental geometry construct.

A position is an array of numbers. There MUST be two or more elements. The first two elements are longitude and latitude, precisely in that order and using decimal numbers. Altitude or elevation MAY be included as an optional third element.

Implementations SHOULD NOT extend positions beyond three elements because the semantics of extra elements are unspecified and ambiguous. Historically, some implementations have used a fourth element to carry a linear referencing measure (sometimes denoted as "M") or a numerical timestamp, but in most situations a parser will not be able to properly interpret these values. The interpretation and meaning of additional elements is beyond the scope of this specification, and additional elements MAY be ignored by parsers.

Show children

Show children

Coordinate
number
bbox
list<Coordinate>
optional

A GeoJSON object MAY have a member named "bbox" to include information on the coordinate range for its Geometries, Features, or FeatureCollections. The value of the bbox member MUST be an array of length 2*n where n is the number of dimensions represented in the contained geometries, with all axes of the most southwesterly point followed by all axes of the more northeasterly point. The axes order of a bbox follows the axes order of geometries.

Show children

Show children

Coordinate
number
eq
object
optional

Returns objects where the specified field is equal to a value.

Show children

Show children

field
string

The name of the property in the API. To find the API name for your property, use the Get object type endpoint or check the Ontology Manager.

value
any

Represents the value of a property in the following format.

TypeJSON encodingExample
Arrayarray["alpha", "bravo", "charlie"]
AttachmentJSON encoded AttachmentProperty object{"rid":"ri.blobster.main.attachment.2f944bae-5851-4204-8615-920c969a9f2e"}
Booleanbooleantrue
Bytenumber31
DateISO 8601 extended local date string"2021-05-01"
Decimalstring"2.718281828"
Doublenumber3.14159265
Floatnumber3.14159265
GeoPointgeojson{"type":"Point","coordinates":[102.0,0.5]}
GeoShapegeojson{"type":"LineString","coordinates":[[102.0,0.0],[103.0,1.0],[104.0,0.0],[105.0,1.0]]}
Integernumber238940
Longstring"58319870951433"
Shortnumber8739
Stringstring"Call me Ishmael"
TimestampISO 8601 extended offset date-time string in UTC zone"2021-01-04T05:00:00Z"

Note that for backwards compatibility, the Boolean, Byte, Double, Float, Integer, and Short types can also be encoded as JSON strings.

containsAllTerms
object
optional

Returns objects where the specified field contains all of the whitespace separated words in any order in the provided value. This query supports fuzzy matching.

Show children

Show children

field
string

The name of the property in the API. To find the API name for your property, use the Get object type endpoint or check the Ontology Manager.

value
string
fuzzy
boolean
optional

Setting fuzzy to true allows approximate matching in search queries that support it.

gt
object
optional

Returns objects where the specified field is greater than a value.

Show children

Show children

field
string

The name of the property in the API. To find the API name for your property, use the Get object type endpoint or check the Ontology Manager.

value
any

Represents the value of a property in the following format.

TypeJSON encodingExample
Arrayarray["alpha", "bravo", "charlie"]
AttachmentJSON encoded AttachmentProperty object{"rid":"ri.blobster.main.attachment.2f944bae-5851-4204-8615-920c969a9f2e"}
Booleanbooleantrue
Bytenumber31
DateISO 8601 extended local date string"2021-05-01"
Decimalstring"2.718281828"
Doublenumber3.14159265
Floatnumber3.14159265
GeoPointgeojson{"type":"Point","coordinates":[102.0,0.5]}
GeoShapegeojson{"type":"LineString","coordinates":[[102.0,0.0],[103.0,1.0],[104.0,0.0],[105.0,1.0]]}
Integernumber238940
Longstring"58319870951433"
Shortnumber8739
Stringstring"Call me Ishmael"
TimestampISO 8601 extended offset date-time string in UTC zone"2021-01-04T05:00:00Z"

Note that for backwards compatibility, the Boolean, Byte, Double, Float, Integer, and Short types can also be encoded as JSON strings.

withinDistanceOf
object
optional

Returns objects where the specified field contains a point within the distance provided of the center point.

Show children

Show children

field
string

The name of the property in the API. To find the API name for your property, use the Get object type endpoint or check the Ontology Manager.

value
object

The coordinate point to use as the center of the distance query.

Show children

Show children

center
union
Show children

Show children

Point
object
optional
Show children

Show children

coordinates
list<Coordinate>
optional

GeoJSon fundamental geometry construct.

A position is an array of numbers. There MUST be two or more elements. The first two elements are longitude and latitude, precisely in that order and using decimal numbers. Altitude or elevation MAY be included as an optional third element.

Implementations SHOULD NOT extend positions beyond three elements because the semantics of extra elements are unspecified and ambiguous. Historically, some implementations have used a fourth element to carry a linear referencing measure (sometimes denoted as "M") or a numerical timestamp, but in most situations a parser will not be able to properly interpret these values. The interpretation and meaning of additional elements is beyond the scope of this specification, and additional elements MAY be ignored by parsers.

Show children

Show children

Coordinate
number
bbox
list<Coordinate>
optional

A GeoJSON object MAY have a member named "bbox" to include information on the coordinate range for its Geometries, Features, or FeatureCollections. The value of the bbox member MUST be an array of length 2*n where n is the number of dimensions represented in the contained geometries, with all axes of the most southwesterly point followed by all axes of the more northeasterly point. The axes order of a bbox follows the axes order of geometries.

Show children

Show children

Coordinate
number
distance
object

A measurement of distance.

Show children

Show children

value
number
unit
string (enum)

Enum values: MILLIMETERS, CENTIMETERS, METERS, KILOMETERS, INCHES, FEET, YARDS, MILES, NAUTICAL_MILES

withinBoundingBox
object
optional

Returns objects where the specified field contains a point within the bounding box provided.

Show children

Show children

field
string

The name of the property in the API. To find the API name for your property, use the Get object type endpoint or check the Ontology Manager.

value
object

The top left and bottom right coordinate points that make up the bounding box.

Show children

Show children

topLeft
union
Show children

Show children

Point
object
optional
Show children

Show children

coordinates
list<Coordinate>
optional

GeoJSon fundamental geometry construct.

A position is an array of numbers. There MUST be two or more elements. The first two elements are longitude and latitude, precisely in that order and using decimal numbers. Altitude or elevation MAY be included as an optional third element.

Implementations SHOULD NOT extend positions beyond three elements because the semantics of extra elements are unspecified and ambiguous. Historically, some implementations have used a fourth element to carry a linear referencing measure (sometimes denoted as "M") or a numerical timestamp, but in most situations a parser will not be able to properly interpret these values. The interpretation and meaning of additional elements is beyond the scope of this specification, and additional elements MAY be ignored by parsers.

Show children

Show children

Coordinate
number
bbox
list<Coordinate>
optional

A GeoJSON object MAY have a member named "bbox" to include information on the coordinate range for its Geometries, Features, or FeatureCollections. The value of the bbox member MUST be an array of length 2*n where n is the number of dimensions represented in the contained geometries, with all axes of the most southwesterly point followed by all axes of the more northeasterly point. The axes order of a bbox follows the axes order of geometries.

Show children

Show children

Coordinate
number
bottomRight
union
Show children

Show children

Point
object
optional
Show children

Show children

coordinates
list<Coordinate>
optional

GeoJSon fundamental geometry construct.

A position is an array of numbers. There MUST be two or more elements. The first two elements are longitude and latitude, precisely in that order and using decimal numbers. Altitude or elevation MAY be included as an optional third element.

Implementations SHOULD NOT extend positions beyond three elements because the semantics of extra elements are unspecified and ambiguous. Historically, some implementations have used a fourth element to carry a linear referencing measure (sometimes denoted as "M") or a numerical timestamp, but in most situations a parser will not be able to properly interpret these values. The interpretation and meaning of additional elements is beyond the scope of this specification, and additional elements MAY be ignored by parsers.

Show children

Show children

Coordinate
number
bbox
list<Coordinate>
optional

A GeoJSON object MAY have a member named "bbox" to include information on the coordinate range for its Geometries, Features, or FeatureCollections. The value of the bbox member MUST be an array of length 2*n where n is the number of dimensions represented in the contained geometries, with all axes of the most southwesterly point followed by all axes of the more northeasterly point. The axes order of a bbox follows the axes order of geometries.

Show children

Show children

Coordinate
number
contains
object
optional

Returns objects where the specified array contains a value.

Show children

Show children

field
string

The name of the property in the API. To find the API name for your property, use the Get object type endpoint or check the Ontology Manager.

value
any

Represents the value of a property in the following format.

TypeJSON encodingExample
Arrayarray["alpha", "bravo", "charlie"]
AttachmentJSON encoded AttachmentProperty object{"rid":"ri.blobster.main.attachment.2f944bae-5851-4204-8615-920c969a9f2e"}
Booleanbooleantrue
Bytenumber31
DateISO 8601 extended local date string"2021-05-01"
Decimalstring"2.718281828"
Doublenumber3.14159265
Floatnumber3.14159265
GeoPointgeojson{"type":"Point","coordinates":[102.0,0.5]}
GeoShapegeojson{"type":"LineString","coordinates":[[102.0,0.0],[103.0,1.0],[104.0,0.0],[105.0,1.0]]}
Integernumber238940
Longstring"58319870951433"
Shortnumber8739
Stringstring"Call me Ishmael"
TimestampISO 8601 extended offset date-time string in UTC zone"2021-01-04T05:00:00Z"

Note that for backwards compatibility, the Boolean, Byte, Double, Float, Integer, and Short types can also be encoded as JSON strings.

not
object
optional

Returns objects where the query is not satisfied.

Show children

Show children

value
union
intersectsBoundingBox
object
optional

Returns objects where the specified field intersects the bounding box provided.

Show children

Show children

field
string

The name of the property in the API. To find the API name for your property, use the Get object type endpoint or check the Ontology Manager.

value
object

The top left and bottom right coordinate points that make up the bounding box.

Show children

Show children

topLeft
union
Show children

Show children

Point
object
optional
Show children

Show children

coordinates
list<Coordinate>
optional

GeoJSon fundamental geometry construct.

A position is an array of numbers. There MUST be two or more elements. The first two elements are longitude and latitude, precisely in that order and using decimal numbers. Altitude or elevation MAY be included as an optional third element.

Implementations SHOULD NOT extend positions beyond three elements because the semantics of extra elements are unspecified and ambiguous. Historically, some implementations have used a fourth element to carry a linear referencing measure (sometimes denoted as "M") or a numerical timestamp, but in most situations a parser will not be able to properly interpret these values. The interpretation and meaning of additional elements is beyond the scope of this specification, and additional elements MAY be ignored by parsers.

Show children

Show children

Coordinate
number
bbox
list<Coordinate>
optional

A GeoJSON object MAY have a member named "bbox" to include information on the coordinate range for its Geometries, Features, or FeatureCollections. The value of the bbox member MUST be an array of length 2*n where n is the number of dimensions represented in the contained geometries, with all axes of the most southwesterly point followed by all axes of the more northeasterly point. The axes order of a bbox follows the axes order of geometries.

Show children

Show children

Coordinate
number
bottomRight
union
Show children

Show children

Point
object
optional
Show children

Show children

coordinates
list<Coordinate>
optional

GeoJSon fundamental geometry construct.

A position is an array of numbers. There MUST be two or more elements. The first two elements are longitude and latitude, precisely in that order and using decimal numbers. Altitude or elevation MAY be included as an optional third element.

Implementations SHOULD NOT extend positions beyond three elements because the semantics of extra elements are unspecified and ambiguous. Historically, some implementations have used a fourth element to carry a linear referencing measure (sometimes denoted as "M") or a numerical timestamp, but in most situations a parser will not be able to properly interpret these values. The interpretation and meaning of additional elements is beyond the scope of this specification, and additional elements MAY be ignored by parsers.

Show children

Show children

Coordinate
number
bbox
list<Coordinate>
optional

A GeoJSON object MAY have a member named "bbox" to include information on the coordinate range for its Geometries, Features, or FeatureCollections. The value of the bbox member MUST be an array of length 2*n where n is the number of dimensions represented in the contained geometries, with all axes of the most southwesterly point followed by all axes of the more northeasterly point. The axes order of a bbox follows the axes order of geometries.

Show children

Show children

Coordinate
number
and
object
optional

Returns objects where every query is satisfied.

Show children

Show children

value
list<SearchJsonQueryV2>
optional
Show children

Show children

SearchJsonQueryV2
union
isNull
object
optional

Returns objects based on the existence of the specified field.

Show children

Show children

field
string

The name of the property in the API. To find the API name for your property, use the Get object type endpoint or check the Ontology Manager.

value
boolean
containsAllTermsInOrderPrefixLastTerm
object
optional

Returns objects where the specified field contains all of the terms in the order provided, but they do have to be adjacent to each other. The last term can be a partial prefix match.

Show children

Show children

field
string

The name of the property in the API. To find the API name for your property, use the Get object type endpoint or check the Ontology Manager.

value
string
containsAnyTerm
object
optional

Returns objects where the specified field contains any of the whitespace separated words in any order in the provided value. This query supports fuzzy matching.

Show children

Show children

field
string

The name of the property in the API. To find the API name for your property, use the Get object type endpoint or check the Ontology Manager.

value
string
fuzzy
boolean
optional

Setting fuzzy to true allows approximate matching in search queries that support it.

gte
object
optional

Returns objects where the specified field is greater than or equal to a value.

Show children

Show children

field
string

The name of the property in the API. To find the API name for your property, use the Get object type endpoint or check the Ontology Manager.

value
any

Represents the value of a property in the following format.

TypeJSON encodingExample
Arrayarray["alpha", "bravo", "charlie"]
AttachmentJSON encoded AttachmentProperty object{"rid":"ri.blobster.main.attachment.2f944bae-5851-4204-8615-920c969a9f2e"}
Booleanbooleantrue
Bytenumber31
DateISO 8601 extended local date string"2021-05-01"
Decimalstring"2.718281828"
Doublenumber3.14159265
Floatnumber3.14159265
GeoPointgeojson{"type":"Point","coordinates":[102.0,0.5]}
GeoShapegeojson{"type":"LineString","coordinates":[[102.0,0.0],[103.0,1.0],[104.0,0.0],[105.0,1.0]]}
Integernumber238940
Longstring"58319870951433"
Shortnumber8739
Stringstring"Call me Ishmael"
TimestampISO 8601 extended offset date-time string in UTC zone"2021-01-04T05:00:00Z"

Note that for backwards compatibility, the Boolean, Byte, Double, Float, Integer, and Short types can also be encoded as JSON strings.

containsAllTermsInOrder
object
optional

Returns objects where the specified field contains all of the terms in the order provided, but they do have to be adjacent to each other.

Show children

Show children

field
string

The name of the property in the API. To find the API name for your property, use the Get object type endpoint or check the Ontology Manager.

value
string
withinPolygon
object
optional

Returns objects where the specified field contains a point within the polygon provided.

Show children

Show children

field
string

The name of the property in the API. To find the API name for your property, use the Get object type endpoint or check the Ontology Manager.

value
union
Show children

Show children

Polygon
object
optional
Show children

Show children

coordinates
list<LinearRing>
optional
Show children

Show children

LinearRing
list<Position>

A linear ring is a closed LineString with four or more positions.

The first and last positions are equivalent, and they MUST contain identical values; their representation SHOULD also be identical.

A linear ring is the boundary of a surface or the boundary of a hole in a surface.

A linear ring MUST follow the right-hand rule with respect to the area it bounds, i.e., exterior rings are counterclockwise, and holes are clockwise.

Show children

Show children

Position
list<Coordinate>

GeoJSon fundamental geometry construct.

A position is an array of numbers. There MUST be two or more elements. The first two elements are longitude and latitude, precisely in that order and using decimal numbers. Altitude or elevation MAY be included as an optional third element.

Implementations SHOULD NOT extend positions beyond three elements because the semantics of extra elements are unspecified and ambiguous. Historically, some implementations have used a fourth element to carry a linear referencing measure (sometimes denoted as "M") or a numerical timestamp, but in most situations a parser will not be able to properly interpret these values. The interpretation and meaning of additional elements is beyond the scope of this specification, and additional elements MAY be ignored by parsers.

Show children

Show children

Coordinate
number
bbox
list<Coordinate>
optional

A GeoJSON object MAY have a member named "bbox" to include information on the coordinate range for its Geometries, Features, or FeatureCollections. The value of the bbox member MUST be an array of length 2*n where n is the number of dimensions represented in the contained geometries, with all axes of the most southwesterly point followed by all axes of the more northeasterly point. The axes order of a bbox follows the axes order of geometries.

Show children

Show children

Coordinate
number
intersectsPolygon
object
optional

Returns objects where the specified field intersects the polygon provided.

Show children

Show children

field
string

The name of the property in the API. To find the API name for your property, use the Get object type endpoint or check the Ontology Manager.

value
union
Show children

Show children

Polygon
object
optional
Show children

Show children

coordinates
list<LinearRing>
optional
Show children

Show children

LinearRing
list<Position>

A linear ring is a closed LineString with four or more positions.

The first and last positions are equivalent, and they MUST contain identical values; their representation SHOULD also be identical.

A linear ring is the boundary of a surface or the boundary of a hole in a surface.

A linear ring MUST follow the right-hand rule with respect to the area it bounds, i.e., exterior rings are counterclockwise, and holes are clockwise.

Show children

Show children

Position
list<Coordinate>

GeoJSon fundamental geometry construct.

A position is an array of numbers. There MUST be two or more elements. The first two elements are longitude and latitude, precisely in that order and using decimal numbers. Altitude or elevation MAY be included as an optional third element.

Implementations SHOULD NOT extend positions beyond three elements because the semantics of extra elements are unspecified and ambiguous. Historically, some implementations have used a fourth element to carry a linear referencing measure (sometimes denoted as "M") or a numerical timestamp, but in most situations a parser will not be able to properly interpret these values. The interpretation and meaning of additional elements is beyond the scope of this specification, and additional elements MAY be ignored by parsers.

Show children

Show children

Coordinate
number
bbox
list<Coordinate>
optional

A GeoJSON object MAY have a member named "bbox" to include information on the coordinate range for its Geometries, Features, or FeatureCollections. The value of the bbox member MUST be an array of length 2*n where n is the number of dimensions represented in the contained geometries, with all axes of the most southwesterly point followed by all axes of the more northeasterly point. The axes order of a bbox follows the axes order of geometries.

Show children

Show children

Coordinate
number
lte
object
optional

Returns objects where the specified field is less than or equal to a value.

Show children

Show children

field
string

The name of the property in the API. To find the API name for your property, use the Get object type endpoint or check the Ontology Manager.

value
any

Represents the value of a property in the following format.

TypeJSON encodingExample
Arrayarray["alpha", "bravo", "charlie"]
AttachmentJSON encoded AttachmentProperty object{"rid":"ri.blobster.main.attachment.2f944bae-5851-4204-8615-920c969a9f2e"}
Booleanbooleantrue
Bytenumber31
DateISO 8601 extended local date string"2021-05-01"
Decimalstring"2.718281828"
Doublenumber3.14159265
Floatnumber3.14159265
GeoPointgeojson{"type":"Point","coordinates":[102.0,0.5]}
GeoShapegeojson{"type":"LineString","coordinates":[[102.0,0.0],[103.0,1.0],[104.0,0.0],[105.0,1.0]]}
Integernumber238940
Longstring"58319870951433"
Shortnumber8739
Stringstring"Call me Ishmael"
TimestampISO 8601 extended offset date-time string in UTC zone"2021-01-04T05:00:00Z"

Note that for backwards compatibility, the Boolean, Byte, Double, Float, Integer, and Short types can also be encoded as JSON strings.

startsWith
object
optional

Returns objects where the specified field starts with the provided value.

Show children

Show children

field
string

The name of the property in the API. To find the API name for your property, use the Get object type endpoint or check the Ontology Manager.

value
string
isNull
object
optional

Returns objects based on the existence of the specified field.

Show children

Show children

field
string

The name of the property in the API. To find the API name for your property, use the Get object type endpoint or check the Ontology Manager.

value
boolean
containsAllTermsInOrderPrefixLastTerm
object
optional

Returns objects where the specified field contains all of the terms in the order provided, but they do have to be adjacent to each other. The last term can be a partial prefix match.

Show children

Show children

field
string

The name of the property in the API. To find the API name for your property, use the Get object type endpoint or check the Ontology Manager.

value
string
containsAnyTerm
object
optional

Returns objects where the specified field contains any of the whitespace separated words in any order in the provided value. This query supports fuzzy matching.

Show children

Show children

field
string

The name of the property in the API. To find the API name for your property, use the Get object type endpoint or check the Ontology Manager.

value
string
fuzzy
boolean
optional

Setting fuzzy to true allows approximate matching in search queries that support it.

gte
object
optional

Returns objects where the specified field is greater than or equal to a value.

Show children

Show children

field
string

The name of the property in the API. To find the API name for your property, use the Get object type endpoint or check the Ontology Manager.

value
any

Represents the value of a property in the following format.

TypeJSON encodingExample
Arrayarray["alpha", "bravo", "charlie"]
AttachmentJSON encoded AttachmentProperty object{"rid":"ri.blobster.main.attachment.2f944bae-5851-4204-8615-920c969a9f2e"}
Booleanbooleantrue
Bytenumber31
DateISO 8601 extended local date string"2021-05-01"
Decimalstring"2.718281828"
Doublenumber3.14159265
Floatnumber3.14159265
GeoPointgeojson{"type":"Point","coordinates":[102.0,0.5]}
GeoShapegeojson{"type":"LineString","coordinates":[[102.0,0.0],[103.0,1.0],[104.0,0.0],[105.0,1.0]]}
Integernumber238940
Longstring"58319870951433"
Shortnumber8739
Stringstring"Call me Ishmael"
TimestampISO 8601 extended offset date-time string in UTC zone"2021-01-04T05:00:00Z"

Note that for backwards compatibility, the Boolean, Byte, Double, Float, Integer, and Short types can also be encoded as JSON strings.

containsAllTermsInOrder
object
optional

Returns objects where the specified field contains all of the terms in the order provided, but they do have to be adjacent to each other.

Show children

Show children

field
string

The name of the property in the API. To find the API name for your property, use the Get object type endpoint or check the Ontology Manager.

value
string
withinPolygon
object
optional

Returns objects where the specified field contains a point within the polygon provided.

Show children

Show children

field
string

The name of the property in the API. To find the API name for your property, use the Get object type endpoint or check the Ontology Manager.

value
union
Show children

Show children

Polygon
object
optional
Show children

Show children

coordinates
list<LinearRing>
optional
Show children

Show children

LinearRing
list<Position>

A linear ring is a closed LineString with four or more positions.

The first and last positions are equivalent, and they MUST contain identical values; their representation SHOULD also be identical.

A linear ring is the boundary of a surface or the boundary of a hole in a surface.

A linear ring MUST follow the right-hand rule with respect to the area it bounds, i.e., exterior rings are counterclockwise, and holes are clockwise.

Show children

Show children

Position
list<Coordinate>

GeoJSon fundamental geometry construct.

A position is an array of numbers. There MUST be two or more elements. The first two elements are longitude and latitude, precisely in that order and using decimal numbers. Altitude or elevation MAY be included as an optional third element.

Implementations SHOULD NOT extend positions beyond three elements because the semantics of extra elements are unspecified and ambiguous. Historically, some implementations have used a fourth element to carry a linear referencing measure (sometimes denoted as "M") or a numerical timestamp, but in most situations a parser will not be able to properly interpret these values. The interpretation and meaning of additional elements is beyond the scope of this specification, and additional elements MAY be ignored by parsers.

Show children

Show children

Coordinate
number
bbox
list<Coordinate>
optional

A GeoJSON object MAY have a member named "bbox" to include information on the coordinate range for its Geometries, Features, or FeatureCollections. The value of the bbox member MUST be an array of length 2*n where n is the number of dimensions represented in the contained geometries, with all axes of the most southwesterly point followed by all axes of the more northeasterly point. The axes order of a bbox follows the axes order of geometries.

Show children

Show children

Coordinate
number
intersectsPolygon
object
optional

Returns objects where the specified field intersects the polygon provided.

Show children

Show children

field
string

The name of the property in the API. To find the API name for your property, use the Get object type endpoint or check the Ontology Manager.

value
union
Show children

Show children

Polygon
object
optional
Show children

Show children

coordinates
list<LinearRing>
optional
Show children

Show children

LinearRing
list<Position>

A linear ring is a closed LineString with four or more positions.

The first and last positions are equivalent, and they MUST contain identical values; their representation SHOULD also be identical.

A linear ring is the boundary of a surface or the boundary of a hole in a surface.

A linear ring MUST follow the right-hand rule with respect to the area it bounds, i.e., exterior rings are counterclockwise, and holes are clockwise.

Show children

Show children

Position
list<Coordinate>

GeoJSon fundamental geometry construct.

A position is an array of numbers. There MUST be two or more elements. The first two elements are longitude and latitude, precisely in that order and using decimal numbers. Altitude or elevation MAY be included as an optional third element.

Implementations SHOULD NOT extend positions beyond three elements because the semantics of extra elements are unspecified and ambiguous. Historically, some implementations have used a fourth element to carry a linear referencing measure (sometimes denoted as "M") or a numerical timestamp, but in most situations a parser will not be able to properly interpret these values. The interpretation and meaning of additional elements is beyond the scope of this specification, and additional elements MAY be ignored by parsers.

Show children

Show children

Coordinate
number
bbox
list<Coordinate>
optional

A GeoJSON object MAY have a member named "bbox" to include information on the coordinate range for its Geometries, Features, or FeatureCollections. The value of the bbox member MUST be an array of length 2*n where n is the number of dimensions represented in the contained geometries, with all axes of the most southwesterly point followed by all axes of the more northeasterly point. The axes order of a bbox follows the axes order of geometries.

Show children

Show children

Coordinate
number
lte
object
optional

Returns objects where the specified field is less than or equal to a value.

Show children

Show children

field
string

The name of the property in the API. To find the API name for your property, use the Get object type endpoint or check the Ontology Manager.

value
any

Represents the value of a property in the following format.

TypeJSON encodingExample
Arrayarray["alpha", "bravo", "charlie"]
AttachmentJSON encoded AttachmentProperty object{"rid":"ri.blobster.main.attachment.2f944bae-5851-4204-8615-920c969a9f2e"}
Booleanbooleantrue
Bytenumber31
DateISO 8601 extended local date string"2021-05-01"
Decimalstring"2.718281828"
Doublenumber3.14159265
Floatnumber3.14159265
GeoPointgeojson{"type":"Point","coordinates":[102.0,0.5]}
GeoShapegeojson{"type":"LineString","coordinates":[[102.0,0.0],[103.0,1.0],[104.0,0.0],[105.0,1.0]]}
Integernumber238940
Longstring"58319870951433"
Shortnumber8739
Stringstring"Call me Ishmael"
TimestampISO 8601 extended offset date-time string in UTC zone"2021-01-04T05:00:00Z"

Note that for backwards compatibility, the Boolean, Byte, Double, Float, Integer, and Short types can also be encoded as JSON strings.

startsWith
object
optional

Returns objects where the specified field starts with the provided value.

Show children

Show children

field
string

The name of the property in the API. To find the API name for your property, use the Get object type endpoint or check the Ontology Manager.

value
string
searchAround
object
optional
Show children

Show children

objectSet
union

Represents the definition of an ObjectSet in the Ontology.

link
string

The name of the link type in the API. To find the API name for your Link Type, check the Ontology Manager application.

static
object
optional
Show children

Show children

objects
list<ObjectRid>
optional
Show children

Show children

ObjectRid
string

The unique resource identifier of an object, useful for interacting with other Foundry APIs.

intersect
object
optional
Show children

Show children

objectSets
list<ObjectSet>
optional
Show children

Show children

ObjectSet
union

Represents the definition of an ObjectSet in the Ontology.

subtract
object
optional
Show children

Show children

objectSets
list<ObjectSet>
optional
Show children

Show children

ObjectSet
union

Represents the definition of an ObjectSet in the Ontology.

union
object
optional
Show children

Show children

objectSets
list<ObjectSet>
optional
Show children

Show children

ObjectSet
union

Represents the definition of an ObjectSet in the Ontology.

base
object
optional
Show children

Show children

objectType
string
union
object
optional
Show children

Show children

objectSets
list<ObjectSet>
optional
Show children

Show children

ObjectSet
union

Represents the definition of an ObjectSet in the Ontology.

Show children

Show children

reference
object
optional
Show children

Show children

reference
string
filter
object
optional
Show children

Show children

objectSet
union

Represents the definition of an ObjectSet in the Ontology.

where
union
Show children

Show children

or
object
optional

Returns objects where at least 1 query is satisfied.

Show children

Show children

value
list<SearchJsonQueryV2>
optional
Show children

Show children

SearchJsonQueryV2
union
Show children

Show children

or
object
optional

Returns objects where at least 1 query is satisfied.

Show children

Show children

value
list<SearchJsonQueryV2>
optional
Show children

Show children

SearchJsonQueryV2
union
in
object
optional

Returns objects where the specified field equals any of the provided values.

Show children

Show children

field
string

The name of the property in the API. To find the API name for your property, use the Get object type endpoint or check the Ontology Manager.

value
list<PropertyValue>
optional
Show children

Show children

PropertyValue
any

Represents the value of a property in the following format.

TypeJSON encodingExample
Arrayarray["alpha", "bravo", "charlie"]
AttachmentJSON encoded AttachmentProperty object{"rid":"ri.blobster.main.attachment.2f944bae-5851-4204-8615-920c969a9f2e"}
Booleanbooleantrue
Bytenumber31
DateISO 8601 extended local date string"2021-05-01"
Decimalstring"2.718281828"
Doublenumber3.14159265
Floatnumber3.14159265
GeoPointgeojson{"type":"Point","coordinates":[102.0,0.5]}
GeoShapegeojson{"type":"LineString","coordinates":[[102.0,0.0],[103.0,1.0],[104.0,0.0],[105.0,1.0]]}
Integernumber238940
Longstring"58319870951433"
Shortnumber8739
Stringstring"Call me Ishmael"
TimestampISO 8601 extended offset date-time string in UTC zone"2021-01-04T05:00:00Z"

Note that for backwards compatibility, the Boolean, Byte, Double, Float, Integer, and Short types can also be encoded as JSON strings.

doesNotIntersectPolygon
object
optional

Returns objects where the specified field does not intersect the polygon provided.

Show children

Show children

field
string

The name of the property in the API. To find the API name for your property, use the Get object type endpoint or check the Ontology Manager.

value
union
Show children

Show children

Polygon
object
optional
Show children

Show children

coordinates
list<LinearRing>
optional
Show children

Show children

LinearRing
list<Position>

A linear ring is a closed LineString with four or more positions.

The first and last positions are equivalent, and they MUST contain identical values; their representation SHOULD also be identical.

A linear ring is the boundary of a surface or the boundary of a hole in a surface.

A linear ring MUST follow the right-hand rule with respect to the area it bounds, i.e., exterior rings are counterclockwise, and holes are clockwise.

Show children

Show children

Position
list<Coordinate>

GeoJSon fundamental geometry construct.

A position is an array of numbers. There MUST be two or more elements. The first two elements are longitude and latitude, precisely in that order and using decimal numbers. Altitude or elevation MAY be included as an optional third element.

Implementations SHOULD NOT extend positions beyond three elements because the semantics of extra elements are unspecified and ambiguous. Historically, some implementations have used a fourth element to carry a linear referencing measure (sometimes denoted as "M") or a numerical timestamp, but in most situations a parser will not be able to properly interpret these values. The interpretation and meaning of additional elements is beyond the scope of this specification, and additional elements MAY be ignored by parsers.

Show children

Show children

Coordinate
number
bbox
list<Coordinate>
optional

A GeoJSON object MAY have a member named "bbox" to include information on the coordinate range for its Geometries, Features, or FeatureCollections. The value of the bbox member MUST be an array of length 2*n where n is the number of dimensions represented in the contained geometries, with all axes of the most southwesterly point followed by all axes of the more northeasterly point. The axes order of a bbox follows the axes order of geometries.

Show children

Show children

Coordinate
number
lt
object
optional

Returns objects where the specified field is less than a value.

Show children

Show children

field
string

The name of the property in the API. To find the API name for your property, use the Get object type endpoint or check the Ontology Manager.

value
any

Represents the value of a property in the following format.

TypeJSON encodingExample
Arrayarray["alpha", "bravo", "charlie"]
AttachmentJSON encoded AttachmentProperty object{"rid":"ri.blobster.main.attachment.2f944bae-5851-4204-8615-920c969a9f2e"}
Booleanbooleantrue
Bytenumber31
DateISO 8601 extended local date string"2021-05-01"
Decimalstring"2.718281828"
Doublenumber3.14159265
Floatnumber3.14159265
GeoPointgeojson{"type":"Point","coordinates":[102.0,0.5]}
GeoShapegeojson{"type":"LineString","coordinates":[[102.0,0.0],[103.0,1.0],[104.0,0.0],[105.0,1.0]]}
Integernumber238940
Longstring"58319870951433"
Shortnumber8739
Stringstring"Call me Ishmael"
TimestampISO 8601 extended offset date-time string in UTC zone"2021-01-04T05:00:00Z"

Note that for backwards compatibility, the Boolean, Byte, Double, Float, Integer, and Short types can also be encoded as JSON strings.

doesNotIntersectBoundingBox
object
optional

Returns objects where the specified field does not intersect the bounding box provided.

Show children

Show children

field
string

The name of the property in the API. To find the API name for your property, use the Get object type endpoint or check the Ontology Manager.

value
object

The top left and bottom right coordinate points that make up the bounding box.

Show children

Show children

topLeft
union
Show children

Show children

Point
object
optional
Show children

Show children

coordinates
list<Coordinate>
optional

GeoJSon fundamental geometry construct.

A position is an array of numbers. There MUST be two or more elements. The first two elements are longitude and latitude, precisely in that order and using decimal numbers. Altitude or elevation MAY be included as an optional third element.

Implementations SHOULD NOT extend positions beyond three elements because the semantics of extra elements are unspecified and ambiguous. Historically, some implementations have used a fourth element to carry a linear referencing measure (sometimes denoted as "M") or a numerical timestamp, but in most situations a parser will not be able to properly interpret these values. The interpretation and meaning of additional elements is beyond the scope of this specification, and additional elements MAY be ignored by parsers.

Show children

Show children

Coordinate
number
bbox
list<Coordinate>
optional

A GeoJSON object MAY have a member named "bbox" to include information on the coordinate range for its Geometries, Features, or FeatureCollections. The value of the bbox member MUST be an array of length 2*n where n is the number of dimensions represented in the contained geometries, with all axes of the most southwesterly point followed by all axes of the more northeasterly point. The axes order of a bbox follows the axes order of geometries.

Show children

Show children

Coordinate
number
bottomRight
union
Show children

Show children

Point
object
optional
Show children

Show children

coordinates
list<Coordinate>
optional

GeoJSon fundamental geometry construct.

A position is an array of numbers. There MUST be two or more elements. The first two elements are longitude and latitude, precisely in that order and using decimal numbers. Altitude or elevation MAY be included as an optional third element.

Implementations SHOULD NOT extend positions beyond three elements because the semantics of extra elements are unspecified and ambiguous. Historically, some implementations have used a fourth element to carry a linear referencing measure (sometimes denoted as "M") or a numerical timestamp, but in most situations a parser will not be able to properly interpret these values. The interpretation and meaning of additional elements is beyond the scope of this specification, and additional elements MAY be ignored by parsers.

Show children

Show children

Coordinate
number
bbox
list<Coordinate>
optional

A GeoJSON object MAY have a member named "bbox" to include information on the coordinate range for its Geometries, Features, or FeatureCollections. The value of the bbox member MUST be an array of length 2*n where n is the number of dimensions represented in the contained geometries, with all axes of the most southwesterly point followed by all axes of the more northeasterly point. The axes order of a bbox follows the axes order of geometries.

Show children

Show children

Coordinate
number
eq
object
optional

Returns objects where the specified field is equal to a value.

Show children

Show children

field
string

The name of the property in the API. To find the API name for your property, use the Get object type endpoint or check the Ontology Manager.

value
any

Represents the value of a property in the following format.

TypeJSON encodingExample
Arrayarray["alpha", "bravo", "charlie"]
AttachmentJSON encoded AttachmentProperty object{"rid":"ri.blobster.main.attachment.2f944bae-5851-4204-8615-920c969a9f2e"}
Booleanbooleantrue
Bytenumber31
DateISO 8601 extended local date string"2021-05-01"
Decimalstring"2.718281828"
Doublenumber3.14159265
Floatnumber3.14159265
GeoPointgeojson{"type":"Point","coordinates":[102.0,0.5]}
GeoShapegeojson{"type":"LineString","coordinates":[[102.0,0.0],[103.0,1.0],[104.0,0.0],[105.0,1.0]]}
Integernumber238940
Longstring"58319870951433"
Shortnumber8739
Stringstring"Call me Ishmael"
TimestampISO 8601 extended offset date-time string in UTC zone"2021-01-04T05:00:00Z"

Note that for backwards compatibility, the Boolean, Byte, Double, Float, Integer, and Short types can also be encoded as JSON strings.

containsAllTerms
object
optional

Returns objects where the specified field contains all of the whitespace separated words in any order in the provided value. This query supports fuzzy matching.

Show children

Show children

field
string

The name of the property in the API. To find the API name for your property, use the Get object type endpoint or check the Ontology Manager.

value
string
fuzzy
boolean
optional

Setting fuzzy to true allows approximate matching in search queries that support it.

gt
object
optional

Returns objects where the specified field is greater than a value.

Show children

Show children

field
string

The name of the property in the API. To find the API name for your property, use the Get object type endpoint or check the Ontology Manager.

value
any

Represents the value of a property in the following format.

TypeJSON encodingExample
Arrayarray["alpha", "bravo", "charlie"]
AttachmentJSON encoded AttachmentProperty object{"rid":"ri.blobster.main.attachment.2f944bae-5851-4204-8615-920c969a9f2e"}
Booleanbooleantrue
Bytenumber31
DateISO 8601 extended local date string"2021-05-01"
Decimalstring"2.718281828"
Doublenumber3.14159265
Floatnumber3.14159265
GeoPointgeojson{"type":"Point","coordinates":[102.0,0.5]}
GeoShapegeojson{"type":"LineString","coordinates":[[102.0,0.0],[103.0,1.0],[104.0,0.0],[105.0,1.0]]}
Integernumber238940
Longstring"58319870951433"
Shortnumber8739
Stringstring"Call me Ishmael"
TimestampISO 8601 extended offset date-time string in UTC zone"2021-01-04T05:00:00Z"

Note that for backwards compatibility, the Boolean, Byte, Double, Float, Integer, and Short types can also be encoded as JSON strings.

withinDistanceOf
object
optional

Returns objects where the specified field contains a point within the distance provided of the center point.

Show children

Show children

field
string

The name of the property in the API. To find the API name for your property, use the Get object type endpoint or check the Ontology Manager.

value
object

The coordinate point to use as the center of the distance query.

Show children

Show children

center
union
Show children

Show children

Point
object
optional
Show children

Show children

coordinates
list<Coordinate>
optional

GeoJSon fundamental geometry construct.

A position is an array of numbers. There MUST be two or more elements. The first two elements are longitude and latitude, precisely in that order and using decimal numbers. Altitude or elevation MAY be included as an optional third element.

Implementations SHOULD NOT extend positions beyond three elements because the semantics of extra elements are unspecified and ambiguous. Historically, some implementations have used a fourth element to carry a linear referencing measure (sometimes denoted as "M") or a numerical timestamp, but in most situations a parser will not be able to properly interpret these values. The interpretation and meaning of additional elements is beyond the scope of this specification, and additional elements MAY be ignored by parsers.

Show children

Show children

Coordinate
number
bbox
list<Coordinate>
optional

A GeoJSON object MAY have a member named "bbox" to include information on the coordinate range for its Geometries, Features, or FeatureCollections. The value of the bbox member MUST be an array of length 2*n where n is the number of dimensions represented in the contained geometries, with all axes of the most southwesterly point followed by all axes of the more northeasterly point. The axes order of a bbox follows the axes order of geometries.

Show children

Show children

Coordinate
number
distance
object

A measurement of distance.

Show children

Show children

value
number
unit
string (enum)

Enum values: MILLIMETERS, CENTIMETERS, METERS, KILOMETERS, INCHES, FEET, YARDS, MILES, NAUTICAL_MILES

withinBoundingBox
object
optional

Returns objects where the specified field contains a point within the bounding box provided.

Show children

Show children

field
string

The name of the property in the API. To find the API name for your property, use the Get object type endpoint or check the Ontology Manager.

value
object

The top left and bottom right coordinate points that make up the bounding box.

Show children

Show children

topLeft
union
Show children

Show children

Point
object
optional
Show children

Show children

coordinates
list<Coordinate>
optional

GeoJSon fundamental geometry construct.

A position is an array of numbers. There MUST be two or more elements. The first two elements are longitude and latitude, precisely in that order and using decimal numbers. Altitude or elevation MAY be included as an optional third element.

Implementations SHOULD NOT extend positions beyond three elements because the semantics of extra elements are unspecified and ambiguous. Historically, some implementations have used a fourth element to carry a linear referencing measure (sometimes denoted as "M") or a numerical timestamp, but in most situations a parser will not be able to properly interpret these values. The interpretation and meaning of additional elements is beyond the scope of this specification, and additional elements MAY be ignored by parsers.

Show children

Show children

Coordinate
number
bbox
list<Coordinate>
optional

A GeoJSON object MAY have a member named "bbox" to include information on the coordinate range for its Geometries, Features, or FeatureCollections. The value of the bbox member MUST be an array of length 2*n where n is the number of dimensions represented in the contained geometries, with all axes of the most southwesterly point followed by all axes of the more northeasterly point. The axes order of a bbox follows the axes order of geometries.

Show children

Show children

Coordinate
number
bottomRight
union
Show children

Show children

Point
object
optional
Show children

Show children

coordinates
list<Coordinate>
optional

GeoJSon fundamental geometry construct.

A position is an array of numbers. There MUST be two or more elements. The first two elements are longitude and latitude, precisely in that order and using decimal numbers. Altitude or elevation MAY be included as an optional third element.

Implementations SHOULD NOT extend positions beyond three elements because the semantics of extra elements are unspecified and ambiguous. Historically, some implementations have used a fourth element to carry a linear referencing measure (sometimes denoted as "M") or a numerical timestamp, but in most situations a parser will not be able to properly interpret these values. The interpretation and meaning of additional elements is beyond the scope of this specification, and additional elements MAY be ignored by parsers.

Show children

Show children

Coordinate
number
bbox
list<Coordinate>
optional

A GeoJSON object MAY have a member named "bbox" to include information on the coordinate range for its Geometries, Features, or FeatureCollections. The value of the bbox member MUST be an array of length 2*n where n is the number of dimensions represented in the contained geometries, with all axes of the most southwesterly point followed by all axes of the more northeasterly point. The axes order of a bbox follows the axes order of geometries.

Show children

Show children

Coordinate
number
contains
object
optional

Returns objects where the specified array contains a value.

Show children

Show children

field
string

The name of the property in the API. To find the API name for your property, use the Get object type endpoint or check the Ontology Manager.

value
any

Represents the value of a property in the following format.

TypeJSON encodingExample
Arrayarray["alpha", "bravo", "charlie"]
AttachmentJSON encoded AttachmentProperty object{"rid":"ri.blobster.main.attachment.2f944bae-5851-4204-8615-920c969a9f2e"}
Booleanbooleantrue
Bytenumber31
DateISO 8601 extended local date string"2021-05-01"
Decimalstring"2.718281828"
Doublenumber3.14159265
Floatnumber3.14159265
GeoPointgeojson{"type":"Point","coordinates":[102.0,0.5]}
GeoShapegeojson{"type":"LineString","coordinates":[[102.0,0.0],[103.0,1.0],[104.0,0.0],[105.0,1.0]]}
Integernumber238940
Longstring"58319870951433"
Shortnumber8739
Stringstring"Call me Ishmael"
TimestampISO 8601 extended offset date-time string in UTC zone"2021-01-04T05:00:00Z"

Note that for backwards compatibility, the Boolean, Byte, Double, Float, Integer, and Short types can also be encoded as JSON strings.

not
object
optional

Returns objects where the query is not satisfied.

Show children

Show children

value
union
intersectsBoundingBox
object
optional

Returns objects where the specified field intersects the bounding box provided.

Show children

Show children

field
string

The name of the property in the API. To find the API name for your property, use the Get object type endpoint or check the Ontology Manager.

value
object

The top left and bottom right coordinate points that make up the bounding box.

Show children

Show children

topLeft
union
Show children

Show children

Point
object
optional
Show children

Show children

coordinates
list<Coordinate>
optional

GeoJSon fundamental geometry construct.

A position is an array of numbers. There MUST be two or more elements. The first two elements are longitude and latitude, precisely in that order and using decimal numbers. Altitude or elevation MAY be included as an optional third element.

Implementations SHOULD NOT extend positions beyond three elements because the semantics of extra elements are unspecified and ambiguous. Historically, some implementations have used a fourth element to carry a linear referencing measure (sometimes denoted as "M") or a numerical timestamp, but in most situations a parser will not be able to properly interpret these values. The interpretation and meaning of additional elements is beyond the scope of this specification, and additional elements MAY be ignored by parsers.

Show children

Show children

Coordinate
number
bbox
list<Coordinate>
optional

A GeoJSON object MAY have a member named "bbox" to include information on the coordinate range for its Geometries, Features, or FeatureCollections. The value of the bbox member MUST be an array of length 2*n where n is the number of dimensions represented in the contained geometries, with all axes of the most southwesterly point followed by all axes of the more northeasterly point. The axes order of a bbox follows the axes order of geometries.

Show children

Show children

Coordinate
number
bottomRight
union
Show children

Show children

Point
object
optional
Show children

Show children

coordinates
list<Coordinate>
optional

GeoJSon fundamental geometry construct.

A position is an array of numbers. There MUST be two or more elements. The first two elements are longitude and latitude, precisely in that order and using decimal numbers. Altitude or elevation MAY be included as an optional third element.

Implementations SHOULD NOT extend positions beyond three elements because the semantics of extra elements are unspecified and ambiguous. Historically, some implementations have used a fourth element to carry a linear referencing measure (sometimes denoted as "M") or a numerical timestamp, but in most situations a parser will not be able to properly interpret these values. The interpretation and meaning of additional elements is beyond the scope of this specification, and additional elements MAY be ignored by parsers.

Show children

Show children

Coordinate
number
bbox
list<Coordinate>
optional

A GeoJSON object MAY have a member named "bbox" to include information on the coordinate range for its Geometries, Features, or FeatureCollections. The value of the bbox member MUST be an array of length 2*n where n is the number of dimensions represented in the contained geometries, with all axes of the most southwesterly point followed by all axes of the more northeasterly point. The axes order of a bbox follows the axes order of geometries.

Show children

Show children

Coordinate
number
and
object
optional

Returns objects where every query is satisfied.

Show children

Show children

value
list<SearchJsonQueryV2>
optional
Show children

Show children

SearchJsonQueryV2
union
isNull
object
optional

Returns objects based on the existence of the specified field.

Show children

Show children

field
string

The name of the property in the API. To find the API name for your property, use the Get object type endpoint or check the Ontology Manager.

value
boolean
containsAllTermsInOrderPrefixLastTerm
object
optional

Returns objects where the specified field contains all of the terms in the order provided, but they do have to be adjacent to each other. The last term can be a partial prefix match.

Show children

Show children

field
string

The name of the property in the API. To find the API name for your property, use the Get object type endpoint or check the Ontology Manager.

value
string
containsAnyTerm
object
optional

Returns objects where the specified field contains any of the whitespace separated words in any order in the provided value. This query supports fuzzy matching.

Show children

Show children

field
string

The name of the property in the API. To find the API name for your property, use the Get object type endpoint or check the Ontology Manager.

value
string
fuzzy
boolean
optional

Setting fuzzy to true allows approximate matching in search queries that support it.

gte
object
optional

Returns objects where the specified field is greater than or equal to a value.

Show children

Show children

field
string

The name of the property in the API. To find the API name for your property, use the Get object type endpoint or check the Ontology Manager.

value
any

Represents the value of a property in the following format.

TypeJSON encodingExample
Arrayarray["alpha", "bravo", "charlie"]
AttachmentJSON encoded AttachmentProperty object{"rid":"ri.blobster.main.attachment.2f944bae-5851-4204-8615-920c969a9f2e"}
Booleanbooleantrue
Bytenumber31
DateISO 8601 extended local date string"2021-05-01"
Decimalstring"2.718281828"
Doublenumber3.14159265
Floatnumber3.14159265
GeoPointgeojson{"type":"Point","coordinates":[102.0,0.5]}
GeoShapegeojson{"type":"LineString","coordinates":[[102.0,0.0],[103.0,1.0],[104.0,0.0],[105.0,1.0]]}
Integernumber238940
Longstring"58319870951433"
Shortnumber8739
Stringstring"Call me Ishmael"
TimestampISO 8601 extended offset date-time string in UTC zone"2021-01-04T05:00:00Z"

Note that for backwards compatibility, the Boolean, Byte, Double, Float, Integer, and Short types can also be encoded as JSON strings.

containsAllTermsInOrder
object
optional

Returns objects where the specified field contains all of the terms in the order provided, but they do have to be adjacent to each other.

Show children

Show children

field
string

The name of the property in the API. To find the API name for your property, use the Get object type endpoint or check the Ontology Manager.

value
string
withinPolygon
object
optional

Returns objects where the specified field contains a point within the polygon provided.

Show children

Show children

field
string

The name of the property in the API. To find the API name for your property, use the Get object type endpoint or check the Ontology Manager.

value
union
Show children

Show children

Polygon
object
optional
Show children

Show children

coordinates
list<LinearRing>
optional
Show children

Show children

LinearRing
list<Position>

A linear ring is a closed LineString with four or more positions.

The first and last positions are equivalent, and they MUST contain identical values; their representation SHOULD also be identical.

A linear ring is the boundary of a surface or the boundary of a hole in a surface.

A linear ring MUST follow the right-hand rule with respect to the area it bounds, i.e., exterior rings are counterclockwise, and holes are clockwise.

Show children

Show children

Position
list<Coordinate>

GeoJSon fundamental geometry construct.

A position is an array of numbers. There MUST be two or more elements. The first two elements are longitude and latitude, precisely in that order and using decimal numbers. Altitude or elevation MAY be included as an optional third element.

Implementations SHOULD NOT extend positions beyond three elements because the semantics of extra elements are unspecified and ambiguous. Historically, some implementations have used a fourth element to carry a linear referencing measure (sometimes denoted as "M") or a numerical timestamp, but in most situations a parser will not be able to properly interpret these values. The interpretation and meaning of additional elements is beyond the scope of this specification, and additional elements MAY be ignored by parsers.

Show children

Show children

Coordinate
number
bbox
list<Coordinate>
optional

A GeoJSON object MAY have a member named "bbox" to include information on the coordinate range for its Geometries, Features, or FeatureCollections. The value of the bbox member MUST be an array of length 2*n where n is the number of dimensions represented in the contained geometries, with all axes of the most southwesterly point followed by all axes of the more northeasterly point. The axes order of a bbox follows the axes order of geometries.

Show children

Show children

Coordinate
number
intersectsPolygon
object
optional

Returns objects where the specified field intersects the polygon provided.

Show children

Show children

field
string

The name of the property in the API. To find the API name for your property, use the Get object type endpoint or check the Ontology Manager.

value
union
Show children

Show children

Polygon
object
optional
Show children

Show children

coordinates
list<LinearRing>
optional
Show children

Show children

LinearRing
list<Position>

A linear ring is a closed LineString with four or more positions.

The first and last positions are equivalent, and they MUST contain identical values; their representation SHOULD also be identical.

A linear ring is the boundary of a surface or the boundary of a hole in a surface.

A linear ring MUST follow the right-hand rule with respect to the area it bounds, i.e., exterior rings are counterclockwise, and holes are clockwise.

Show children

Show children

Position
list<Coordinate>

GeoJSon fundamental geometry construct.

A position is an array of numbers. There MUST be two or more elements. The first two elements are longitude and latitude, precisely in that order and using decimal numbers. Altitude or elevation MAY be included as an optional third element.

Implementations SHOULD NOT extend positions beyond three elements because the semantics of extra elements are unspecified and ambiguous. Historically, some implementations have used a fourth element to carry a linear referencing measure (sometimes denoted as "M") or a numerical timestamp, but in most situations a parser will not be able to properly interpret these values. The interpretation and meaning of additional elements is beyond the scope of this specification, and additional elements MAY be ignored by parsers.

Show children

Show children

Coordinate
number
bbox
list<Coordinate>
optional

A GeoJSON object MAY have a member named "bbox" to include information on the coordinate range for its Geometries, Features, or FeatureCollections. The value of the bbox member MUST be an array of length 2*n where n is the number of dimensions represented in the contained geometries, with all axes of the most southwesterly point followed by all axes of the more northeasterly point. The axes order of a bbox follows the axes order of geometries.

Show children

Show children

Coordinate
number
lte
object
optional

Returns objects where the specified field is less than or equal to a value.

Show children

Show children

field
string

The name of the property in the API. To find the API name for your property, use the Get object type endpoint or check the Ontology Manager.

value
any

Represents the value of a property in the following format.

TypeJSON encodingExample
Arrayarray["alpha", "bravo", "charlie"]
AttachmentJSON encoded AttachmentProperty object{"rid":"ri.blobster.main.attachment.2f944bae-5851-4204-8615-920c969a9f2e"}
Booleanbooleantrue
Bytenumber31
DateISO 8601 extended local date string"2021-05-01"
Decimalstring"2.718281828"
Doublenumber3.14159265
Floatnumber3.14159265
GeoPointgeojson{"type":"Point","coordinates":[102.0,0.5]}
GeoShapegeojson{"type":"LineString","coordinates":[[102.0,0.0],[103.0,1.0],[104.0,0.0],[105.0,1.0]]}
Integernumber238940
Longstring"58319870951433"
Shortnumber8739
Stringstring"Call me Ishmael"
TimestampISO 8601 extended offset date-time string in UTC zone"2021-01-04T05:00:00Z"

Note that for backwards compatibility, the Boolean, Byte, Double, Float, Integer, and Short types can also be encoded as JSON strings.

startsWith
object
optional

Returns objects where the specified field starts with the provided value.

Show children

Show children

field
string

The name of the property in the API. To find the API name for your property, use the Get object type endpoint or check the Ontology Manager.

value
string
in
object
optional

Returns objects where the specified field equals any of the provided values.

Show children

Show children

field
string

The name of the property in the API. To find the API name for your property, use the Get object type endpoint or check the Ontology Manager.

value
list<PropertyValue>
optional
Show children

Show children

PropertyValue
any

Represents the value of a property in the following format.

TypeJSON encodingExample
Arrayarray["alpha", "bravo", "charlie"]
AttachmentJSON encoded AttachmentProperty object{"rid":"ri.blobster.main.attachment.2f944bae-5851-4204-8615-920c969a9f2e"}
Booleanbooleantrue
Bytenumber31
DateISO 8601 extended local date string"2021-05-01"
Decimalstring"2.718281828"
Doublenumber3.14159265
Floatnumber3.14159265
GeoPointgeojson{"type":"Point","coordinates":[102.0,0.5]}
GeoShapegeojson{"type":"LineString","coordinates":[[102.0,0.0],[103.0,1.0],[104.0,0.0],[105.0,1.0]]}
Integernumber238940
Longstring"58319870951433"
Shortnumber8739
Stringstring"Call me Ishmael"
TimestampISO 8601 extended offset date-time string in UTC zone"2021-01-04T05:00:00Z"

Note that for backwards compatibility, the Boolean, Byte, Double, Float, Integer, and Short types can also be encoded as JSON strings.

doesNotIntersectPolygon
object
optional

Returns objects where the specified field does not intersect the polygon provided.

Show children

Show children

field
string

The name of the property in the API. To find the API name for your property, use the Get object type endpoint or check the Ontology Manager.

value
union
Show children

Show children

Polygon
object
optional
Show children

Show children

coordinates
list<LinearRing>
optional
Show children

Show children

LinearRing
list<Position>

A linear ring is a closed LineString with four or more positions.

The first and last positions are equivalent, and they MUST contain identical values; their representation SHOULD also be identical.

A linear ring is the boundary of a surface or the boundary of a hole in a surface.

A linear ring MUST follow the right-hand rule with respect to the area it bounds, i.e., exterior rings are counterclockwise, and holes are clockwise.

Show children

Show children

Position
list<Coordinate>

GeoJSon fundamental geometry construct.

A position is an array of numbers. There MUST be two or more elements. The first two elements are longitude and latitude, precisely in that order and using decimal numbers. Altitude or elevation MAY be included as an optional third element.

Implementations SHOULD NOT extend positions beyond three elements because the semantics of extra elements are unspecified and ambiguous. Historically, some implementations have used a fourth element to carry a linear referencing measure (sometimes denoted as "M") or a numerical timestamp, but in most situations a parser will not be able to properly interpret these values. The interpretation and meaning of additional elements is beyond the scope of this specification, and additional elements MAY be ignored by parsers.

Show children

Show children

Coordinate
number
bbox
list<Coordinate>
optional

A GeoJSON object MAY have a member named "bbox" to include information on the coordinate range for its Geometries, Features, or FeatureCollections. The value of the bbox member MUST be an array of length 2*n where n is the number of dimensions represented in the contained geometries, with all axes of the most southwesterly point followed by all axes of the more northeasterly point. The axes order of a bbox follows the axes order of geometries.

Show children

Show children

Coordinate
number
lt
object
optional

Returns objects where the specified field is less than a value.

Show children

Show children

field
string

The name of the property in the API. To find the API name for your property, use the Get object type endpoint or check the Ontology Manager.

value
any

Represents the value of a property in the following format.

TypeJSON encodingExample
Arrayarray["alpha", "bravo", "charlie"]
AttachmentJSON encoded AttachmentProperty object{"rid":"ri.blobster.main.attachment.2f944bae-5851-4204-8615-920c969a9f2e"}
Booleanbooleantrue
Bytenumber31
DateISO 8601 extended local date string"2021-05-01"
Decimalstring"2.718281828"
Doublenumber3.14159265
Floatnumber3.14159265
GeoPointgeojson{"type":"Point","coordinates":[102.0,0.5]}
GeoShapegeojson{"type":"LineString","coordinates":[[102.0,0.0],[103.0,1.0],[104.0,0.0],[105.0,1.0]]}
Integernumber238940
Longstring"58319870951433"
Shortnumber8739
Stringstring"Call me Ishmael"
TimestampISO 8601 extended offset date-time string in UTC zone"2021-01-04T05:00:00Z"

Note that for backwards compatibility, the Boolean, Byte, Double, Float, Integer, and Short types can also be encoded as JSON strings.

doesNotIntersectBoundingBox
object
optional

Returns objects where the specified field does not intersect the bounding box provided.

Show children

Show children

field
string

The name of the property in the API. To find the API name for your property, use the Get object type endpoint or check the Ontology Manager.

value
object

The top left and bottom right coordinate points that make up the bounding box.

Show children

Show children

topLeft
union
Show children

Show children

Point
object
optional
Show children

Show children

coordinates
list<Coordinate>
optional

GeoJSon fundamental geometry construct.

A position is an array of numbers. There MUST be two or more elements. The first two elements are longitude and latitude, precisely in that order and using decimal numbers. Altitude or elevation MAY be included as an optional third element.

Implementations SHOULD NOT extend positions beyond three elements because the semantics of extra elements are unspecified and ambiguous. Historically, some implementations have used a fourth element to carry a linear referencing measure (sometimes denoted as "M") or a numerical timestamp, but in most situations a parser will not be able to properly interpret these values. The interpretation and meaning of additional elements is beyond the scope of this specification, and additional elements MAY be ignored by parsers.

Show children

Show children

Coordinate
number
bbox
list<Coordinate>
optional

A GeoJSON object MAY have a member named "bbox" to include information on the coordinate range for its Geometries, Features, or FeatureCollections. The value of the bbox member MUST be an array of length 2*n where n is the number of dimensions represented in the contained geometries, with all axes of the most southwesterly point followed by all axes of the more northeasterly point. The axes order of a bbox follows the axes order of geometries.

Show children

Show children

Coordinate
number
bottomRight
union
Show children

Show children

Point
object
optional
Show children

Show children

coordinates
list<Coordinate>
optional

GeoJSon fundamental geometry construct.

A position is an array of numbers. There MUST be two or more elements. The first two elements are longitude and latitude, precisely in that order and using decimal numbers. Altitude or elevation MAY be included as an optional third element.

Implementations SHOULD NOT extend positions beyond three elements because the semantics of extra elements are unspecified and ambiguous. Historically, some implementations have used a fourth element to carry a linear referencing measure (sometimes denoted as "M") or a numerical timestamp, but in most situations a parser will not be able to properly interpret these values. The interpretation and meaning of additional elements is beyond the scope of this specification, and additional elements MAY be ignored by parsers.

Show children

Show children

Coordinate
number
bbox
list<Coordinate>
optional

A GeoJSON object MAY have a member named "bbox" to include information on the coordinate range for its Geometries, Features, or FeatureCollections. The value of the bbox member MUST be an array of length 2*n where n is the number of dimensions represented in the contained geometries, with all axes of the most southwesterly point followed by all axes of the more northeasterly point. The axes order of a bbox follows the axes order of geometries.

Show children

Show children

Coordinate
number
eq
object
optional

Returns objects where the specified field is equal to a value.

Show children

Show children

field
string

The name of the property in the API. To find the API name for your property, use the Get object type endpoint or check the Ontology Manager.

value
any

Represents the value of a property in the following format.

TypeJSON encodingExample
Arrayarray["alpha", "bravo", "charlie"]
AttachmentJSON encoded AttachmentProperty object{"rid":"ri.blobster.main.attachment.2f944bae-5851-4204-8615-920c969a9f2e"}
Booleanbooleantrue
Bytenumber31
DateISO 8601 extended local date string"2021-05-01"
Decimalstring"2.718281828"
Doublenumber3.14159265
Floatnumber3.14159265
GeoPointgeojson{"type":"Point","coordinates":[102.0,0.5]}
GeoShapegeojson{"type":"LineString","coordinates":[[102.0,0.0],[103.0,1.0],[104.0,0.0],[105.0,1.0]]}
Integernumber238940
Longstring"58319870951433"
Shortnumber8739
Stringstring"Call me Ishmael"
TimestampISO 8601 extended offset date-time string in UTC zone"2021-01-04T05:00:00Z"

Note that for backwards compatibility, the Boolean, Byte, Double, Float, Integer, and Short types can also be encoded as JSON strings.

containsAllTerms
object
optional

Returns objects where the specified field contains all of the whitespace separated words in any order in the provided value. This query supports fuzzy matching.

Show children

Show children

field
string

The name of the property in the API. To find the API name for your property, use the Get object type endpoint or check the Ontology Manager.

value
string
fuzzy
boolean
optional

Setting fuzzy to true allows approximate matching in search queries that support it.

gt
object
optional

Returns objects where the specified field is greater than a value.

Show children

Show children

field
string

The name of the property in the API. To find the API name for your property, use the Get object type endpoint or check the Ontology Manager.

value
any

Represents the value of a property in the following format.

TypeJSON encodingExample
Arrayarray["alpha", "bravo", "charlie"]
AttachmentJSON encoded AttachmentProperty object{"rid":"ri.blobster.main.attachment.2f944bae-5851-4204-8615-920c969a9f2e"}
Booleanbooleantrue
Bytenumber31
DateISO 8601 extended local date string"2021-05-01"
Decimalstring"2.718281828"
Doublenumber3.14159265
Floatnumber3.14159265
GeoPointgeojson{"type":"Point","coordinates":[102.0,0.5]}
GeoShapegeojson{"type":"LineString","coordinates":[[102.0,0.0],[103.0,1.0],[104.0,0.0],[105.0,1.0]]}
Integernumber238940
Longstring"58319870951433"
Shortnumber8739
Stringstring"Call me Ishmael"
TimestampISO 8601 extended offset date-time string in UTC zone"2021-01-04T05:00:00Z"

Note that for backwards compatibility, the Boolean, Byte, Double, Float, Integer, and Short types can also be encoded as JSON strings.

withinDistanceOf
object
optional

Returns objects where the specified field contains a point within the distance provided of the center point.

Show children

Show children

field
string

The name of the property in the API. To find the API name for your property, use the Get object type endpoint or check the Ontology Manager.

value
object

The coordinate point to use as the center of the distance query.

Show children

Show children

center
union
Show children

Show children

Point
object
optional
Show children

Show children

coordinates
list<Coordinate>
optional

GeoJSon fundamental geometry construct.

A position is an array of numbers. There MUST be two or more elements. The first two elements are longitude and latitude, precisely in that order and using decimal numbers. Altitude or elevation MAY be included as an optional third element.

Implementations SHOULD NOT extend positions beyond three elements because the semantics of extra elements are unspecified and ambiguous. Historically, some implementations have used a fourth element to carry a linear referencing measure (sometimes denoted as "M") or a numerical timestamp, but in most situations a parser will not be able to properly interpret these values. The interpretation and meaning of additional elements is beyond the scope of this specification, and additional elements MAY be ignored by parsers.

Show children

Show children

Coordinate
number
bbox
list<Coordinate>
optional

A GeoJSON object MAY have a member named "bbox" to include information on the coordinate range for its Geometries, Features, or FeatureCollections. The value of the bbox member MUST be an array of length 2*n where n is the number of dimensions represented in the contained geometries, with all axes of the most southwesterly point followed by all axes of the more northeasterly point. The axes order of a bbox follows the axes order of geometries.

Show children

Show children

Coordinate
number
distance
object

A measurement of distance.

Show children

Show children

value
number
unit
string (enum)

Enum values: MILLIMETERS, CENTIMETERS, METERS, KILOMETERS, INCHES, FEET, YARDS, MILES, NAUTICAL_MILES

withinBoundingBox
object
optional

Returns objects where the specified field contains a point within the bounding box provided.

Show children

Show children

field
string

The name of the property in the API. To find the API name for your property, use the Get object type endpoint or check the Ontology Manager.

value
object

The top left and bottom right coordinate points that make up the bounding box.

Show children

Show children

topLeft
union
Show children

Show children

Point
object
optional
Show children

Show children

coordinates
list<Coordinate>
optional

GeoJSon fundamental geometry construct.

A position is an array of numbers. There MUST be two or more elements. The first two elements are longitude and latitude, precisely in that order and using decimal numbers. Altitude or elevation MAY be included as an optional third element.

Implementations SHOULD NOT extend positions beyond three elements because the semantics of extra elements are unspecified and ambiguous. Historically, some implementations have used a fourth element to carry a linear referencing measure (sometimes denoted as "M") or a numerical timestamp, but in most situations a parser will not be able to properly interpret these values. The interpretation and meaning of additional elements is beyond the scope of this specification, and additional elements MAY be ignored by parsers.

Show children

Show children

Coordinate
number
bbox
list<Coordinate>
optional

A GeoJSON object MAY have a member named "bbox" to include information on the coordinate range for its Geometries, Features, or FeatureCollections. The value of the bbox member MUST be an array of length 2*n where n is the number of dimensions represented in the contained geometries, with all axes of the most southwesterly point followed by all axes of the more northeasterly point. The axes order of a bbox follows the axes order of geometries.

Show children

Show children

Coordinate
number
bottomRight
union
Show children

Show children

Point
object
optional
Show children

Show children

coordinates
list<Coordinate>
optional

GeoJSon fundamental geometry construct.

A position is an array of numbers. There MUST be two or more elements. The first two elements are longitude and latitude, precisely in that order and using decimal numbers. Altitude or elevation MAY be included as an optional third element.

Implementations SHOULD NOT extend positions beyond three elements because the semantics of extra elements are unspecified and ambiguous. Historically, some implementations have used a fourth element to carry a linear referencing measure (sometimes denoted as "M") or a numerical timestamp, but in most situations a parser will not be able to properly interpret these values. The interpretation and meaning of additional elements is beyond the scope of this specification, and additional elements MAY be ignored by parsers.

Show children

Show children

Coordinate
number
bbox
list<Coordinate>
optional

A GeoJSON object MAY have a member named "bbox" to include information on the coordinate range for its Geometries, Features, or FeatureCollections. The value of the bbox member MUST be an array of length 2*n where n is the number of dimensions represented in the contained geometries, with all axes of the most southwesterly point followed by all axes of the more northeasterly point. The axes order of a bbox follows the axes order of geometries.

Show children

Show children

Coordinate
number
contains
object
optional

Returns objects where the specified array contains a value.

Show children

Show children

field
string

The name of the property in the API. To find the API name for your property, use the Get object type endpoint or check the Ontology Manager.

value
any

Represents the value of a property in the following format.

TypeJSON encodingExample
Arrayarray["alpha", "bravo", "charlie"]
AttachmentJSON encoded AttachmentProperty object{"rid":"ri.blobster.main.attachment.2f944bae-5851-4204-8615-920c969a9f2e"}
Booleanbooleantrue
Bytenumber31
DateISO 8601 extended local date string"2021-05-01"
Decimalstring"2.718281828"
Doublenumber3.14159265
Floatnumber3.14159265
GeoPointgeojson{"type":"Point","coordinates":[102.0,0.5]}
GeoShapegeojson{"type":"LineString","coordinates":[[102.0,0.0],[103.0,1.0],[104.0,0.0],[105.0,1.0]]}
Integernumber238940
Longstring"58319870951433"
Shortnumber8739
Stringstring"Call me Ishmael"
TimestampISO 8601 extended offset date-time string in UTC zone"2021-01-04T05:00:00Z"

Note that for backwards compatibility, the Boolean, Byte, Double, Float, Integer, and Short types can also be encoded as JSON strings.

not
object
optional

Returns objects where the query is not satisfied.

Show children

Show children

value
union
Show children

Show children

or
object
optional

Returns objects where at least 1 query is satisfied.

Show children

Show children

value
list<SearchJsonQueryV2>
optional
Show children

Show children

SearchJsonQueryV2
union
in
object
optional

Returns objects where the specified field equals any of the provided values.

Show children

Show children

field
string

The name of the property in the API. To find the API name for your property, use the Get object type endpoint or check the Ontology Manager.

value
list<PropertyValue>
optional
Show children

Show children

PropertyValue
any

Represents the value of a property in the following format.

TypeJSON encodingExample
Arrayarray["alpha", "bravo", "charlie"]
AttachmentJSON encoded AttachmentProperty object{"rid":"ri.blobster.main.attachment.2f944bae-5851-4204-8615-920c969a9f2e"}
Booleanbooleantrue
Bytenumber31
DateISO 8601 extended local date string"2021-05-01"
Decimalstring"2.718281828"
Doublenumber3.14159265
Floatnumber3.14159265
GeoPointgeojson{"type":"Point","coordinates":[102.0,0.5]}
GeoShapegeojson{"type":"LineString","coordinates":[[102.0,0.0],[103.0,1.0],[104.0,0.0],[105.0,1.0]]}
Integernumber238940
Longstring"58319870951433"
Shortnumber8739
Stringstring"Call me Ishmael"
TimestampISO 8601 extended offset date-time string in UTC zone"2021-01-04T05:00:00Z"

Note that for backwards compatibility, the Boolean, Byte, Double, Float, Integer, and Short types can also be encoded as JSON strings.

doesNotIntersectPolygon
object
optional

Returns objects where the specified field does not intersect the polygon provided.

Show children

Show children

field
string

The name of the property in the API. To find the API name for your property, use the Get object type endpoint or check the Ontology Manager.

value
union
Show children

Show children

Polygon
object
optional
Show children

Show children

coordinates
list<LinearRing>
optional
Show children

Show children

LinearRing
list<Position>

A linear ring is a closed LineString with four or more positions.

The first and last positions are equivalent, and they MUST contain identical values; their representation SHOULD also be identical.

A linear ring is the boundary of a surface or the boundary of a hole in a surface.

A linear ring MUST follow the right-hand rule with respect to the area it bounds, i.e., exterior rings are counterclockwise, and holes are clockwise.

Show children

Show children

Position
list<Coordinate>

GeoJSon fundamental geometry construct.

A position is an array of numbers. There MUST be two or more elements. The first two elements are longitude and latitude, precisely in that order and using decimal numbers. Altitude or elevation MAY be included as an optional third element.

Implementations SHOULD NOT extend positions beyond three elements because the semantics of extra elements are unspecified and ambiguous. Historically, some implementations have used a fourth element to carry a linear referencing measure (sometimes denoted as "M") or a numerical timestamp, but in most situations a parser will not be able to properly interpret these values. The interpretation and meaning of additional elements is beyond the scope of this specification, and additional elements MAY be ignored by parsers.

Show children

Show children

Coordinate
number
bbox
list<Coordinate>
optional

A GeoJSON object MAY have a member named "bbox" to include information on the coordinate range for its Geometries, Features, or FeatureCollections. The value of the bbox member MUST be an array of length 2*n where n is the number of dimensions represented in the contained geometries, with all axes of the most southwesterly point followed by all axes of the more northeasterly point. The axes order of a bbox follows the axes order of geometries.

Show children

Show children

Coordinate
number
lt
object
optional

Returns objects where the specified field is less than a value.

Show children

Show children

field
string

The name of the property in the API. To find the API name for your property, use the Get object type endpoint or check the Ontology Manager.

value
any

Represents the value of a property in the following format.

TypeJSON encodingExample
Arrayarray["alpha", "bravo", "charlie"]
AttachmentJSON encoded AttachmentProperty object{"rid":"ri.blobster.main.attachment.2f944bae-5851-4204-8615-920c969a9f2e"}
Booleanbooleantrue
Bytenumber31
DateISO 8601 extended local date string"2021-05-01"
Decimalstring"2.718281828"
Doublenumber3.14159265
Floatnumber3.14159265
GeoPointgeojson{"type":"Point","coordinates":[102.0,0.5]}
GeoShapegeojson{"type":"LineString","coordinates":[[102.0,0.0],[103.0,1.0],[104.0,0.0],[105.0,1.0]]}
Integernumber238940
Longstring"58319870951433"
Shortnumber8739
Stringstring"Call me Ishmael"
TimestampISO 8601 extended offset date-time string in UTC zone"2021-01-04T05:00:00Z"

Note that for backwards compatibility, the Boolean, Byte, Double, Float, Integer, and Short types can also be encoded as JSON strings.

doesNotIntersectBoundingBox
object
optional

Returns objects where the specified field does not intersect the bounding box provided.

Show children

Show children

field
string

The name of the property in the API. To find the API name for your property, use the Get object type endpoint or check the Ontology Manager.

value
object

The top left and bottom right coordinate points that make up the bounding box.

Show children

Show children

topLeft
union
Show children

Show children

Point
object
optional
Show children

Show children

coordinates
list<Coordinate>
optional

GeoJSon fundamental geometry construct.

A position is an array of numbers. There MUST be two or more elements. The first two elements are longitude and latitude, precisely in that order and using decimal numbers. Altitude or elevation MAY be included as an optional third element.

Implementations SHOULD NOT extend positions beyond three elements because the semantics of extra elements are unspecified and ambiguous. Historically, some implementations have used a fourth element to carry a linear referencing measure (sometimes denoted as "M") or a numerical timestamp, but in most situations a parser will not be able to properly interpret these values. The interpretation and meaning of additional elements is beyond the scope of this specification, and additional elements MAY be ignored by parsers.

Show children

Show children

Coordinate
number
bbox
list<Coordinate>
optional

A GeoJSON object MAY have a member named "bbox" to include information on the coordinate range for its Geometries, Features, or FeatureCollections. The value of the bbox member MUST be an array of length 2*n where n is the number of dimensions represented in the contained geometries, with all axes of the most southwesterly point followed by all axes of the more northeasterly point. The axes order of a bbox follows the axes order of geometries.

Show children

Show children

Coordinate
number
bottomRight
union
Show children

Show children

Point
object
optional
Show children

Show children

coordinates
list<Coordinate>
optional

GeoJSon fundamental geometry construct.

A position is an array of numbers. There MUST be two or more elements. The first two elements are longitude and latitude, precisely in that order and using decimal numbers. Altitude or elevation MAY be included as an optional third element.

Implementations SHOULD NOT extend positions beyond three elements because the semantics of extra elements are unspecified and ambiguous. Historically, some implementations have used a fourth element to carry a linear referencing measure (sometimes denoted as "M") or a numerical timestamp, but in most situations a parser will not be able to properly interpret these values. The interpretation and meaning of additional elements is beyond the scope of this specification, and additional elements MAY be ignored by parsers.

Show children

Show children

Coordinate
number
bbox
list<Coordinate>
optional

A GeoJSON object MAY have a member named "bbox" to include information on the coordinate range for its Geometries, Features, or FeatureCollections. The value of the bbox member MUST be an array of length 2*n where n is the number of dimensions represented in the contained geometries, with all axes of the most southwesterly point followed by all axes of the more northeasterly point. The axes order of a bbox follows the axes order of geometries.

Show children

Show children

Coordinate
number
eq
object
optional

Returns objects where the specified field is equal to a value.

Show children

Show children

field
string

The name of the property in the API. To find the API name for your property, use the Get object type endpoint or check the Ontology Manager.

value
any

Represents the value of a property in the following format.

TypeJSON encodingExample
Arrayarray["alpha", "bravo", "charlie"]
AttachmentJSON encoded AttachmentProperty object{"rid":"ri.blobster.main.attachment.2f944bae-5851-4204-8615-920c969a9f2e"}
Booleanbooleantrue
Bytenumber31
DateISO 8601 extended local date string"2021-05-01"
Decimalstring"2.718281828"
Doublenumber3.14159265
Floatnumber3.14159265
GeoPointgeojson{"type":"Point","coordinates":[102.0,0.5]}
GeoShapegeojson{"type":"LineString","coordinates":[[102.0,0.0],[103.0,1.0],[104.0,0.0],[105.0,1.0]]}
Integernumber238940
Longstring"58319870951433"
Shortnumber8739
Stringstring"Call me Ishmael"
TimestampISO 8601 extended offset date-time string in UTC zone"2021-01-04T05:00:00Z"

Note that for backwards compatibility, the Boolean, Byte, Double, Float, Integer, and Short types can also be encoded as JSON strings.

containsAllTerms
object
optional

Returns objects where the specified field contains all of the whitespace separated words in any order in the provided value. This query supports fuzzy matching.

Show children

Show children

field
string

The name of the property in the API. To find the API name for your property, use the Get object type endpoint or check the Ontology Manager.

value
string
fuzzy
boolean
optional

Setting fuzzy to true allows approximate matching in search queries that support it.

gt
object
optional

Returns objects where the specified field is greater than a value.

Show children

Show children

field
string

The name of the property in the API. To find the API name for your property, use the Get object type endpoint or check the Ontology Manager.

value
any

Represents the value of a property in the following format.

TypeJSON encodingExample
Arrayarray["alpha", "bravo", "charlie"]
AttachmentJSON encoded AttachmentProperty object{"rid":"ri.blobster.main.attachment.2f944bae-5851-4204-8615-920c969a9f2e"}
Booleanbooleantrue
Bytenumber31
DateISO 8601 extended local date string"2021-05-01"
Decimalstring"2.718281828"
Doublenumber3.14159265
Floatnumber3.14159265
GeoPointgeojson{"type":"Point","coordinates":[102.0,0.5]}
GeoShapegeojson{"type":"LineString","coordinates":[[102.0,0.0],[103.0,1.0],[104.0,0.0],[105.0,1.0]]}
Integernumber238940
Longstring"58319870951433"
Shortnumber8739
Stringstring"Call me Ishmael"
TimestampISO 8601 extended offset date-time string in UTC zone"2021-01-04T05:00:00Z"

Note that for backwards compatibility, the Boolean, Byte, Double, Float, Integer, and Short types can also be encoded as JSON strings.

withinDistanceOf
object
optional

Returns objects where the specified field contains a point within the distance provided of the center point.

Show children

Show children

field
string

The name of the property in the API. To find the API name for your property, use the Get object type endpoint or check the Ontology Manager.

value
object

The coordinate point to use as the center of the distance query.

Show children

Show children

center
union
Show children

Show children

Point
object
optional
Show children

Show children

coordinates
list<Coordinate>
optional

GeoJSon fundamental geometry construct.

A position is an array of numbers. There MUST be two or more elements. The first two elements are longitude and latitude, precisely in that order and using decimal numbers. Altitude or elevation MAY be included as an optional third element.

Implementations SHOULD NOT extend positions beyond three elements because the semantics of extra elements are unspecified and ambiguous. Historically, some implementations have used a fourth element to carry a linear referencing measure (sometimes denoted as "M") or a numerical timestamp, but in most situations a parser will not be able to properly interpret these values. The interpretation and meaning of additional elements is beyond the scope of this specification, and additional elements MAY be ignored by parsers.

Show children

Show children

Coordinate
number
bbox
list<Coordinate>
optional

A GeoJSON object MAY have a member named "bbox" to include information on the coordinate range for its Geometries, Features, or FeatureCollections. The value of the bbox member MUST be an array of length 2*n where n is the number of dimensions represented in the contained geometries, with all axes of the most southwesterly point followed by all axes of the more northeasterly point. The axes order of a bbox follows the axes order of geometries.

Show children

Show children

Coordinate
number
distance
object

A measurement of distance.

Show children

Show children

value
number
unit
string (enum)

Enum values: MILLIMETERS, CENTIMETERS, METERS, KILOMETERS, INCHES, FEET, YARDS, MILES, NAUTICAL_MILES

withinBoundingBox
object
optional

Returns objects where the specified field contains a point within the bounding box provided.

Show children

Show children

field
string

The name of the property in the API. To find the API name for your property, use the Get object type endpoint or check the Ontology Manager.

value
object

The top left and bottom right coordinate points that make up the bounding box.

Show children

Show children

topLeft
union
Show children

Show children

Point
object
optional
Show children

Show children

coordinates
list<Coordinate>
optional

GeoJSon fundamental geometry construct.

A position is an array of numbers. There MUST be two or more elements. The first two elements are longitude and latitude, precisely in that order and using decimal numbers. Altitude or elevation MAY be included as an optional third element.

Implementations SHOULD NOT extend positions beyond three elements because the semantics of extra elements are unspecified and ambiguous. Historically, some implementations have used a fourth element to carry a linear referencing measure (sometimes denoted as "M") or a numerical timestamp, but in most situations a parser will not be able to properly interpret these values. The interpretation and meaning of additional elements is beyond the scope of this specification, and additional elements MAY be ignored by parsers.

Show children

Show children

Coordinate
number
bbox
list<Coordinate>
optional

A GeoJSON object MAY have a member named "bbox" to include information on the coordinate range for its Geometries, Features, or FeatureCollections. The value of the bbox member MUST be an array of length 2*n where n is the number of dimensions represented in the contained geometries, with all axes of the most southwesterly point followed by all axes of the more northeasterly point. The axes order of a bbox follows the axes order of geometries.

Show children

Show children

Coordinate
number
bottomRight
union
Show children

Show children

Point
object
optional
Show children

Show children

coordinates
list<Coordinate>
optional

GeoJSon fundamental geometry construct.

A position is an array of numbers. There MUST be two or more elements. The first two elements are longitude and latitude, precisely in that order and using decimal numbers. Altitude or elevation MAY be included as an optional third element.

Implementations SHOULD NOT extend positions beyond three elements because the semantics of extra elements are unspecified and ambiguous. Historically, some implementations have used a fourth element to carry a linear referencing measure (sometimes denoted as "M") or a numerical timestamp, but in most situations a parser will not be able to properly interpret these values. The interpretation and meaning of additional elements is beyond the scope of this specification, and additional elements MAY be ignored by parsers.

Show children

Show children

Coordinate
number
bbox
list<Coordinate>
optional

A GeoJSON object MAY have a member named "bbox" to include information on the coordinate range for its Geometries, Features, or FeatureCollections. The value of the bbox member MUST be an array of length 2*n where n is the number of dimensions represented in the contained geometries, with all axes of the most southwesterly point followed by all axes of the more northeasterly point. The axes order of a bbox follows the axes order of geometries.

Show children

Show children

Coordinate
number
contains
object
optional

Returns objects where the specified array contains a value.

Show children

Show children

field
string

The name of the property in the API. To find the API name for your property, use the Get object type endpoint or check the Ontology Manager.

value
any

Represents the value of a property in the following format.

TypeJSON encodingExample
Arrayarray["alpha", "bravo", "charlie"]
AttachmentJSON encoded AttachmentProperty object{"rid":"ri.blobster.main.attachment.2f944bae-5851-4204-8615-920c969a9f2e"}
Booleanbooleantrue
Bytenumber31
DateISO 8601 extended local date string"2021-05-01"
Decimalstring"2.718281828"
Doublenumber3.14159265
Floatnumber3.14159265
GeoPointgeojson{"type":"Point","coordinates":[102.0,0.5]}
GeoShapegeojson{"type":"LineString","coordinates":[[102.0,0.0],[103.0,1.0],[104.0,0.0],[105.0,1.0]]}
Integernumber238940
Longstring"58319870951433"
Shortnumber8739
Stringstring"Call me Ishmael"
TimestampISO 8601 extended offset date-time string in UTC zone"2021-01-04T05:00:00Z"

Note that for backwards compatibility, the Boolean, Byte, Double, Float, Integer, and Short types can also be encoded as JSON strings.

not
object
optional

Returns objects where the query is not satisfied.

Show children

Show children

value
union
intersectsBoundingBox
object
optional

Returns objects where the specified field intersects the bounding box provided.

Show children

Show children

field
string

The name of the property in the API. To find the API name for your property, use the Get object type endpoint or check the Ontology Manager.

value
object

The top left and bottom right coordinate points that make up the bounding box.

Show children

Show children

topLeft
union
Show children

Show children

Point
object
optional
Show children

Show children

coordinates
list<Coordinate>
optional

GeoJSon fundamental geometry construct.

A position is an array of numbers. There MUST be two or more elements. The first two elements are longitude and latitude, precisely in that order and using decimal numbers. Altitude or elevation MAY be included as an optional third element.

Implementations SHOULD NOT extend positions beyond three elements because the semantics of extra elements are unspecified and ambiguous. Historically, some implementations have used a fourth element to carry a linear referencing measure (sometimes denoted as "M") or a numerical timestamp, but in most situations a parser will not be able to properly interpret these values. The interpretation and meaning of additional elements is beyond the scope of this specification, and additional elements MAY be ignored by parsers.

Show children

Show children

Coordinate
number
bbox
list<Coordinate>
optional

A GeoJSON object MAY have a member named "bbox" to include information on the coordinate range for its Geometries, Features, or FeatureCollections. The value of the bbox member MUST be an array of length 2*n where n is the number of dimensions represented in the contained geometries, with all axes of the most southwesterly point followed by all axes of the more northeasterly point. The axes order of a bbox follows the axes order of geometries.

Show children

Show children

Coordinate
number
bottomRight
union
Show children

Show children

Point
object
optional
Show children

Show children

coordinates
list<Coordinate>
optional

GeoJSon fundamental geometry construct.

A position is an array of numbers. There MUST be two or more elements. The first two elements are longitude and latitude, precisely in that order and using decimal numbers. Altitude or elevation MAY be included as an optional third element.

Implementations SHOULD NOT extend positions beyond three elements because the semantics of extra elements are unspecified and ambiguous. Historically, some implementations have used a fourth element to carry a linear referencing measure (sometimes denoted as "M") or a numerical timestamp, but in most situations a parser will not be able to properly interpret these values. The interpretation and meaning of additional elements is beyond the scope of this specification, and additional elements MAY be ignored by parsers.

Show children

Show children

Coordinate
number
bbox
list<Coordinate>
optional

A GeoJSON object MAY have a member named "bbox" to include information on the coordinate range for its Geometries, Features, or FeatureCollections. The value of the bbox member MUST be an array of length 2*n where n is the number of dimensions represented in the contained geometries, with all axes of the most southwesterly point followed by all axes of the more northeasterly point. The axes order of a bbox follows the axes order of geometries.

Show children

Show children

Coordinate
number
and
object
optional

Returns objects where every query is satisfied.

Show children

Show children

value
list<SearchJsonQueryV2>
optional
Show children

Show children

SearchJsonQueryV2
union
isNull
object
optional

Returns objects based on the existence of the specified field.

Show children

Show children

field
string

The name of the property in the API. To find the API name for your property, use the Get object type endpoint or check the Ontology Manager.

value
boolean
containsAllTermsInOrderPrefixLastTerm
object
optional

Returns objects where the specified field contains all of the terms in the order provided, but they do have to be adjacent to each other. The last term can be a partial prefix match.

Show children

Show children

field
string

The name of the property in the API. To find the API name for your property, use the Get object type endpoint or check the Ontology Manager.

value
string
containsAnyTerm
object
optional

Returns objects where the specified field contains any of the whitespace separated words in any order in the provided value. This query supports fuzzy matching.

Show children

Show children

field
string

The name of the property in the API. To find the API name for your property, use the Get object type endpoint or check the Ontology Manager.

value
string
fuzzy
boolean
optional

Setting fuzzy to true allows approximate matching in search queries that support it.

gte
object
optional

Returns objects where the specified field is greater than or equal to a value.

Show children

Show children

field
string

The name of the property in the API. To find the API name for your property, use the Get object type endpoint or check the Ontology Manager.

value
any

Represents the value of a property in the following format.

TypeJSON encodingExample
Arrayarray["alpha", "bravo", "charlie"]
AttachmentJSON encoded AttachmentProperty object{"rid":"ri.blobster.main.attachment.2f944bae-5851-4204-8615-920c969a9f2e"}
Booleanbooleantrue
Bytenumber31
DateISO 8601 extended local date string"2021-05-01"
Decimalstring"2.718281828"
Doublenumber3.14159265
Floatnumber3.14159265
GeoPointgeojson{"type":"Point","coordinates":[102.0,0.5]}
GeoShapegeojson{"type":"LineString","coordinates":[[102.0,0.0],[103.0,1.0],[104.0,0.0],[105.0,1.0]]}
Integernumber238940
Longstring"58319870951433"
Shortnumber8739
Stringstring"Call me Ishmael"
TimestampISO 8601 extended offset date-time string in UTC zone"2021-01-04T05:00:00Z"

Note that for backwards compatibility, the Boolean, Byte, Double, Float, Integer, and Short types can also be encoded as JSON strings.

containsAllTermsInOrder
object
optional

Returns objects where the specified field contains all of the terms in the order provided, but they do have to be adjacent to each other.

Show children

Show children

field
string

The name of the property in the API. To find the API name for your property, use the Get object type endpoint or check the Ontology Manager.

value
string
withinPolygon
object
optional

Returns objects where the specified field contains a point within the polygon provided.

Show children

Show children

field
string

The name of the property in the API. To find the API name for your property, use the Get object type endpoint or check the Ontology Manager.

value
union
Show children

Show children

Polygon
object
optional
Show children

Show children

coordinates
list<LinearRing>
optional
Show children

Show children

LinearRing
list<Position>

A linear ring is a closed LineString with four or more positions.

The first and last positions are equivalent, and they MUST contain identical values; their representation SHOULD also be identical.

A linear ring is the boundary of a surface or the boundary of a hole in a surface.

A linear ring MUST follow the right-hand rule with respect to the area it bounds, i.e., exterior rings are counterclockwise, and holes are clockwise.

Show children

Show children

Position
list<Coordinate>

GeoJSon fundamental geometry construct.

A position is an array of numbers. There MUST be two or more elements. The first two elements are longitude and latitude, precisely in that order and using decimal numbers. Altitude or elevation MAY be included as an optional third element.

Implementations SHOULD NOT extend positions beyond three elements because the semantics of extra elements are unspecified and ambiguous. Historically, some implementations have used a fourth element to carry a linear referencing measure (sometimes denoted as "M") or a numerical timestamp, but in most situations a parser will not be able to properly interpret these values. The interpretation and meaning of additional elements is beyond the scope of this specification, and additional elements MAY be ignored by parsers.

Show children

Show children

Coordinate
number
bbox
list<Coordinate>
optional

A GeoJSON object MAY have a member named "bbox" to include information on the coordinate range for its Geometries, Features, or FeatureCollections. The value of the bbox member MUST be an array of length 2*n where n is the number of dimensions represented in the contained geometries, with all axes of the most southwesterly point followed by all axes of the more northeasterly point. The axes order of a bbox follows the axes order of geometries.

Show children

Show children

Coordinate
number
intersectsPolygon
object
optional

Returns objects where the specified field intersects the polygon provided.

Show children

Show children

field
string

The name of the property in the API. To find the API name for your property, use the Get object type endpoint or check the Ontology Manager.

value
union
Show children

Show children

Polygon
object
optional
Show children

Show children

coordinates
list<LinearRing>
optional
Show children

Show children

LinearRing
list<Position>

A linear ring is a closed LineString with four or more positions.

The first and last positions are equivalent, and they MUST contain identical values; their representation SHOULD also be identical.

A linear ring is the boundary of a surface or the boundary of a hole in a surface.

A linear ring MUST follow the right-hand rule with respect to the area it bounds, i.e., exterior rings are counterclockwise, and holes are clockwise.

Show children

Show children

Position
list<Coordinate>

GeoJSon fundamental geometry construct.

A position is an array of numbers. There MUST be two or more elements. The first two elements are longitude and latitude, precisely in that order and using decimal numbers. Altitude or elevation MAY be included as an optional third element.

Implementations SHOULD NOT extend positions beyond three elements because the semantics of extra elements are unspecified and ambiguous. Historically, some implementations have used a fourth element to carry a linear referencing measure (sometimes denoted as "M") or a numerical timestamp, but in most situations a parser will not be able to properly interpret these values. The interpretation and meaning of additional elements is beyond the scope of this specification, and additional elements MAY be ignored by parsers.

Show children

Show children

Coordinate
number
bbox
list<Coordinate>
optional

A GeoJSON object MAY have a member named "bbox" to include information on the coordinate range for its Geometries, Features, or FeatureCollections. The value of the bbox member MUST be an array of length 2*n where n is the number of dimensions represented in the contained geometries, with all axes of the most southwesterly point followed by all axes of the more northeasterly point. The axes order of a bbox follows the axes order of geometries.

Show children

Show children

Coordinate
number
lte
object
optional

Returns objects where the specified field is less than or equal to a value.

Show children

Show children

field
string

The name of the property in the API. To find the API name for your property, use the Get object type endpoint or check the Ontology Manager.

value
any

Represents the value of a property in the following format.

TypeJSON encodingExample
Arrayarray["alpha", "bravo", "charlie"]
AttachmentJSON encoded AttachmentProperty object{"rid":"ri.blobster.main.attachment.2f944bae-5851-4204-8615-920c969a9f2e"}
Booleanbooleantrue
Bytenumber31
DateISO 8601 extended local date string"2021-05-01"
Decimalstring"2.718281828"
Doublenumber3.14159265
Floatnumber3.14159265
GeoPointgeojson{"type":"Point","coordinates":[102.0,0.5]}
GeoShapegeojson{"type":"LineString","coordinates":[[102.0,0.0],[103.0,1.0],[104.0,0.0],[105.0,1.0]]}
Integernumber238940
Longstring"58319870951433"
Shortnumber8739
Stringstring"Call me Ishmael"
TimestampISO 8601 extended offset date-time string in UTC zone"2021-01-04T05:00:00Z"

Note that for backwards compatibility, the Boolean, Byte, Double, Float, Integer, and Short types can also be encoded as JSON strings.

startsWith
object
optional

Returns objects where the specified field starts with the provided value.

Show children

Show children

field
string

The name of the property in the API. To find the API name for your property, use the Get object type endpoint or check the Ontology Manager.

value
string
intersectsBoundingBox
object
optional

Returns objects where the specified field intersects the bounding box provided.

Show children

Show children

field
string

The name of the property in the API. To find the API name for your property, use the Get object type endpoint or check the Ontology Manager.

value
object

The top left and bottom right coordinate points that make up the bounding box.

Show children

Show children

topLeft
union
Show children

Show children

Point
object
optional
Show children

Show children

coordinates
list<Coordinate>
optional

GeoJSon fundamental geometry construct.

A position is an array of numbers. There MUST be two or more elements. The first two elements are longitude and latitude, precisely in that order and using decimal numbers. Altitude or elevation MAY be included as an optional third element.

Implementations SHOULD NOT extend positions beyond three elements because the semantics of extra elements are unspecified and ambiguous. Historically, some implementations have used a fourth element to carry a linear referencing measure (sometimes denoted as "M") or a numerical timestamp, but in most situations a parser will not be able to properly interpret these values. The interpretation and meaning of additional elements is beyond the scope of this specification, and additional elements MAY be ignored by parsers.

Show children

Show children

Coordinate
number
bbox
list<Coordinate>
optional

A GeoJSON object MAY have a member named "bbox" to include information on the coordinate range for its Geometries, Features, or FeatureCollections. The value of the bbox member MUST be an array of length 2*n where n is the number of dimensions represented in the contained geometries, with all axes of the most southwesterly point followed by all axes of the more northeasterly point. The axes order of a bbox follows the axes order of geometries.

Show children

Show children

Coordinate
number
bottomRight
union
Show children

Show children

Point
object
optional
Show children

Show children

coordinates
list<Coordinate>
optional

GeoJSon fundamental geometry construct.

A position is an array of numbers. There MUST be two or more elements. The first two elements are longitude and latitude, precisely in that order and using decimal numbers. Altitude or elevation MAY be included as an optional third element.

Implementations SHOULD NOT extend positions beyond three elements because the semantics of extra elements are unspecified and ambiguous. Historically, some implementations have used a fourth element to carry a linear referencing measure (sometimes denoted as "M") or a numerical timestamp, but in most situations a parser will not be able to properly interpret these values. The interpretation and meaning of additional elements is beyond the scope of this specification, and additional elements MAY be ignored by parsers.

Show children

Show children

Coordinate
number
bbox
list<Coordinate>
optional

A GeoJSON object MAY have a member named "bbox" to include information on the coordinate range for its Geometries, Features, or FeatureCollections. The value of the bbox member MUST be an array of length 2*n where n is the number of dimensions represented in the contained geometries, with all axes of the most southwesterly point followed by all axes of the more northeasterly point. The axes order of a bbox follows the axes order of geometries.

Show children

Show children

Coordinate
number
and
object
optional

Returns objects where every query is satisfied.

Show children

Show children

value
list<SearchJsonQueryV2>
optional
Show children

Show children

SearchJsonQueryV2
union
Show children

Show children

or
object
optional

Returns objects where at least 1 query is satisfied.

Show children

Show children

value
list<SearchJsonQueryV2>
optional
Show children

Show children

SearchJsonQueryV2
union
in
object
optional

Returns objects where the specified field equals any of the provided values.

Show children

Show children

field
string

The name of the property in the API. To find the API name for your property, use the Get object type endpoint or check the Ontology Manager.

value
list<PropertyValue>
optional
Show children

Show children

PropertyValue
any

Represents the value of a property in the following format.

TypeJSON encodingExample
Arrayarray["alpha", "bravo", "charlie"]
AttachmentJSON encoded AttachmentProperty object{"rid":"ri.blobster.main.attachment.2f944bae-5851-4204-8615-920c969a9f2e"}
Booleanbooleantrue
Bytenumber31
DateISO 8601 extended local date string"2021-05-01"
Decimalstring"2.718281828"
Doublenumber3.14159265
Floatnumber3.14159265
GeoPointgeojson{"type":"Point","coordinates":[102.0,0.5]}
GeoShapegeojson{"type":"LineString","coordinates":[[102.0,0.0],[103.0,1.0],[104.0,0.0],[105.0,1.0]]}
Integernumber238940
Longstring"58319870951433"
Shortnumber8739
Stringstring"Call me Ishmael"
TimestampISO 8601 extended offset date-time string in UTC zone"2021-01-04T05:00:00Z"

Note that for backwards compatibility, the Boolean, Byte, Double, Float, Integer, and Short types can also be encoded as JSON strings.

doesNotIntersectPolygon
object
optional

Returns objects where the specified field does not intersect the polygon provided.

Show children

Show children

field
string

The name of the property in the API. To find the API name for your property, use the Get object type endpoint or check the Ontology Manager.

value
union
Show children

Show children

Polygon
object
optional
Show children

Show children

coordinates
list<LinearRing>
optional
Show children

Show children

LinearRing
list<Position>

A linear ring is a closed LineString with four or more positions.

The first and last positions are equivalent, and they MUST contain identical values; their representation SHOULD also be identical.

A linear ring is the boundary of a surface or the boundary of a hole in a surface.

A linear ring MUST follow the right-hand rule with respect to the area it bounds, i.e., exterior rings are counterclockwise, and holes are clockwise.

Show children

Show children

Position
list<Coordinate>

GeoJSon fundamental geometry construct.

A position is an array of numbers. There MUST be two or more elements. The first two elements are longitude and latitude, precisely in that order and using decimal numbers. Altitude or elevation MAY be included as an optional third element.

Implementations SHOULD NOT extend positions beyond three elements because the semantics of extra elements are unspecified and ambiguous. Historically, some implementations have used a fourth element to carry a linear referencing measure (sometimes denoted as "M") or a numerical timestamp, but in most situations a parser will not be able to properly interpret these values. The interpretation and meaning of additional elements is beyond the scope of this specification, and additional elements MAY be ignored by parsers.

Show children

Show children

Coordinate
number
bbox
list<Coordinate>
optional

A GeoJSON object MAY have a member named "bbox" to include information on the coordinate range for its Geometries, Features, or FeatureCollections. The value of the bbox member MUST be an array of length 2*n where n is the number of dimensions represented in the contained geometries, with all axes of the most southwesterly point followed by all axes of the more northeasterly point. The axes order of a bbox follows the axes order of geometries.

Show children

Show children

Coordinate
number
lt
object
optional

Returns objects where the specified field is less than a value.

Show children

Show children

field
string

The name of the property in the API. To find the API name for your property, use the Get object type endpoint or check the Ontology Manager.

value
any

Represents the value of a property in the following format.

TypeJSON encodingExample
Arrayarray["alpha", "bravo", "charlie"]
AttachmentJSON encoded AttachmentProperty object{"rid":"ri.blobster.main.attachment.2f944bae-5851-4204-8615-920c969a9f2e"}
Booleanbooleantrue
Bytenumber31
DateISO 8601 extended local date string"2021-05-01"
Decimalstring"2.718281828"
Doublenumber3.14159265
Floatnumber3.14159265
GeoPointgeojson{"type":"Point","coordinates":[102.0,0.5]}
GeoShapegeojson{"type":"LineString","coordinates":[[102.0,0.0],[103.0,1.0],[104.0,0.0],[105.0,1.0]]}
Integernumber238940
Longstring"58319870951433"
Shortnumber8739
Stringstring"Call me Ishmael"
TimestampISO 8601 extended offset date-time string in UTC zone"2021-01-04T05:00:00Z"

Note that for backwards compatibility, the Boolean, Byte, Double, Float, Integer, and Short types can also be encoded as JSON strings.

doesNotIntersectBoundingBox
object
optional

Returns objects where the specified field does not intersect the bounding box provided.

Show children

Show children

field
string

The name of the property in the API. To find the API name for your property, use the Get object type endpoint or check the Ontology Manager.

value
object

The top left and bottom right coordinate points that make up the bounding box.

Show children

Show children

topLeft
union
Show children

Show children

Point
object
optional
Show children

Show children

coordinates
list<Coordinate>
optional

GeoJSon fundamental geometry construct.

A position is an array of numbers. There MUST be two or more elements. The first two elements are longitude and latitude, precisely in that order and using decimal numbers. Altitude or elevation MAY be included as an optional third element.

Implementations SHOULD NOT extend positions beyond three elements because the semantics of extra elements are unspecified and ambiguous. Historically, some implementations have used a fourth element to carry a linear referencing measure (sometimes denoted as "M") or a numerical timestamp, but in most situations a parser will not be able to properly interpret these values. The interpretation and meaning of additional elements is beyond the scope of this specification, and additional elements MAY be ignored by parsers.

Show children

Show children

Coordinate
number
bbox
list<Coordinate>
optional

A GeoJSON object MAY have a member named "bbox" to include information on the coordinate range for its Geometries, Features, or FeatureCollections. The value of the bbox member MUST be an array of length 2*n where n is the number of dimensions represented in the contained geometries, with all axes of the most southwesterly point followed by all axes of the more northeasterly point. The axes order of a bbox follows the axes order of geometries.

Show children

Show children

Coordinate
number
bottomRight
union
Show children

Show children

Point
object
optional
Show children

Show children

coordinates
list<Coordinate>
optional

GeoJSon fundamental geometry construct.

A position is an array of numbers. There MUST be two or more elements. The first two elements are longitude and latitude, precisely in that order and using decimal numbers. Altitude or elevation MAY be included as an optional third element.

Implementations SHOULD NOT extend positions beyond three elements because the semantics of extra elements are unspecified and ambiguous. Historically, some implementations have used a fourth element to carry a linear referencing measure (sometimes denoted as "M") or a numerical timestamp, but in most situations a parser will not be able to properly interpret these values. The interpretation and meaning of additional elements is beyond the scope of this specification, and additional elements MAY be ignored by parsers.

Show children

Show children

Coordinate
number
bbox
list<Coordinate>
optional

A GeoJSON object MAY have a member named "bbox" to include information on the coordinate range for its Geometries, Features, or FeatureCollections. The value of the bbox member MUST be an array of length 2*n where n is the number of dimensions represented in the contained geometries, with all axes of the most southwesterly point followed by all axes of the more northeasterly point. The axes order of a bbox follows the axes order of geometries.

Show children

Show children

Coordinate
number
eq
object
optional

Returns objects where the specified field is equal to a value.

Show children

Show children

field
string

The name of the property in the API. To find the API name for your property, use the Get object type endpoint or check the Ontology Manager.

value
any

Represents the value of a property in the following format.

TypeJSON encodingExample
Arrayarray["alpha", "bravo", "charlie"]
AttachmentJSON encoded AttachmentProperty object{"rid":"ri.blobster.main.attachment.2f944bae-5851-4204-8615-920c969a9f2e"}
Booleanbooleantrue
Bytenumber31
DateISO 8601 extended local date string"2021-05-01"
Decimalstring"2.718281828"
Doublenumber3.14159265
Floatnumber3.14159265
GeoPointgeojson{"type":"Point","coordinates":[102.0,0.5]}
GeoShapegeojson{"type":"LineString","coordinates":[[102.0,0.0],[103.0,1.0],[104.0,0.0],[105.0,1.0]]}
Integernumber238940
Longstring"58319870951433"
Shortnumber8739
Stringstring"Call me Ishmael"
TimestampISO 8601 extended offset date-time string in UTC zone"2021-01-04T05:00:00Z"

Note that for backwards compatibility, the Boolean, Byte, Double, Float, Integer, and Short types can also be encoded as JSON strings.

containsAllTerms
object
optional

Returns objects where the specified field contains all of the whitespace separated words in any order in the provided value. This query supports fuzzy matching.

Show children

Show children

field
string

The name of the property in the API. To find the API name for your property, use the Get object type endpoint or check the Ontology Manager.

value
string
fuzzy
boolean
optional

Setting fuzzy to true allows approximate matching in search queries that support it.

gt
object
optional

Returns objects where the specified field is greater than a value.

Show children

Show children

field
string

The name of the property in the API. To find the API name for your property, use the Get object type endpoint or check the Ontology Manager.

value
any

Represents the value of a property in the following format.

TypeJSON encodingExample
Arrayarray["alpha", "bravo", "charlie"]
AttachmentJSON encoded AttachmentProperty object{"rid":"ri.blobster.main.attachment.2f944bae-5851-4204-8615-920c969a9f2e"}
Booleanbooleantrue
Bytenumber31
DateISO 8601 extended local date string"2021-05-01"
Decimalstring"2.718281828"
Doublenumber3.14159265
Floatnumber3.14159265
GeoPointgeojson{"type":"Point","coordinates":[102.0,0.5]}
GeoShapegeojson{"type":"LineString","coordinates":[[102.0,0.0],[103.0,1.0],[104.0,0.0],[105.0,1.0]]}
Integernumber238940
Longstring"58319870951433"
Shortnumber8739
Stringstring"Call me Ishmael"
TimestampISO 8601 extended offset date-time string in UTC zone"2021-01-04T05:00:00Z"

Note that for backwards compatibility, the Boolean, Byte, Double, Float, Integer, and Short types can also be encoded as JSON strings.

withinDistanceOf
object
optional

Returns objects where the specified field contains a point within the distance provided of the center point.

Show children

Show children

field
string

The name of the property in the API. To find the API name for your property, use the Get object type endpoint or check the Ontology Manager.

value
object

The coordinate point to use as the center of the distance query.

Show children

Show children

center
union
Show children

Show children

Point
object
optional
Show children

Show children

coordinates
list<Coordinate>
optional

GeoJSon fundamental geometry construct.

A position is an array of numbers. There MUST be two or more elements. The first two elements are longitude and latitude, precisely in that order and using decimal numbers. Altitude or elevation MAY be included as an optional third element.

Implementations SHOULD NOT extend positions beyond three elements because the semantics of extra elements are unspecified and ambiguous. Historically, some implementations have used a fourth element to carry a linear referencing measure (sometimes denoted as "M") or a numerical timestamp, but in most situations a parser will not be able to properly interpret these values. The interpretation and meaning of additional elements is beyond the scope of this specification, and additional elements MAY be ignored by parsers.

Show children

Show children

Coordinate
number
bbox
list<Coordinate>
optional

A GeoJSON object MAY have a member named "bbox" to include information on the coordinate range for its Geometries, Features, or FeatureCollections. The value of the bbox member MUST be an array of length 2*n where n is the number of dimensions represented in the contained geometries, with all axes of the most southwesterly point followed by all axes of the more northeasterly point. The axes order of a bbox follows the axes order of geometries.

Show children

Show children

Coordinate
number
distance
object

A measurement of distance.

Show children

Show children

value
number
unit
string (enum)

Enum values: MILLIMETERS, CENTIMETERS, METERS, KILOMETERS, INCHES, FEET, YARDS, MILES, NAUTICAL_MILES

withinBoundingBox
object
optional

Returns objects where the specified field contains a point within the bounding box provided.

Show children

Show children

field
string

The name of the property in the API. To find the API name for your property, use the Get object type endpoint or check the Ontology Manager.

value
object

The top left and bottom right coordinate points that make up the bounding box.

Show children

Show children

topLeft
union
Show children

Show children

Point
object
optional
Show children

Show children

coordinates
list<Coordinate>
optional

GeoJSon fundamental geometry construct.

A position is an array of numbers. There MUST be two or more elements. The first two elements are longitude and latitude, precisely in that order and using decimal numbers. Altitude or elevation MAY be included as an optional third element.

Implementations SHOULD NOT extend positions beyond three elements because the semantics of extra elements are unspecified and ambiguous. Historically, some implementations have used a fourth element to carry a linear referencing measure (sometimes denoted as "M") or a numerical timestamp, but in most situations a parser will not be able to properly interpret these values. The interpretation and meaning of additional elements is beyond the scope of this specification, and additional elements MAY be ignored by parsers.

Show children

Show children

Coordinate
number
bbox
list<Coordinate>
optional

A GeoJSON object MAY have a member named "bbox" to include information on the coordinate range for its Geometries, Features, or FeatureCollections. The value of the bbox member MUST be an array of length 2*n where n is the number of dimensions represented in the contained geometries, with all axes of the most southwesterly point followed by all axes of the more northeasterly point. The axes order of a bbox follows the axes order of geometries.

Show children

Show children

Coordinate
number
bottomRight
union
Show children

Show children

Point
object
optional
Show children

Show children

coordinates
list<Coordinate>
optional

GeoJSon fundamental geometry construct.

A position is an array of numbers. There MUST be two or more elements. The first two elements are longitude and latitude, precisely in that order and using decimal numbers. Altitude or elevation MAY be included as an optional third element.

Implementations SHOULD NOT extend positions beyond three elements because the semantics of extra elements are unspecified and ambiguous. Historically, some implementations have used a fourth element to carry a linear referencing measure (sometimes denoted as "M") or a numerical timestamp, but in most situations a parser will not be able to properly interpret these values. The interpretation and meaning of additional elements is beyond the scope of this specification, and additional elements MAY be ignored by parsers.

Show children

Show children

Coordinate
number
bbox
list<Coordinate>
optional

A GeoJSON object MAY have a member named "bbox" to include information on the coordinate range for its Geometries, Features, or FeatureCollections. The value of the bbox member MUST be an array of length 2*n where n is the number of dimensions represented in the contained geometries, with all axes of the most southwesterly point followed by all axes of the more northeasterly point. The axes order of a bbox follows the axes order of geometries.

Show children

Show children

Coordinate
number
contains
object
optional

Returns objects where the specified array contains a value.

Show children

Show children

field
string

The name of the property in the API. To find the API name for your property, use the Get object type endpoint or check the Ontology Manager.

value
any

Represents the value of a property in the following format.

TypeJSON encodingExample
Arrayarray["alpha", "bravo", "charlie"]
AttachmentJSON encoded AttachmentProperty object{"rid":"ri.blobster.main.attachment.2f944bae-5851-4204-8615-920c969a9f2e"}
Booleanbooleantrue
Bytenumber31
DateISO 8601 extended local date string"2021-05-01"
Decimalstring"2.718281828"
Doublenumber3.14159265
Floatnumber3.14159265
GeoPointgeojson{"type":"Point","coordinates":[102.0,0.5]}
GeoShapegeojson{"type":"LineString","coordinates":[[102.0,0.0],[103.0,1.0],[104.0,0.0],[105.0,1.0]]}
Integernumber238940
Longstring"58319870951433"
Shortnumber8739
Stringstring"Call me Ishmael"
TimestampISO 8601 extended offset date-time string in UTC zone"2021-01-04T05:00:00Z"

Note that for backwards compatibility, the Boolean, Byte, Double, Float, Integer, and Short types can also be encoded as JSON strings.

not
object
optional

Returns objects where the query is not satisfied.

Show children

Show children

value
union
intersectsBoundingBox
object
optional

Returns objects where the specified field intersects the bounding box provided.

Show children

Show children

field
string

The name of the property in the API. To find the API name for your property, use the Get object type endpoint or check the Ontology Manager.

value
object

The top left and bottom right coordinate points that make up the bounding box.

Show children

Show children

topLeft
union
Show children

Show children

Point
object
optional
Show children

Show children

coordinates
list<Coordinate>
optional

GeoJSon fundamental geometry construct.

A position is an array of numbers. There MUST be two or more elements. The first two elements are longitude and latitude, precisely in that order and using decimal numbers. Altitude or elevation MAY be included as an optional third element.

Implementations SHOULD NOT extend positions beyond three elements because the semantics of extra elements are unspecified and ambiguous. Historically, some implementations have used a fourth element to carry a linear referencing measure (sometimes denoted as "M") or a numerical timestamp, but in most situations a parser will not be able to properly interpret these values. The interpretation and meaning of additional elements is beyond the scope of this specification, and additional elements MAY be ignored by parsers.

Show children

Show children

Coordinate
number
bbox
list<Coordinate>
optional

A GeoJSON object MAY have a member named "bbox" to include information on the coordinate range for its Geometries, Features, or FeatureCollections. The value of the bbox member MUST be an array of length 2*n where n is the number of dimensions represented in the contained geometries, with all axes of the most southwesterly point followed by all axes of the more northeasterly point. The axes order of a bbox follows the axes order of geometries.

Show children

Show children

Coordinate
number
bottomRight
union
Show children

Show children

Point
object
optional
Show children

Show children

coordinates
list<Coordinate>
optional

GeoJSon fundamental geometry construct.

A position is an array of numbers. There MUST be two or more elements. The first two elements are longitude and latitude, precisely in that order and using decimal numbers. Altitude or elevation MAY be included as an optional third element.

Implementations SHOULD NOT extend positions beyond three elements because the semantics of extra elements are unspecified and ambiguous. Historically, some implementations have used a fourth element to carry a linear referencing measure (sometimes denoted as "M") or a numerical timestamp, but in most situations a parser will not be able to properly interpret these values. The interpretation and meaning of additional elements is beyond the scope of this specification, and additional elements MAY be ignored by parsers.

Show children

Show children

Coordinate
number
bbox
list<Coordinate>
optional

A GeoJSON object MAY have a member named "bbox" to include information on the coordinate range for its Geometries, Features, or FeatureCollections. The value of the bbox member MUST be an array of length 2*n where n is the number of dimensions represented in the contained geometries, with all axes of the most southwesterly point followed by all axes of the more northeasterly point. The axes order of a bbox follows the axes order of geometries.

Show children

Show children

Coordinate
number
and
object
optional

Returns objects where every query is satisfied.

Show children

Show children

value
list<SearchJsonQueryV2>
optional
Show children

Show children

SearchJsonQueryV2
union
isNull
object
optional

Returns objects based on the existence of the specified field.

Show children

Show children

field
string

The name of the property in the API. To find the API name for your property, use the Get object type endpoint or check the Ontology Manager.

value
boolean
containsAllTermsInOrderPrefixLastTerm
object
optional

Returns objects where the specified field contains all of the terms in the order provided, but they do have to be adjacent to each other. The last term can be a partial prefix match.

Show children

Show children

field
string

The name of the property in the API. To find the API name for your property, use the Get object type endpoint or check the Ontology Manager.

value
string
containsAnyTerm
object
optional

Returns objects where the specified field contains any of the whitespace separated words in any order in the provided value. This query supports fuzzy matching.

Show children

Show children

field
string

The name of the property in the API. To find the API name for your property, use the Get object type endpoint or check the Ontology Manager.

value
string
fuzzy
boolean
optional

Setting fuzzy to true allows approximate matching in search queries that support it.

gte
object
optional

Returns objects where the specified field is greater than or equal to a value.

Show children

Show children

field
string

The name of the property in the API. To find the API name for your property, use the Get object type endpoint or check the Ontology Manager.

value
any

Represents the value of a property in the following format.

TypeJSON encodingExample
Arrayarray["alpha", "bravo", "charlie"]
AttachmentJSON encoded AttachmentProperty object{"rid":"ri.blobster.main.attachment.2f944bae-5851-4204-8615-920c969a9f2e"}
Booleanbooleantrue
Bytenumber31
DateISO 8601 extended local date string"2021-05-01"
Decimalstring"2.718281828"
Doublenumber3.14159265
Floatnumber3.14159265
GeoPointgeojson{"type":"Point","coordinates":[102.0,0.5]}
GeoShapegeojson{"type":"LineString","coordinates":[[102.0,0.0],[103.0,1.0],[104.0,0.0],[105.0,1.0]]}
Integernumber238940
Longstring"58319870951433"
Shortnumber8739
Stringstring"Call me Ishmael"
TimestampISO 8601 extended offset date-time string in UTC zone"2021-01-04T05:00:00Z"

Note that for backwards compatibility, the Boolean, Byte, Double, Float, Integer, and Short types can also be encoded as JSON strings.

containsAllTermsInOrder
object
optional

Returns objects where the specified field contains all of the terms in the order provided, but they do have to be adjacent to each other.

Show children

Show children

field
string

The name of the property in the API. To find the API name for your property, use the Get object type endpoint or check the Ontology Manager.

value
string
withinPolygon
object
optional

Returns objects where the specified field contains a point within the polygon provided.

Show children

Show children

field
string

The name of the property in the API. To find the API name for your property, use the Get object type endpoint or check the Ontology Manager.

value
union
Show children

Show children

Polygon
object
optional
Show children

Show children

coordinates
list<LinearRing>
optional
Show children

Show children

LinearRing
list<Position>

A linear ring is a closed LineString with four or more positions.

The first and last positions are equivalent, and they MUST contain identical values; their representation SHOULD also be identical.

A linear ring is the boundary of a surface or the boundary of a hole in a surface.

A linear ring MUST follow the right-hand rule with respect to the area it bounds, i.e., exterior rings are counterclockwise, and holes are clockwise.

Show children

Show children

Position
list<Coordinate>

GeoJSon fundamental geometry construct.

A position is an array of numbers. There MUST be two or more elements. The first two elements are longitude and latitude, precisely in that order and using decimal numbers. Altitude or elevation MAY be included as an optional third element.

Implementations SHOULD NOT extend positions beyond three elements because the semantics of extra elements are unspecified and ambiguous. Historically, some implementations have used a fourth element to carry a linear referencing measure (sometimes denoted as "M") or a numerical timestamp, but in most situations a parser will not be able to properly interpret these values. The interpretation and meaning of additional elements is beyond the scope of this specification, and additional elements MAY be ignored by parsers.

Show children

Show children

Coordinate
number
bbox
list<Coordinate>
optional

A GeoJSON object MAY have a member named "bbox" to include information on the coordinate range for its Geometries, Features, or FeatureCollections. The value of the bbox member MUST be an array of length 2*n where n is the number of dimensions represented in the contained geometries, with all axes of the most southwesterly point followed by all axes of the more northeasterly point. The axes order of a bbox follows the axes order of geometries.

Show children

Show children

Coordinate
number
intersectsPolygon
object
optional

Returns objects where the specified field intersects the polygon provided.

Show children

Show children

field
string

The name of the property in the API. To find the API name for your property, use the Get object type endpoint or check the Ontology Manager.

value
union
Show children

Show children

Polygon
object
optional
Show children

Show children

coordinates
list<LinearRing>
optional
Show children

Show children

LinearRing
list<Position>

A linear ring is a closed LineString with four or more positions.

The first and last positions are equivalent, and they MUST contain identical values; their representation SHOULD also be identical.

A linear ring is the boundary of a surface or the boundary of a hole in a surface.

A linear ring MUST follow the right-hand rule with respect to the area it bounds, i.e., exterior rings are counterclockwise, and holes are clockwise.

Show children

Show children

Position
list<Coordinate>

GeoJSon fundamental geometry construct.

A position is an array of numbers. There MUST be two or more elements. The first two elements are longitude and latitude, precisely in that order and using decimal numbers. Altitude or elevation MAY be included as an optional third element.

Implementations SHOULD NOT extend positions beyond three elements because the semantics of extra elements are unspecified and ambiguous. Historically, some implementations have used a fourth element to carry a linear referencing measure (sometimes denoted as "M") or a numerical timestamp, but in most situations a parser will not be able to properly interpret these values. The interpretation and meaning of additional elements is beyond the scope of this specification, and additional elements MAY be ignored by parsers.

Show children

Show children

Coordinate
number
bbox
list<Coordinate>
optional

A GeoJSON object MAY have a member named "bbox" to include information on the coordinate range for its Geometries, Features, or FeatureCollections. The value of the bbox member MUST be an array of length 2*n where n is the number of dimensions represented in the contained geometries, with all axes of the most southwesterly point followed by all axes of the more northeasterly point. The axes order of a bbox follows the axes order of geometries.

Show children

Show children

Coordinate
number
lte
object
optional

Returns objects where the specified field is less than or equal to a value.

Show children

Show children

field
string

The name of the property in the API. To find the API name for your property, use the Get object type endpoint or check the Ontology Manager.

value
any

Represents the value of a property in the following format.

TypeJSON encodingExample
Arrayarray["alpha", "bravo", "charlie"]
AttachmentJSON encoded AttachmentProperty object{"rid":"ri.blobster.main.attachment.2f944bae-5851-4204-8615-920c969a9f2e"}
Booleanbooleantrue
Bytenumber31
DateISO 8601 extended local date string"2021-05-01"
Decimalstring"2.718281828"
Doublenumber3.14159265
Floatnumber3.14159265
GeoPointgeojson{"type":"Point","coordinates":[102.0,0.5]}
GeoShapegeojson{"type":"LineString","coordinates":[[102.0,0.0],[103.0,1.0],[104.0,0.0],[105.0,1.0]]}
Integernumber238940
Longstring"58319870951433"
Shortnumber8739
Stringstring"Call me Ishmael"
TimestampISO 8601 extended offset date-time string in UTC zone"2021-01-04T05:00:00Z"

Note that for backwards compatibility, the Boolean, Byte, Double, Float, Integer, and Short types can also be encoded as JSON strings.

startsWith
object
optional

Returns objects where the specified field starts with the provided value.

Show children

Show children

field
string

The name of the property in the API. To find the API name for your property, use the Get object type endpoint or check the Ontology Manager.

value
string
isNull
object
optional

Returns objects based on the existence of the specified field.

Show children

Show children

field
string

The name of the property in the API. To find the API name for your property, use the Get object type endpoint or check the Ontology Manager.

value
boolean
containsAllTermsInOrderPrefixLastTerm
object
optional

Returns objects where the specified field contains all of the terms in the order provided, but they do have to be adjacent to each other. The last term can be a partial prefix match.

Show children

Show children

field
string

The name of the property in the API. To find the API name for your property, use the Get object type endpoint or check the Ontology Manager.

value
string
containsAnyTerm
object
optional

Returns objects where the specified field contains any of the whitespace separated words in any order in the provided value. This query supports fuzzy matching.

Show children

Show children

field
string

The name of the property in the API. To find the API name for your property, use the Get object type endpoint or check the Ontology Manager.

value
string
fuzzy
boolean
optional

Setting fuzzy to true allows approximate matching in search queries that support it.

gte
object
optional

Returns objects where the specified field is greater than or equal to a value.

Show children

Show children

field
string

The name of the property in the API. To find the API name for your property, use the Get object type endpoint or check the Ontology Manager.

value
any

Represents the value of a property in the following format.

TypeJSON encodingExample
Arrayarray["alpha", "bravo", "charlie"]
AttachmentJSON encoded AttachmentProperty object{"rid":"ri.blobster.main.attachment.2f944bae-5851-4204-8615-920c969a9f2e"}
Booleanbooleantrue
Bytenumber31
DateISO 8601 extended local date string"2021-05-01"
Decimalstring"2.718281828"
Doublenumber3.14159265
Floatnumber3.14159265
GeoPointgeojson{"type":"Point","coordinates":[102.0,0.5]}
GeoShapegeojson{"type":"LineString","coordinates":[[102.0,0.0],[103.0,1.0],[104.0,0.0],[105.0,1.0]]}
Integernumber238940
Longstring"58319870951433"
Shortnumber8739
Stringstring"Call me Ishmael"
TimestampISO 8601 extended offset date-time string in UTC zone"2021-01-04T05:00:00Z"

Note that for backwards compatibility, the Boolean, Byte, Double, Float, Integer, and Short types can also be encoded as JSON strings.

containsAllTermsInOrder
object
optional

Returns objects where the specified field contains all of the terms in the order provided, but they do have to be adjacent to each other.

Show children

Show children

field
string

The name of the property in the API. To find the API name for your property, use the Get object type endpoint or check the Ontology Manager.

value
string
withinPolygon
object
optional

Returns objects where the specified field contains a point within the polygon provided.

Show children

Show children

field
string

The name of the property in the API. To find the API name for your property, use the Get object type endpoint or check the Ontology Manager.

value
union
Show children

Show children

Polygon
object
optional
Show children

Show children

coordinates
list<LinearRing>
optional
Show children

Show children

LinearRing
list<Position>

A linear ring is a closed LineString with four or more positions.

The first and last positions are equivalent, and they MUST contain identical values; their representation SHOULD also be identical.

A linear ring is the boundary of a surface or the boundary of a hole in a surface.

A linear ring MUST follow the right-hand rule with respect to the area it bounds, i.e., exterior rings are counterclockwise, and holes are clockwise.

Show children

Show children

Position
list<Coordinate>

GeoJSon fundamental geometry construct.

A position is an array of numbers. There MUST be two or more elements. The first two elements are longitude and latitude, precisely in that order and using decimal numbers. Altitude or elevation MAY be included as an optional third element.

Implementations SHOULD NOT extend positions beyond three elements because the semantics of extra elements are unspecified and ambiguous. Historically, some implementations have used a fourth element to carry a linear referencing measure (sometimes denoted as "M") or a numerical timestamp, but in most situations a parser will not be able to properly interpret these values. The interpretation and meaning of additional elements is beyond the scope of this specification, and additional elements MAY be ignored by parsers.

Show children

Show children

Coordinate
number
bbox
list<Coordinate>
optional

A GeoJSON object MAY have a member named "bbox" to include information on the coordinate range for its Geometries, Features, or FeatureCollections. The value of the bbox member MUST be an array of length 2*n where n is the number of dimensions represented in the contained geometries, with all axes of the most southwesterly point followed by all axes of the more northeasterly point. The axes order of a bbox follows the axes order of geometries.

Show children

Show children

Coordinate
number
intersectsPolygon
object
optional

Returns objects where the specified field intersects the polygon provided.

Show children

Show children

field
string

The name of the property in the API. To find the API name for your property, use the Get object type endpoint or check the Ontology Manager.

value
union
Show children

Show children

Polygon
object
optional
Show children

Show children

coordinates
list<LinearRing>
optional
Show children

Show children

LinearRing
list<Position>

A linear ring is a closed LineString with four or more positions.

The first and last positions are equivalent, and they MUST contain identical values; their representation SHOULD also be identical.

A linear ring is the boundary of a surface or the boundary of a hole in a surface.

A linear ring MUST follow the right-hand rule with respect to the area it bounds, i.e., exterior rings are counterclockwise, and holes are clockwise.

Show children

Show children

Position
list<Coordinate>

GeoJSon fundamental geometry construct.

A position is an array of numbers. There MUST be two or more elements. The first two elements are longitude and latitude, precisely in that order and using decimal numbers. Altitude or elevation MAY be included as an optional third element.

Implementations SHOULD NOT extend positions beyond three elements because the semantics of extra elements are unspecified and ambiguous. Historically, some implementations have used a fourth element to carry a linear referencing measure (sometimes denoted as "M") or a numerical timestamp, but in most situations a parser will not be able to properly interpret these values. The interpretation and meaning of additional elements is beyond the scope of this specification, and additional elements MAY be ignored by parsers.

Show children

Show children

Coordinate
number
bbox
list<Coordinate>
optional

A GeoJSON object MAY have a member named "bbox" to include information on the coordinate range for its Geometries, Features, or FeatureCollections. The value of the bbox member MUST be an array of length 2*n where n is the number of dimensions represented in the contained geometries, with all axes of the most southwesterly point followed by all axes of the more northeasterly point. The axes order of a bbox follows the axes order of geometries.

Show children

Show children

Coordinate
number
lte
object
optional

Returns objects where the specified field is less than or equal to a value.

Show children

Show children

field
string

The name of the property in the API. To find the API name for your property, use the Get object type endpoint or check the Ontology Manager.

value
any

Represents the value of a property in the following format.

TypeJSON encodingExample
Arrayarray["alpha", "bravo", "charlie"]
AttachmentJSON encoded AttachmentProperty object{"rid":"ri.blobster.main.attachment.2f944bae-5851-4204-8615-920c969a9f2e"}
Booleanbooleantrue
Bytenumber31
DateISO 8601 extended local date string"2021-05-01"
Decimalstring"2.718281828"
Doublenumber3.14159265
Floatnumber3.14159265
GeoPointgeojson{"type":"Point","coordinates":[102.0,0.5]}
GeoShapegeojson{"type":"LineString","coordinates":[[102.0,0.0],[103.0,1.0],[104.0,0.0],[105.0,1.0]]}
Integernumber238940
Longstring"58319870951433"
Shortnumber8739
Stringstring"Call me Ishmael"
TimestampISO 8601 extended offset date-time string in UTC zone"2021-01-04T05:00:00Z"

Note that for backwards compatibility, the Boolean, Byte, Double, Float, Integer, and Short types can also be encoded as JSON strings.

startsWith
object
optional

Returns objects where the specified field starts with the provided value.

Show children

Show children

field
string

The name of the property in the API. To find the API name for your property, use the Get object type endpoint or check the Ontology Manager.

value
string
searchAround
object
optional
Show children

Show children

objectSet
union

Represents the definition of an ObjectSet in the Ontology.

link
string

The name of the link type in the API. To find the API name for your Link Type, check the Ontology Manager application.

static
object
optional
Show children

Show children

objects
list<ObjectRid>
optional
Show children

Show children

ObjectRid
string

The unique resource identifier of an object, useful for interacting with other Foundry APIs.

intersect
object
optional
Show children

Show children

objectSets
list<ObjectSet>
optional
Show children

Show children

ObjectSet
union

Represents the definition of an ObjectSet in the Ontology.

subtract
object
optional
Show children

Show children

objectSets
list<ObjectSet>
optional
Show children

Show children

ObjectSet
union

Represents the definition of an ObjectSet in the Ontology.

union
object
optional
Show children

Show children

objectSets
list<ObjectSet>
optional
Show children

Show children

ObjectSet
union

Represents the definition of an ObjectSet in the Ontology.

base
object
optional
Show children

Show children

objectType
string
base
object
optional
Show children

Show children

objectType
string
orderBy
object
optional

Specifies the ordering of search results by a field and an ordering direction.

Show children

Show children

fields
list<SearchOrderingV2>
optional
Show children

Show children

SearchOrderingV2
object
Show children

Show children

field
string

The name of the property in the API. To find the API name for your property, use the Get object type endpoint or check the Ontology Manager.

direction
string
optional

Specifies the ordering direction (can be either asc or desc)

select
list<SelectedPropertyApiName>
optional
Show children

Show children

SelectedPropertyApiName
string

By default, anytime an object is requested, every property belonging to that object is returned. The response can be filtered to only include certain properties using the properties query parameter.

Properties to include can be specified in one of two ways.

  • A comma delimited list as the value for the properties query parameter properties={property1ApiName},{property2ApiName}
  • Multiple properties query parameters. properties={property1ApiName}&properties={property2ApiName}

The primary key of the object will always be returned even if it wasn't specified in the properties values.

Unknown properties specified in the properties list will result in a PropertiesNotFound error.

To find the API name for your property, use the Get object type endpoint or check the Ontology Manager.

pageToken
string
optional

The page token indicates where to start paging. This should be omitted from the first page's request. To fetch the next page, clients should take the value from the nextPageToken field of the previous response and populate the next request's pageToken field with it.

pageSize
integer
optional

The page size to use for the endpoint.

excludeRid
boolean
optional

A flag to exclude the retrieval of the __rid property. Setting this to true may improve performance of this endpoint for object types in OSV2.

Response body

LoadObjectSetResponseV2
object

Success response.

Hide children

Hide children

data
list<OntologyObjectV2>
optional

The list of objects in the current Page.

Show children

Show children

OntologyObjectV2
map<PropertyApiName, PropertyValue>

Represents an object in the Ontology.

Show children

Show children

PropertyApiName
string

The name of the property in the API. To find the API name for your property, use the Get object type endpoint or check the Ontology Manager.

PropertyValue
any

Represents the value of a property in the following format.

TypeJSON encodingExample
Arrayarray["alpha", "bravo", "charlie"]
AttachmentJSON encoded AttachmentProperty object{"rid":"ri.blobster.main.attachment.2f944bae-5851-4204-8615-920c969a9f2e"}
Booleanbooleantrue
Bytenumber31
DateISO 8601 extended local date string"2021-05-01"
Decimalstring"2.718281828"
Doublenumber3.14159265
Floatnumber3.14159265
GeoPointgeojson{"type":"Point","coordinates":[102.0,0.5]}
GeoShapegeojson{"type":"LineString","coordinates":[[102.0,0.0],[103.0,1.0],[104.0,0.0],[105.0,1.0]]}
Integernumber238940
Longstring"58319870951433"
Shortnumber8739
Stringstring"Call me Ishmael"
TimestampISO 8601 extended offset date-time string in UTC zone"2021-01-04T05:00:00Z"

Note that for backwards compatibility, the Boolean, Byte, Double, Float, Integer, and Short types can also be encoded as JSON strings.

nextPageToken
string
optional

The page token indicates where to start paging. This should be omitted from the first page's request. To fetch the next page, clients should take the value from the nextPageToken field of the previous response and populate the next request's pageToken field with it.

totalCount
string

The total number of items across all pages.

Examples

Request

Copied!
1 2 3 4 5 curl -X POST \ -H "Content-type: application/json" \ -H "Authorization: Bearer $TOKEN" \ "https://$HOSTNAME/api/v2/ontologies/palantir/objectSets/loadObjects?artifactRepository=&packageName=" \ -d '{"objectSet":{"type":"base","objectType":"Employee"},"pageSize":10000,"nextPageToken":"v1.VGhlcmUgaXMgc28gbXVjaCBsZWZ0IHRvIGJ1aWxkIC0gcGFsYW50aXIuY29tL2NhcmVlcnMv"}'

Response

Copied!
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 { "data": [ { "__rid": "ri.phonograph2-objects.main.object.5b5dbc28-7f05-4e83-a33a-1e5b851", "__primaryKey": 50030, "__apiName": "Employee", "employeeId": 50030, "firstName": "John", "lastName": "Smith", "age": 21 }, { "__rid": "ri.phonograph2-objects.main.object.88a6fccb-f333-46d6-a07e-7725c5f18b61", "__primaryKey": 20090, "__apiName": "Employee", "employeeId": 20090, "firstName": "John", "lastName": "Haymore", "age": 27 } ] }